
    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_fc0ec2c02a43c071599b6f45.woff')format("woff");}.ff1{font-family:ff1;line-height:0.710938;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_9c37278e3ffeb32629162fa8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.722000;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_26d823af72de1763ea612794.woff')format("woff");}.ff3{font-family:ff3;line-height:0.896000;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_279ff0b663468a25585023c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_e5898fff0c4872e24af04155.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_eca3d98975dd4887a4075107.woff')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_d40ca54641ea0c7a0d5f8ed8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_edaa95052564bdcd95c9a4bb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006836;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_3cec887bfa0f239754f2882e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_895cb35cd7e5f90587ddd18f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_dc62ab6d5ef7e2b3fe1389b4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.709473;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_e362c5da7c79023c14ad6a85.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_07acbc8e5152fdfe175f0c52.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_f4a7f55c49994e82e49d832d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.709473;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);}
.v5{vertical-align:-15.840000px;}
.v2{vertical-align:-2.010600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.099400px;}
.v3{vertical-align:17.820000px;}
.v4{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-1.350000px;}
.lsb{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.300000px;}
.ls2{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.350000px;}
.ls1{letter-spacing:2.250000px;}
.ls0{letter-spacing:10.007400px;}
.ls3{letter-spacing:12.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.450000px;}
.ws8{word-spacing:-8.496000px;}
.ws4{word-spacing:-7.830000px;}
.ws4d{word-spacing:-3.186000px;}
.ws32{word-spacing:-2.940000px;}
.ws1e{word-spacing:-2.580000px;}
.ws12{word-spacing:-2.040000px;}
.ws22{word-spacing:-1.860000px;}
.ws4c{word-spacing:-1.674000px;}
.ws13{word-spacing:-1.500000px;}
.ws9{word-spacing:-1.350000px;}
.ws23{word-spacing:-1.200000px;}
.ws5c{word-spacing:-1.080000px;}
.ws51{word-spacing:-0.540000px;}
.ws63{word-spacing:-0.486000px;}
.ws31{word-spacing:-0.360000px;}
.ws5e{word-spacing:-0.324000px;}
.ws18{word-spacing:-0.300000px;}
.ws5a{word-spacing:-0.162000px;}
.ws7{word-spacing:0.000000px;}
.ws46{word-spacing:0.048000px;}
.ws15{word-spacing:0.060000px;}
.ws54{word-spacing:0.108000px;}
.ws4b{word-spacing:0.162000px;}
.ws55{word-spacing:0.270000px;}
.ws21{word-spacing:0.300000px;}
.ws56{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.ws49{word-spacing:0.540000px;}
.ws26{word-spacing:0.594000px;}
.ws68{word-spacing:0.864000px;}
.ws33{word-spacing:1.020000px;}
.wsc{word-spacing:1.080000px;}
.ws39{word-spacing:1.188000px;}
.wsd{word-spacing:1.200000px;}
.ws11{word-spacing:1.320000px;}
.ws30{word-spacing:1.380000px;}
.wse{word-spacing:1.440000px;}
.ws14{word-spacing:1.500000px;}
.ws4e{word-spacing:1.674000px;}
.ws2a{word-spacing:1.680000px;}
.ws1f{word-spacing:1.980000px;}
.ws34{word-spacing:2.340000px;}
.ws53{word-spacing:2.376000px;}
.ws5f{word-spacing:2.430000px;}
.ws3d{word-spacing:2.580000px;}
.ws2d{word-spacing:3.120000px;}
.ws38{word-spacing:3.186000px;}
.ws10{word-spacing:3.780000px;}
.ws41{word-spacing:3.840000px;}
.ws1a{word-spacing:3.960000px;}
.ws60{word-spacing:3.996000px;}
.ws2e{word-spacing:4.140000px;}
.ws36{word-spacing:4.158000px;}
.ws20{word-spacing:4.260000px;}
.ws4f{word-spacing:4.266000px;}
.ws3f{word-spacing:4.320000px;}
.ws5b{word-spacing:4.482000px;}
.ws62{word-spacing:4.536000px;}
.ws48{word-spacing:4.590000px;}
.ws27{word-spacing:4.800000px;}
.ws57{word-spacing:4.860000px;}
.ws16{word-spacing:4.980000px;}
.ws64{word-spacing:5.022000px;}
.ws1b{word-spacing:5.220000px;}
.ws44{word-spacing:5.340000px;}
.ws35{word-spacing:5.640000px;}
.ws1c{word-spacing:5.760000px;}
.ws3b{word-spacing:5.820000px;}
.ws6a{word-spacing:5.994000px;}
.ws45{word-spacing:6.000000px;}
.ws2b{word-spacing:6.240000px;}
.ws19{word-spacing:6.480000px;}
.wsf{word-spacing:6.600000px;}
.wsb{word-spacing:7.200000px;}
.ws65{word-spacing:7.344000px;}
.ws29{word-spacing:7.440000px;}
.ws67{word-spacing:7.776000px;}
.ws43{word-spacing:7.920000px;}
.ws47{word-spacing:7.992000px;}
.ws4a{word-spacing:8.100000px;}
.ws40{word-spacing:8.520000px;}
.ws37{word-spacing:8.532000px;}
.ws3c{word-spacing:9.420000px;}
.ws3e{word-spacing:9.540000px;}
.ws61{word-spacing:9.882000px;}
.ws1d{word-spacing:10.560000px;}
.ws5d{word-spacing:10.584000px;}
.ws52{word-spacing:11.178000px;}
.ws2c{word-spacing:12.240000px;}
.ws17{word-spacing:12.480000px;}
.ws66{word-spacing:12.852000px;}
.ws42{word-spacing:13.020000px;}
.ws3a{word-spacing:13.140000px;}
.ws59{word-spacing:13.770000px;}
.ws28{word-spacing:14.340000px;}
.ws58{word-spacing:14.526000px;}
.ws69{word-spacing:14.580000px;}
.ws3{word-spacing:14.940000px;}
.ws6b{word-spacing:15.876000px;}
.wsa{word-spacing:19.980000px;}
.ws50{word-spacing:21.168000px;}
.ws6c{word-spacing:23.112000px;}
.ws24{word-spacing:28.860000px;}
.ws25{word-spacing:29.700000px;}
._f{margin-left:-20.023200px;}
._7{margin-left:-17.580000px;}
._9{margin-left:-16.518000px;}
._d{margin-left:-15.498000px;}
._10{margin-left:-9.259200px;}
._11{margin-left:-7.953000px;}
._4{margin-left:-6.816000px;}
._6{margin-left:-5.730000px;}
._5{margin-left:-3.984000px;}
._8{margin-left:-2.352000px;}
._3{margin-left:-1.350000px;}
._c{width:1.206000px;}
._1{width:2.400000px;}
._13{width:3.582000px;}
._2{width:4.800000px;}
._b{width:6.456000px;}
._a{width:7.494000px;}
._12{width:8.892000px;}
._17{width:10.344000px;}
._18{width:11.877000px;}
._16{width:16.314000px;}
._19{width:17.535600px;}
._15{width:18.750000px;}
._14{width:19.842000px;}
._e{width:30.048000px;}
._0{width:128.647200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.840000px;}
.fs3{font-size:30.000000px;}
.fs7{font-size:31.320000px;}
.fs2{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.126800px;}
.y1e{bottom:107.007900px;}
.y3d{bottom:107.034900px;}
.y34{bottom:107.109000px;}
.y91{bottom:107.373300px;}
.y1d{bottom:125.007900px;}
.y3c{bottom:125.030400px;}
.y90{bottom:125.368800px;}
.y1c{bottom:143.007900px;}
.y3b{bottom:143.025900px;}
.y8f{bottom:143.364300px;}
.y1b{bottom:161.007900px;}
.y3a{bottom:161.021400px;}
.y8e{bottom:161.359800px;}
.y1a{bottom:179.007900px;}
.y39{bottom:179.016900px;}
.y8d{bottom:179.355300px;}
.y19{bottom:197.007900px;}
.y38{bottom:197.012400px;}
.y8c{bottom:197.350800px;}
.y18{bottom:215.007900px;}
.y8b{bottom:215.346300px;}
.y17{bottom:233.007900px;}
.y8a{bottom:233.341800px;}
.y16{bottom:251.007900px;}
.y89{bottom:251.337300px;}
.y15{bottom:269.007900px;}
.y88{bottom:269.332800px;}
.y14{bottom:287.007900px;}
.y87{bottom:287.328300px;}
.y13{bottom:305.007900px;}
.y86{bottom:305.323800px;}
.y12{bottom:323.007900px;}
.y85{bottom:323.319300px;}
.y11{bottom:341.007900px;}
.y84{bottom:341.314800px;}
.y10{bottom:359.007900px;}
.y83{bottom:359.310300px;}
.yf{bottom:377.007900px;}
.y82{bottom:377.305800px;}
.ye{bottom:395.007900px;}
.y81{bottom:395.301300px;}
.yd{bottom:413.007900px;}
.y80{bottom:413.296800px;}
.yc{bottom:431.007900px;}
.y7f{bottom:431.292300px;}
.yb{bottom:449.007900px;}
.y7e{bottom:449.287800px;}
.ya{bottom:467.007900px;}
.y7d{bottom:467.283300px;}
.y9{bottom:485.007900px;}
.y7c{bottom:485.278800px;}
.y8{bottom:503.007900px;}
.y7b{bottom:503.274300px;}
.y7{bottom:521.007900px;}
.y7a{bottom:521.269800px;}
.y6{bottom:539.007900px;}
.y79{bottom:539.265300px;}
.y1f{bottom:557.007900px;}
.y78{bottom:557.260800px;}
.y5{bottom:575.007900px;}
.y77{bottom:575.256300px;}
.y37{bottom:593.007900px;}
.y76{bottom:593.251800px;}
.y36{bottom:611.007900px;}
.y5a{bottom:611.125800px;}
.y75{bottom:611.247300px;}
.y59{bottom:629.121300px;}
.y74{bottom:629.242800px;}
.y32{bottom:630.427200px;}
.y3f{bottom:647.007900px;}
.y58{bottom:647.116800px;}
.y73{bottom:647.238300px;}
.y3e{bottom:662.007900px;}
.y31{bottom:663.191700px;}
.y57{bottom:665.112300px;}
.y72{bottom:665.233800px;}
.y30{bottom:678.946200px;}
.y56{bottom:683.107800px;}
.y71{bottom:683.229300px;}
.y2f{bottom:694.700700px;}
.y55{bottom:701.103300px;}
.y70{bottom:701.224800px;}
.y2e{bottom:710.455200px;}
.y54{bottom:719.098800px;}
.y6f{bottom:719.220300px;}
.y53{bottom:737.094300px;}
.y6e{bottom:737.215800px;}
.y2d{bottom:747.477150px;}
.y52{bottom:755.089800px;}
.y6d{bottom:755.211300px;}
.y2c{bottom:763.221150px;}
.y51{bottom:773.085300px;}
.y6c{bottom:773.206800px;}
.y2b{bottom:782.925150px;}
.y50{bottom:791.080800px;}
.y6b{bottom:791.202300px;}
.y2a{bottom:798.675150px;}
.y4f{bottom:809.076300px;}
.y6a{bottom:809.197800px;}
.y29{bottom:814.425150px;}
.y28{bottom:826.221150px;}
.y4e{bottom:827.071800px;}
.y69{bottom:827.193300px;}
.y4d{bottom:845.067300px;}
.y68{bottom:845.188800px;}
.y27{bottom:845.925150px;}
.y4c{bottom:863.062800px;}
.y67{bottom:863.184300px;}
.y26{bottom:878.974950px;}
.y4b{bottom:881.058300px;}
.y66{bottom:881.179800px;}
.y4a{bottom:899.053800px;}
.y65{bottom:899.175300px;}
.y49{bottom:917.049300px;}
.y64{bottom:917.170800px;}
.y25{bottom:921.227250px;}
.y48{bottom:935.044800px;}
.y63{bottom:935.166300px;}
.y24{bottom:945.234750px;}
.y47{bottom:953.040300px;}
.y62{bottom:953.161800px;}
.y46{bottom:971.035800px;}
.y61{bottom:971.157300px;}
.y45{bottom:989.031300px;}
.y60{bottom:989.152800px;}
.y23{bottom:990.490050px;}
.y22{bottom:1006.244550px;}
.y44{bottom:1007.026800px;}
.y5f{bottom:1007.148300px;}
.y21{bottom:1024.120500px;}
.y43{bottom:1025.022300px;}
.y5e{bottom:1025.143800px;}
.y42{bottom:1043.017800px;}
.y5d{bottom:1043.139300px;}
.y41{bottom:1061.013300px;}
.y5c{bottom:1061.134800px;}
.y20{bottom:1069.634250px;}
.y40{bottom:1079.008800px;}
.y5b{bottom:1079.130300px;}
.y4{bottom:1109.365200px;}
.y3{bottom:1120.615200px;}
.y35{bottom:1131.195600px;}
.y33{bottom:1131.207300px;}
.y2{bottom:1131.340350px;}
.he{height:23.218125px;}
.hc{height:24.191250px;}
.h4{height:25.560000px;}
.h3{height:29.820000px;}
.h11{height:33.328125px;}
.hf{height:36.597656px;}
.h2{height:37.415039px;}
.h12{height:37.968750px;}
.hd{height:40.031250px;}
.h10{height:42.714844px;}
.h5{height:44.730469px;}
.h8{height:45.035156px;}
.h7{height:47.460938px;}
.h9{height:48.761719px;}
.h6{height:50.039062px;}
.hb{height:60.046875px;}
.ha{height:60.996094px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x3{left:85.039350px;}
.xb{left:97.806150px;}
.x4{left:106.294350px;}
.x7{left:432.079650px;}
.x1{left:440.583600px;}
.xa{left:459.214650px;}
.x5{left:467.719350px;}
.x9{left:480.477150px;}
.x2{left:625.304400px;}
.x8{left:632.751000px;}
@media print{
.v5{vertical-align:-14.080000pt;}
.v2{vertical-align:-1.787200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.866133pt;}
.v3{vertical-align:15.840000pt;}
.v4{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-1.200000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls2{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.200000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls0{letter-spacing:8.895467pt;}
.ls3{letter-spacing:10.666667pt;}
.ws1{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.400000pt;}
.ws8{word-spacing:-7.552000pt;}
.ws4{word-spacing:-6.960000pt;}
.ws4d{word-spacing:-2.832000pt;}
.ws32{word-spacing:-2.613333pt;}
.ws1e{word-spacing:-2.293333pt;}
.ws12{word-spacing:-1.813333pt;}
.ws22{word-spacing:-1.653333pt;}
.ws4c{word-spacing:-1.488000pt;}
.ws13{word-spacing:-1.333333pt;}
.ws9{word-spacing:-1.200000pt;}
.ws23{word-spacing:-1.066667pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws51{word-spacing:-0.480000pt;}
.ws63{word-spacing:-0.432000pt;}
.ws31{word-spacing:-0.320000pt;}
.ws5e{word-spacing:-0.288000pt;}
.ws18{word-spacing:-0.266667pt;}
.ws5a{word-spacing:-0.144000pt;}
.ws7{word-spacing:0.000000pt;}
.ws46{word-spacing:0.042667pt;}
.ws15{word-spacing:0.053333pt;}
.ws54{word-spacing:0.096000pt;}
.ws4b{word-spacing:0.144000pt;}
.ws55{word-spacing:0.240000pt;}
.ws21{word-spacing:0.266667pt;}
.ws56{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.ws49{word-spacing:0.480000pt;}
.ws26{word-spacing:0.528000pt;}
.ws68{word-spacing:0.768000pt;}
.ws33{word-spacing:0.906667pt;}
.wsc{word-spacing:0.960000pt;}
.ws39{word-spacing:1.056000pt;}
.wsd{word-spacing:1.066667pt;}
.ws11{word-spacing:1.173333pt;}
.ws30{word-spacing:1.226667pt;}
.wse{word-spacing:1.280000pt;}
.ws14{word-spacing:1.333333pt;}
.ws4e{word-spacing:1.488000pt;}
.ws2a{word-spacing:1.493333pt;}
.ws1f{word-spacing:1.760000pt;}
.ws34{word-spacing:2.080000pt;}
.ws53{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.160000pt;}
.ws3d{word-spacing:2.293333pt;}
.ws2d{word-spacing:2.773333pt;}
.ws38{word-spacing:2.832000pt;}
.ws10{word-spacing:3.360000pt;}
.ws41{word-spacing:3.413333pt;}
.ws1a{word-spacing:3.520000pt;}
.ws60{word-spacing:3.552000pt;}
.ws2e{word-spacing:3.680000pt;}
.ws36{word-spacing:3.696000pt;}
.ws20{word-spacing:3.786667pt;}
.ws4f{word-spacing:3.792000pt;}
.ws3f{word-spacing:3.840000pt;}
.ws5b{word-spacing:3.984000pt;}
.ws62{word-spacing:4.032000pt;}
.ws48{word-spacing:4.080000pt;}
.ws27{word-spacing:4.266667pt;}
.ws57{word-spacing:4.320000pt;}
.ws16{word-spacing:4.426667pt;}
.ws64{word-spacing:4.464000pt;}
.ws1b{word-spacing:4.640000pt;}
.ws44{word-spacing:4.746667pt;}
.ws35{word-spacing:5.013333pt;}
.ws1c{word-spacing:5.120000pt;}
.ws3b{word-spacing:5.173333pt;}
.ws6a{word-spacing:5.328000pt;}
.ws45{word-spacing:5.333333pt;}
.ws2b{word-spacing:5.546667pt;}
.ws19{word-spacing:5.760000pt;}
.wsf{word-spacing:5.866667pt;}
.wsb{word-spacing:6.400000pt;}
.ws65{word-spacing:6.528000pt;}
.ws29{word-spacing:6.613333pt;}
.ws67{word-spacing:6.912000pt;}
.ws43{word-spacing:7.040000pt;}
.ws47{word-spacing:7.104000pt;}
.ws4a{word-spacing:7.200000pt;}
.ws40{word-spacing:7.573333pt;}
.ws37{word-spacing:7.584000pt;}
.ws3c{word-spacing:8.373333pt;}
.ws3e{word-spacing:8.480000pt;}
.ws61{word-spacing:8.784000pt;}
.ws1d{word-spacing:9.386667pt;}
.ws5d{word-spacing:9.408000pt;}
.ws52{word-spacing:9.936000pt;}
.ws2c{word-spacing:10.880000pt;}
.ws17{word-spacing:11.093333pt;}
.ws66{word-spacing:11.424000pt;}
.ws42{word-spacing:11.573333pt;}
.ws3a{word-spacing:11.680000pt;}
.ws59{word-spacing:12.240000pt;}
.ws28{word-spacing:12.746667pt;}
.ws58{word-spacing:12.912000pt;}
.ws69{word-spacing:12.960000pt;}
.ws3{word-spacing:13.280000pt;}
.ws6b{word-spacing:14.112000pt;}
.wsa{word-spacing:17.760000pt;}
.ws50{word-spacing:18.816000pt;}
.ws6c{word-spacing:20.544000pt;}
.ws24{word-spacing:25.653333pt;}
.ws25{word-spacing:26.400000pt;}
._f{margin-left:-17.798400pt;}
._7{margin-left:-15.626667pt;}
._9{margin-left:-14.682667pt;}
._d{margin-left:-13.776000pt;}
._10{margin-left:-8.230400pt;}
._11{margin-left:-7.069333pt;}
._4{margin-left:-6.058667pt;}
._6{margin-left:-5.093333pt;}
._5{margin-left:-3.541333pt;}
._8{margin-left:-2.090667pt;}
._3{margin-left:-1.200000pt;}
._c{width:1.072000pt;}
._1{width:2.133333pt;}
._13{width:3.184000pt;}
._2{width:4.266667pt;}
._b{width:5.738667pt;}
._a{width:6.661333pt;}
._12{width:7.904000pt;}
._17{width:9.194667pt;}
._18{width:10.557333pt;}
._16{width:14.501333pt;}
._19{width:15.587200pt;}
._15{width:16.666667pt;}
._14{width:17.637333pt;}
._e{width:26.709333pt;}
._0{width:114.353067pt;}
.fsa{font-size:24.746667pt;}
.fs3{font-size:26.666667pt;}
.fs7{font-size:27.840000pt;}
.fs2{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.334933pt;}
.y1e{bottom:95.118133pt;}
.y3d{bottom:95.142133pt;}
.y34{bottom:95.208000pt;}
.y91{bottom:95.442933pt;}
.y1d{bottom:111.118133pt;}
.y3c{bottom:111.138133pt;}
.y90{bottom:111.438933pt;}
.y1c{bottom:127.118133pt;}
.y3b{bottom:127.134133pt;}
.y8f{bottom:127.434933pt;}
.y1b{bottom:143.118133pt;}
.y3a{bottom:143.130133pt;}
.y8e{bottom:143.430933pt;}
.y1a{bottom:159.118133pt;}
.y39{bottom:159.126133pt;}
.y8d{bottom:159.426933pt;}
.y19{bottom:175.118133pt;}
.y38{bottom:175.122133pt;}
.y8c{bottom:175.422933pt;}
.y18{bottom:191.118133pt;}
.y8b{bottom:191.418933pt;}
.y17{bottom:207.118133pt;}
.y8a{bottom:207.414933pt;}
.y16{bottom:223.118133pt;}
.y89{bottom:223.410933pt;}
.y15{bottom:239.118133pt;}
.y88{bottom:239.406933pt;}
.y14{bottom:255.118133pt;}
.y87{bottom:255.402933pt;}
.y13{bottom:271.118133pt;}
.y86{bottom:271.398933pt;}
.y12{bottom:287.118133pt;}
.y85{bottom:287.394933pt;}
.y11{bottom:303.118133pt;}
.y84{bottom:303.390933pt;}
.y10{bottom:319.118133pt;}
.y83{bottom:319.386933pt;}
.yf{bottom:335.118133pt;}
.y82{bottom:335.382933pt;}
.ye{bottom:351.118133pt;}
.y81{bottom:351.378933pt;}
.yd{bottom:367.118133pt;}
.y80{bottom:367.374933pt;}
.yc{bottom:383.118133pt;}
.y7f{bottom:383.370933pt;}
.yb{bottom:399.118133pt;}
.y7e{bottom:399.366933pt;}
.ya{bottom:415.118133pt;}
.y7d{bottom:415.362933pt;}
.y9{bottom:431.118133pt;}
.y7c{bottom:431.358933pt;}
.y8{bottom:447.118133pt;}
.y7b{bottom:447.354933pt;}
.y7{bottom:463.118133pt;}
.y7a{bottom:463.350933pt;}
.y6{bottom:479.118133pt;}
.y79{bottom:479.346933pt;}
.y1f{bottom:495.118133pt;}
.y78{bottom:495.342933pt;}
.y5{bottom:511.118133pt;}
.y77{bottom:511.338933pt;}
.y37{bottom:527.118133pt;}
.y76{bottom:527.334933pt;}
.y36{bottom:543.118133pt;}
.y5a{bottom:543.222933pt;}
.y75{bottom:543.330933pt;}
.y59{bottom:559.218933pt;}
.y74{bottom:559.326933pt;}
.y32{bottom:560.379733pt;}
.y3f{bottom:575.118133pt;}
.y58{bottom:575.214933pt;}
.y73{bottom:575.322933pt;}
.y3e{bottom:588.451467pt;}
.y31{bottom:589.503733pt;}
.y57{bottom:591.210933pt;}
.y72{bottom:591.318933pt;}
.y30{bottom:603.507733pt;}
.y56{bottom:607.206933pt;}
.y71{bottom:607.314933pt;}
.y2f{bottom:617.511733pt;}
.y55{bottom:623.202933pt;}
.y70{bottom:623.310933pt;}
.y2e{bottom:631.515733pt;}
.y54{bottom:639.198933pt;}
.y6f{bottom:639.306933pt;}
.y53{bottom:655.194933pt;}
.y6e{bottom:655.302933pt;}
.y2d{bottom:664.424133pt;}
.y52{bottom:671.190933pt;}
.y6d{bottom:671.298933pt;}
.y2c{bottom:678.418800pt;}
.y51{bottom:687.186933pt;}
.y6c{bottom:687.294933pt;}
.y2b{bottom:695.933467pt;}
.y50{bottom:703.182933pt;}
.y6b{bottom:703.290933pt;}
.y2a{bottom:709.933467pt;}
.y4f{bottom:719.178933pt;}
.y6a{bottom:719.286933pt;}
.y29{bottom:723.933467pt;}
.y28{bottom:734.418800pt;}
.y4e{bottom:735.174933pt;}
.y69{bottom:735.282933pt;}
.y4d{bottom:751.170933pt;}
.y68{bottom:751.278933pt;}
.y27{bottom:751.933467pt;}
.y4c{bottom:767.166933pt;}
.y67{bottom:767.274933pt;}
.y26{bottom:781.311067pt;}
.y4b{bottom:783.162933pt;}
.y66{bottom:783.270933pt;}
.y4a{bottom:799.158933pt;}
.y65{bottom:799.266933pt;}
.y49{bottom:815.154933pt;}
.y64{bottom:815.262933pt;}
.y25{bottom:818.868667pt;}
.y48{bottom:831.150933pt;}
.y63{bottom:831.258933pt;}
.y24{bottom:840.208667pt;}
.y47{bottom:847.146933pt;}
.y62{bottom:847.254933pt;}
.y46{bottom:863.142933pt;}
.y61{bottom:863.250933pt;}
.y45{bottom:879.138933pt;}
.y60{bottom:879.246933pt;}
.y23{bottom:880.435600pt;}
.y22{bottom:894.439600pt;}
.y44{bottom:895.134933pt;}
.y5f{bottom:895.242933pt;}
.y21{bottom:910.329333pt;}
.y43{bottom:911.130933pt;}
.y5e{bottom:911.238933pt;}
.y42{bottom:927.126933pt;}
.y5d{bottom:927.234933pt;}
.y41{bottom:943.122933pt;}
.y5c{bottom:943.230933pt;}
.y20{bottom:950.786000pt;}
.y40{bottom:959.118933pt;}
.y5b{bottom:959.226933pt;}
.y4{bottom:986.102400pt;}
.y3{bottom:996.102400pt;}
.y35{bottom:1005.507200pt;}
.y33{bottom:1005.517600pt;}
.y2{bottom:1005.635867pt;}
.he{height:20.638333pt;}
.hc{height:21.503333pt;}
.h4{height:22.720000pt;}
.h3{height:26.506667pt;}
.h11{height:29.625000pt;}
.hf{height:32.531250pt;}
.h2{height:33.257812pt;}
.h12{height:33.750000pt;}
.hd{height:35.583333pt;}
.h10{height:37.968750pt;}
.h5{height:39.760417pt;}
.h8{height:40.031250pt;}
.h7{height:42.187500pt;}
.h9{height:43.343750pt;}
.h6{height:44.479167pt;}
.hb{height:53.375000pt;}
.ha{height:54.218750pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x3{left:75.590533pt;}
.xb{left:86.938800pt;}
.x4{left:94.483867pt;}
.x7{left:384.070800pt;}
.x1{left:391.629867pt;}
.xa{left:408.190800pt;}
.x5{left:415.750533pt;}
.x9{left:427.090800pt;}
.x2{left:555.826133pt;}
.x8{left:562.445333pt;}
}




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