
    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_e2fccbb284b9d99f563b6662.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_6836d7f4bf1befa09bab860e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_ce5c55ae193841021c3771da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e0476ae2b9b989e865b5a8e9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_23a153373c742683cf9dd42f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.779000;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_828d60037746ac86621bb745.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_440821fa493b346419b5fbcd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_62aed2fe13e7e7fca2c41cd4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_78c35fc235865bd85201148a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.017000;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_68f49f1c8b166855efa55b19.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006000;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_c331347fa88607d50586f4f4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006000;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_17eea7b6bcbb045f871a606e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.012000;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_aac3c0813192bfe028c22f1e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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_814e60c35eb192595689810b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b6c80df58b9efb9cddfe3c90.woff')format("woff");}.fff{font-family:fff;line-height:0.794000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bdba34d5fd977cd0e71f0ed1.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9c432a77d9ddbd329eadf470.woff')format("woff");}.ff11{font-family:ff11;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_82f45323acb66e393d7f84c5.woff')format("woff");}.ff12{font-family:ff12;line-height:0.794000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b6c80df58b9efb9cddfe3c90.woff')format("woff");}.ff13{font-family:ff13;line-height:0.794000;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.600000px;}
.ls2{letter-spacing:1.050000px;}
.ls3{letter-spacing:12.247200px;}
.ls0{letter-spacing:14.222400px;}
.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;}
}
.ws39{word-spacing:-16.200000px;}
.ws13{word-spacing:-15.600000px;}
.ws55{word-spacing:-14.400000px;}
.ws1{word-spacing:-14.040000px;}
.ws0{word-spacing:-12.480000px;}
.ws12{word-spacing:-11.970000px;}
.ws2{word-spacing:-9.786000px;}
.ws6d{word-spacing:-4.740000px;}
.ws34{word-spacing:-3.960000px;}
.ws5b{word-spacing:-3.300000px;}
.ws2f{word-spacing:-3.180000px;}
.ws25{word-spacing:-3.000000px;}
.ws3b{word-spacing:-2.880000px;}
.ws67{word-spacing:-2.820000px;}
.ws5f{word-spacing:-2.460000px;}
.ws52{word-spacing:-2.340000px;}
.ws4c{word-spacing:-2.280000px;}
.ws2a{word-spacing:-2.100000px;}
.ws62{word-spacing:-1.920000px;}
.ws19{word-spacing:-1.890000px;}
.ws20{word-spacing:-1.740000px;}
.ws1a{word-spacing:-1.566000px;}
.ws22{word-spacing:-0.840000px;}
.ws54{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.660000px;}
.ws4f{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.420000px;}
.ws56{word-spacing:-0.300000px;}
.ws49{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.216000px;}
.ws47{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws58{word-spacing:0.240000px;}
.ws41{word-spacing:0.300000px;}
.ws14{word-spacing:0.480000px;}
.ws33{word-spacing:0.600000px;}
.wse{word-spacing:0.648000px;}
.ws32{word-spacing:0.660000px;}
.ws24{word-spacing:0.780000px;}
.ws71{word-spacing:0.960000px;}
.ws6a{word-spacing:1.020000px;}
.wsa{word-spacing:1.134000px;}
.ws5c{word-spacing:1.200000px;}
.ws1e{word-spacing:1.260000px;}
.ws18{word-spacing:1.728000px;}
.ws3d{word-spacing:1.740000px;}
.ws5a{word-spacing:1.920000px;}
.ws17{word-spacing:1.944000px;}
.ws1b{word-spacing:1.998000px;}
.ws2d{word-spacing:2.100000px;}
.ws61{word-spacing:2.160000px;}
.wsf{word-spacing:2.226000px;}
.ws44{word-spacing:2.280000px;}
.ws23{word-spacing:2.520000px;}
.ws11{word-spacing:2.604000px;}
.ws10{word-spacing:2.688000px;}
.ws43{word-spacing:2.700000px;}
.ws68{word-spacing:3.000000px;}
.ws3e{word-spacing:3.060000px;}
.ws35{word-spacing:3.240000px;}
.ws9{word-spacing:3.294000px;}
.ws57{word-spacing:3.360000px;}
.ws46{word-spacing:3.420000px;}
.ws1d{word-spacing:3.456000px;}
.ws30{word-spacing:3.480000px;}
.ws2c{word-spacing:3.540000px;}
.ws21{word-spacing:3.660000px;}
.ws6b{word-spacing:3.720000px;}
.ws69{word-spacing:3.840000px;}
.ws64{word-spacing:3.960000px;}
.ws4d{word-spacing:4.080000px;}
.ws28{word-spacing:4.140000px;}
.ws65{word-spacing:4.260000px;}
.ws40{word-spacing:4.320000px;}
.ws6f{word-spacing:4.500000px;}
.ws66{word-spacing:4.620000px;}
.ws5e{word-spacing:4.800000px;}
.ws3a{word-spacing:4.980000px;}
.ws60{word-spacing:5.700000px;}
.ws2b{word-spacing:5.760000px;}
.wsb{word-spacing:5.832000px;}
.ws5d{word-spacing:6.000000px;}
.ws29{word-spacing:6.240000px;}
.ws36{word-spacing:6.300000px;}
.ws48{word-spacing:6.540000px;}
.ws31{word-spacing:6.780000px;}
.ws70{word-spacing:6.960000px;}
.ws4e{word-spacing:7.200000px;}
.ws63{word-spacing:7.320000px;}
.ws59{word-spacing:7.620000px;}
.ws50{word-spacing:7.680000px;}
.ws3f{word-spacing:7.860000px;}
.ws4a{word-spacing:8.040000px;}
.wsc{word-spacing:8.478000px;}
.ws3c{word-spacing:8.820000px;}
.ws1c{word-spacing:9.072000px;}
.ws7{word-spacing:9.288000px;}
.ws4b{word-spacing:9.300000px;}
.ws2e{word-spacing:9.420000px;}
.ws27{word-spacing:10.200000px;}
.ws6{word-spacing:10.422000px;}
.ws37{word-spacing:10.800000px;}
.ws15{word-spacing:10.908000px;}
.ws1f{word-spacing:11.280000px;}
.ws16{word-spacing:12.258000px;}
.ws4{word-spacing:12.690000px;}
.ws5{word-spacing:14.202000px;}
.ws26{word-spacing:14.940000px;}
.ws51{word-spacing:15.060000px;}
.ws6e{word-spacing:15.240000px;}
.wsd{word-spacing:16.038000px;}
.ws42{word-spacing:18.180000px;}
.ws38{word-spacing:411.776400px;}
._d{margin-left:-6.824400px;}
._8{margin-left:-5.540400px;}
._4{margin-left:-3.606000px;}
._2{margin-left:-2.181600px;}
._0{margin-left:-1.011175px;}
._7{width:1.033200px;}
._b{width:2.307600px;}
._a{width:3.641575px;}
._6{width:5.000400px;}
._5{width:6.156000px;}
._9{width:7.224000px;}
._e{width:9.096000px;}
._c{width:10.482000px;}
._3{width:48.819000px;}
._1{width:204.162461px;}
.fc3{color:rgb(112,111,111);}
.fc2{color:rgb(157,157,156);}
.fc1{color:rgb(9,131,197);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:48.151200px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:21.267750px;}
.y1d{bottom:36.267750px;}
.y20{bottom:46.600050px;}
.y1c{bottom:51.267750px;}
.y21{bottom:56.570100px;}
.y1f{bottom:63.100050px;}
.y1b{bottom:70.519800px;}
.y1{bottom:124.652850px;}
.y7b{bottom:145.002750px;}
.y4f{bottom:145.224300px;}
.y7a{bottom:168.252750px;}
.y4e{bottom:168.474300px;}
.y79{bottom:191.502750px;}
.y4d{bottom:191.724300px;}
.y78{bottom:214.752750px;}
.y4c{bottom:214.974300px;}
.y77{bottom:238.002750px;}
.y4b{bottom:238.224300px;}
.y76{bottom:261.252750px;}
.y4a{bottom:261.474300px;}
.y14{bottom:263.784750px;}
.y75{bottom:284.502750px;}
.y49{bottom:284.724300px;}
.y13{bottom:285.387150px;}
.y12{bottom:301.887150px;}
.y74{bottom:307.752750px;}
.y48{bottom:307.974300px;}
.y11{bottom:318.387150px;}
.y73{bottom:331.002750px;}
.y47{bottom:331.224300px;}
.y10{bottom:334.887150px;}
.yf{bottom:351.387150px;}
.y72{bottom:354.252750px;}
.y46{bottom:354.474300px;}
.ye{bottom:367.887150px;}
.y71{bottom:377.502750px;}
.y45{bottom:377.724300px;}
.yd{bottom:384.387150px;}
.y70{bottom:400.752600px;}
.yc{bottom:400.887150px;}
.y44{bottom:400.974300px;}
.yb{bottom:417.387150px;}
.y6f{bottom:424.002600px;}
.y43{bottom:424.224300px;}
.ya{bottom:433.887150px;}
.y6e{bottom:447.252600px;}
.y42{bottom:447.474300px;}
.y6d{bottom:470.502600px;}
.y41{bottom:470.724300px;}
.y1a{bottom:487.017300px;}
.y6c{bottom:493.752600px;}
.y40{bottom:493.974300px;}
.y19{bottom:510.267300px;}
.y6b{bottom:517.002600px;}
.y3f{bottom:517.224300px;}
.y18{bottom:537.769200px;}
.y6a{bottom:540.252600px;}
.y3e{bottom:540.474300px;}
.y69{bottom:563.502600px;}
.y3d{bottom:563.724300px;}
.y17{bottom:564.769200px;}
.y68{bottom:586.752600px;}
.y3c{bottom:586.974300px;}
.y16{bottom:591.769200px;}
.y67{bottom:610.002600px;}
.y3b{bottom:610.224300px;}
.y15{bottom:621.958200px;}
.y66{bottom:633.252600px;}
.y3a{bottom:633.474300px;}
.y65{bottom:656.502600px;}
.y39{bottom:656.724300px;}
.y64{bottom:679.752600px;}
.y38{bottom:679.974300px;}
.y63{bottom:703.002600px;}
.y37{bottom:703.224300px;}
.y62{bottom:726.252600px;}
.y36{bottom:726.474300px;}
.y61{bottom:749.502600px;}
.y35{bottom:749.724300px;}
.y60{bottom:772.752750px;}
.y34{bottom:772.974300px;}
.y5f{bottom:796.002750px;}
.y33{bottom:796.224300px;}
.y9{bottom:799.451400px;}
.y8{bottom:817.427700px;}
.y5e{bottom:819.252750px;}
.y32{bottom:819.474300px;}
.y7{bottom:835.616700px;}
.y5d{bottom:842.502750px;}
.y31{bottom:842.724300px;}
.y5c{bottom:865.752750px;}
.y30{bottom:865.974300px;}
.y6{bottom:876.128550px;}
.y5b{bottom:889.002750px;}
.y2f{bottom:889.224300px;}
.y5{bottom:900.128550px;}
.y5a{bottom:912.252750px;}
.y4{bottom:932.632500px;}
.y59{bottom:935.502750px;}
.y58{bottom:958.752750px;}
.y3{bottom:964.132500px;}
.y2e{bottom:976.253700px;}
.y57{bottom:982.002750px;}
.y2{bottom:995.632500px;}
.y2d{bottom:997.856100px;}
.y56{bottom:1005.252750px;}
.y2c{bottom:1014.356100px;}
.y55{bottom:1028.502750px;}
.y2b{bottom:1030.856100px;}
.y2a{bottom:1047.356100px;}
.y54{bottom:1051.752750px;}
.y29{bottom:1063.856100px;}
.y53{bottom:1075.002750px;}
.y28{bottom:1080.356100px;}
.y27{bottom:1096.856100px;}
.y52{bottom:1098.252750px;}
.y26{bottom:1113.356100px;}
.y51{bottom:1121.502750px;}
.y25{bottom:1129.856100px;}
.y50{bottom:1144.752750px;}
.y24{bottom:1146.356100px;}
.y23{bottom:1198.983150px;}
.y22{bottom:1199.074050px;}
.hb{height:32.130000px;}
.ha{height:32.172000px;}
.h6{height:36.768000px;}
.h2{height:36.883819px;}
.hd{height:37.584000px;}
.hc{height:40.800000px;}
.he{height:41.310000px;}
.h7{height:41.364000px;}
.h5{height:45.960000px;}
.h8{height:50.556000px;}
.h4{height:55.080000px;}
.h9{height:67.500000px;}
.h3{height:79.920000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:41.881800px;}
.xc{left:97.795200px;}
.xd{left:106.299150px;}
.x11{left:127.559100px;}
.x10{left:138.946050px;}
.x4{left:142.401450px;}
.xa{left:148.818900px;}
.x15{left:170.078700px;}
.x1{left:184.789800px;}
.x16{left:191.338500px;}
.x2{left:201.288000px;}
.x5{left:226.167150px;}
.x3{left:259.511850px;}
.x9{left:289.156050px;}
.x6{left:307.039950px;}
.xb{left:362.267700px;}
.x7{left:370.399950px;}
.x8{left:384.927450px;}
.x13{left:432.106800px;}
.x12{left:468.078900px;}
.xe{left:796.405200px;}
.xf{left:825.858900px;}
.x17{left:826.908600px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.933333pt;}
.ls3{letter-spacing:10.886400pt;}
.ls0{letter-spacing:12.642133pt;}
.ws39{word-spacing:-14.400000pt;}
.ws13{word-spacing:-13.866667pt;}
.ws55{word-spacing:-12.800000pt;}
.ws1{word-spacing:-12.480000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws12{word-spacing:-10.640000pt;}
.ws2{word-spacing:-8.698667pt;}
.ws6d{word-spacing:-4.213333pt;}
.ws34{word-spacing:-3.520000pt;}
.ws5b{word-spacing:-2.933333pt;}
.ws2f{word-spacing:-2.826667pt;}
.ws25{word-spacing:-2.666667pt;}
.ws3b{word-spacing:-2.560000pt;}
.ws67{word-spacing:-2.506667pt;}
.ws5f{word-spacing:-2.186667pt;}
.ws52{word-spacing:-2.080000pt;}
.ws4c{word-spacing:-2.026667pt;}
.ws2a{word-spacing:-1.866667pt;}
.ws62{word-spacing:-1.706667pt;}
.ws19{word-spacing:-1.680000pt;}
.ws20{word-spacing:-1.546667pt;}
.ws1a{word-spacing:-1.392000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws54{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.586667pt;}
.ws4f{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.373333pt;}
.ws56{word-spacing:-0.266667pt;}
.ws49{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.192000pt;}
.ws47{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws58{word-spacing:0.213333pt;}
.ws41{word-spacing:0.266667pt;}
.ws14{word-spacing:0.426667pt;}
.ws33{word-spacing:0.533333pt;}
.wse{word-spacing:0.576000pt;}
.ws32{word-spacing:0.586667pt;}
.ws24{word-spacing:0.693333pt;}
.ws71{word-spacing:0.853333pt;}
.ws6a{word-spacing:0.906667pt;}
.wsa{word-spacing:1.008000pt;}
.ws5c{word-spacing:1.066667pt;}
.ws1e{word-spacing:1.120000pt;}
.ws18{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.546667pt;}
.ws5a{word-spacing:1.706667pt;}
.ws17{word-spacing:1.728000pt;}
.ws1b{word-spacing:1.776000pt;}
.ws2d{word-spacing:1.866667pt;}
.ws61{word-spacing:1.920000pt;}
.wsf{word-spacing:1.978667pt;}
.ws44{word-spacing:2.026667pt;}
.ws23{word-spacing:2.240000pt;}
.ws11{word-spacing:2.314667pt;}
.ws10{word-spacing:2.389333pt;}
.ws43{word-spacing:2.400000pt;}
.ws68{word-spacing:2.666667pt;}
.ws3e{word-spacing:2.720000pt;}
.ws35{word-spacing:2.880000pt;}
.ws9{word-spacing:2.928000pt;}
.ws57{word-spacing:2.986667pt;}
.ws46{word-spacing:3.040000pt;}
.ws1d{word-spacing:3.072000pt;}
.ws30{word-spacing:3.093333pt;}
.ws2c{word-spacing:3.146667pt;}
.ws21{word-spacing:3.253333pt;}
.ws6b{word-spacing:3.306667pt;}
.ws69{word-spacing:3.413333pt;}
.ws64{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.626667pt;}
.ws28{word-spacing:3.680000pt;}
.ws65{word-spacing:3.786667pt;}
.ws40{word-spacing:3.840000pt;}
.ws6f{word-spacing:4.000000pt;}
.ws66{word-spacing:4.106667pt;}
.ws5e{word-spacing:4.266667pt;}
.ws3a{word-spacing:4.426667pt;}
.ws60{word-spacing:5.066667pt;}
.ws2b{word-spacing:5.120000pt;}
.wsb{word-spacing:5.184000pt;}
.ws5d{word-spacing:5.333333pt;}
.ws29{word-spacing:5.546667pt;}
.ws36{word-spacing:5.600000pt;}
.ws48{word-spacing:5.813333pt;}
.ws31{word-spacing:6.026667pt;}
.ws70{word-spacing:6.186667pt;}
.ws4e{word-spacing:6.400000pt;}
.ws63{word-spacing:6.506667pt;}
.ws59{word-spacing:6.773333pt;}
.ws50{word-spacing:6.826667pt;}
.ws3f{word-spacing:6.986667pt;}
.ws4a{word-spacing:7.146667pt;}
.wsc{word-spacing:7.536000pt;}
.ws3c{word-spacing:7.840000pt;}
.ws1c{word-spacing:8.064000pt;}
.ws7{word-spacing:8.256000pt;}
.ws4b{word-spacing:8.266667pt;}
.ws2e{word-spacing:8.373333pt;}
.ws27{word-spacing:9.066667pt;}
.ws6{word-spacing:9.264000pt;}
.ws37{word-spacing:9.600000pt;}
.ws15{word-spacing:9.696000pt;}
.ws1f{word-spacing:10.026667pt;}
.ws16{word-spacing:10.896000pt;}
.ws4{word-spacing:11.280000pt;}
.ws5{word-spacing:12.624000pt;}
.ws26{word-spacing:13.280000pt;}
.ws51{word-spacing:13.386667pt;}
.ws6e{word-spacing:13.546667pt;}
.wsd{word-spacing:14.256000pt;}
.ws42{word-spacing:16.160000pt;}
.ws38{word-spacing:366.023467pt;}
._d{margin-left:-6.066133pt;}
._8{margin-left:-4.924800pt;}
._4{margin-left:-3.205333pt;}
._2{margin-left:-1.939200pt;}
._0{margin-left:-0.898822pt;}
._7{width:0.918400pt;}
._b{width:2.051200pt;}
._a{width:3.236956pt;}
._6{width:4.444800pt;}
._5{width:5.472000pt;}
._9{width:6.421333pt;}
._e{width:8.085333pt;}
._c{width:9.317333pt;}
._3{width:43.394667pt;}
._1{width:181.477743pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:42.801067pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:18.904667pt;}
.y1d{bottom:32.238000pt;}
.y20{bottom:41.422267pt;}
.y1c{bottom:45.571333pt;}
.y21{bottom:50.284533pt;}
.y1f{bottom:56.088933pt;}
.y1b{bottom:62.684267pt;}
.y1{bottom:110.802533pt;}
.y7b{bottom:128.891333pt;}
.y4f{bottom:129.088267pt;}
.y7a{bottom:149.558000pt;}
.y4e{bottom:149.754933pt;}
.y79{bottom:170.224667pt;}
.y4d{bottom:170.421600pt;}
.y78{bottom:190.891333pt;}
.y4c{bottom:191.088267pt;}
.y77{bottom:211.558000pt;}
.y4b{bottom:211.754933pt;}
.y76{bottom:232.224667pt;}
.y4a{bottom:232.421600pt;}
.y14{bottom:234.475333pt;}
.y75{bottom:252.891333pt;}
.y49{bottom:253.088267pt;}
.y13{bottom:253.677467pt;}
.y12{bottom:268.344133pt;}
.y74{bottom:273.558000pt;}
.y48{bottom:273.754933pt;}
.y11{bottom:283.010800pt;}
.y73{bottom:294.224667pt;}
.y47{bottom:294.421600pt;}
.y10{bottom:297.677467pt;}
.yf{bottom:312.344133pt;}
.y72{bottom:314.891333pt;}
.y46{bottom:315.088267pt;}
.ye{bottom:327.010800pt;}
.y71{bottom:335.558000pt;}
.y45{bottom:335.754933pt;}
.yd{bottom:341.677467pt;}
.y70{bottom:356.224533pt;}
.yc{bottom:356.344133pt;}
.y44{bottom:356.421600pt;}
.yb{bottom:371.010800pt;}
.y6f{bottom:376.891200pt;}
.y43{bottom:377.088267pt;}
.ya{bottom:385.677467pt;}
.y6e{bottom:397.557867pt;}
.y42{bottom:397.754933pt;}
.y6d{bottom:418.224533pt;}
.y41{bottom:418.421600pt;}
.y1a{bottom:432.904267pt;}
.y6c{bottom:438.891200pt;}
.y40{bottom:439.088267pt;}
.y19{bottom:453.570933pt;}
.y6b{bottom:459.557867pt;}
.y3f{bottom:459.754933pt;}
.y18{bottom:478.017067pt;}
.y6a{bottom:480.224533pt;}
.y3e{bottom:480.421600pt;}
.y69{bottom:500.891200pt;}
.y3d{bottom:501.088267pt;}
.y17{bottom:502.017067pt;}
.y68{bottom:521.557867pt;}
.y3c{bottom:521.754933pt;}
.y16{bottom:526.017067pt;}
.y67{bottom:542.224533pt;}
.y3b{bottom:542.421600pt;}
.y15{bottom:552.851733pt;}
.y66{bottom:562.891200pt;}
.y3a{bottom:563.088267pt;}
.y65{bottom:583.557867pt;}
.y39{bottom:583.754933pt;}
.y64{bottom:604.224533pt;}
.y38{bottom:604.421600pt;}
.y63{bottom:624.891200pt;}
.y37{bottom:625.088267pt;}
.y62{bottom:645.557867pt;}
.y36{bottom:645.754933pt;}
.y61{bottom:666.224533pt;}
.y35{bottom:666.421600pt;}
.y60{bottom:686.891333pt;}
.y34{bottom:687.088267pt;}
.y5f{bottom:707.558000pt;}
.y33{bottom:707.754933pt;}
.y9{bottom:710.623467pt;}
.y8{bottom:726.602400pt;}
.y5e{bottom:728.224667pt;}
.y32{bottom:728.421600pt;}
.y7{bottom:742.770400pt;}
.y5d{bottom:748.891333pt;}
.y31{bottom:749.088267pt;}
.y5c{bottom:769.558000pt;}
.y30{bottom:769.754933pt;}
.y6{bottom:778.780933pt;}
.y5b{bottom:790.224667pt;}
.y2f{bottom:790.421600pt;}
.y5{bottom:800.114267pt;}
.y5a{bottom:810.891333pt;}
.y4{bottom:829.006667pt;}
.y59{bottom:831.558000pt;}
.y58{bottom:852.224667pt;}
.y3{bottom:857.006667pt;}
.y2e{bottom:867.781067pt;}
.y57{bottom:872.891333pt;}
.y2{bottom:885.006667pt;}
.y2d{bottom:886.983200pt;}
.y56{bottom:893.558000pt;}
.y2c{bottom:901.649867pt;}
.y55{bottom:914.224667pt;}
.y2b{bottom:916.316533pt;}
.y2a{bottom:930.983200pt;}
.y54{bottom:934.891333pt;}
.y29{bottom:945.649867pt;}
.y53{bottom:955.558000pt;}
.y28{bottom:960.316533pt;}
.y27{bottom:974.983200pt;}
.y52{bottom:976.224667pt;}
.y26{bottom:989.649867pt;}
.y51{bottom:996.891333pt;}
.y25{bottom:1004.316533pt;}
.y50{bottom:1017.558000pt;}
.y24{bottom:1018.983200pt;}
.y23{bottom:1065.762800pt;}
.y22{bottom:1065.843600pt;}
.hb{height:28.560000pt;}
.ha{height:28.597333pt;}
.h6{height:32.682667pt;}
.h2{height:32.785617pt;}
.hd{height:33.408000pt;}
.hc{height:36.266667pt;}
.he{height:36.720000pt;}
.h7{height:36.768000pt;}
.h5{height:40.853333pt;}
.h8{height:44.938667pt;}
.h4{height:48.960000pt;}
.h9{height:60.000000pt;}
.h3{height:71.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:37.228267pt;}
.xc{left:86.929067pt;}
.xd{left:94.488133pt;}
.x11{left:113.385867pt;}
.x10{left:123.507600pt;}
.x4{left:126.579067pt;}
.xa{left:132.283467pt;}
.x15{left:151.181067pt;}
.x1{left:164.257600pt;}
.x16{left:170.078667pt;}
.x2{left:178.922667pt;}
.x5{left:201.037467pt;}
.x3{left:230.677200pt;}
.x9{left:257.027600pt;}
.x6{left:272.924400pt;}
.xb{left:322.015733pt;}
.x7{left:329.244400pt;}
.x8{left:342.157733pt;}
.x13{left:384.094933pt;}
.x12{left:416.070133pt;}
.xe{left:707.915733pt;}
.xf{left:734.096800pt;}
.x17{left:735.029867pt;}
}




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