
    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_a172b8069c11c7bd9096f382.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_8aa8530b58f5d85ca17cf01b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_3bbcddff13ac91245e9c0621.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.670898;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_dc7a48775efd7cb0ab8aaac1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924805;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_b292cc77de48d7bdc3f69eaa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_189884adda22d44a66d832e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.067143;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_51aba985fcc85198a76b65b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067143;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_dfc8485f579eb6f094026287.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.673828;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_763322dbca98c5f9c0de3732.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.896778;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_6be9c3a3abcf191b6636b103.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_61de65fcbbb88ffd20bf195a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e76ed201731473316f6d0c7d.woff2')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_70ba368ee3bed6c600a4d31b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.713481;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_128217633d77c9d52f35b757.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.499448;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_331d6a2a642436d67244d5eb.woff2')format("woff");}.fff{font-family:fff;line-height:0.722656;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-41.995418px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:32.396405px;}
.v1{vertical-align:43.368000px;}
.v3{vertical-align:64.792870px;}
.v5{vertical-align:107.988217px;}
.ls11{letter-spacing:-13.152967px;}
.ls1a{letter-spacing:-5.773769px;}
.lsa{letter-spacing:-4.741883px;}
.lsd{letter-spacing:-2.476530px;}
.ls8{letter-spacing:-0.203978px;}
.ls9{letter-spacing:-0.076792px;}
.ls15{letter-spacing:-0.067193px;}
.ls1f{letter-spacing:-0.059993px;}
.ls19{letter-spacing:-0.052794px;}
.ls12{letter-spacing:-0.050395px;}
.ls1c{letter-spacing:-0.047995px;}
.lsb{letter-spacing:-0.038396px;}
.lse{letter-spacing:-0.033596px;}
.ls1e{letter-spacing:-0.023997px;}
.ls17{letter-spacing:-0.016798px;}
.ls21{letter-spacing:-0.014398px;}
.ls1b{letter-spacing:-0.011999px;}
.ls20{letter-spacing:-0.010799px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007979px;}
.ls5{letter-spacing:0.013798px;}
.ls6{letter-spacing:0.014398px;}
.ls18{letter-spacing:0.016798px;}
.ls2{letter-spacing:0.023997px;}
.lsf{letter-spacing:0.033596px;}
.ls1d{letter-spacing:0.035996px;}
.ls3{letter-spacing:0.037916px;}
.ls16{letter-spacing:0.041995px;}
.lsc{letter-spacing:0.043195px;}
.ls14{letter-spacing:0.044795px;}
.ls1{letter-spacing:0.052794px;}
.ls0{letter-spacing:0.083991px;}
.ls10{letter-spacing:1.041486px;}
.ls13{letter-spacing:2.637312px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(95,245,245),0 0.015em rgb(95,245,245),0.015em 0 rgb(95,245,245),0 -0.015em  rgb(95,245,245);}
.sc2{text-shadow:-0.015em 0 rgb(36,216,245),0 0.015em rgb(36,216,245),0.015em 0 rgb(36,216,245),0 -0.015em  rgb(36,216,245);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(95,245,245);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(36,216,245);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
}
.ws0{word-spacing:-180.520303px;}
.ws13{word-spacing:-101.940877px;}
.ws5{word-spacing:-51.469584px;}
.ws2{word-spacing:-49.204231px;}
.ws15{word-spacing:-46.775696px;}
.wsc{word-spacing:-44.632730px;}
.ws9{word-spacing:-43.036904px;}
.ws6{word-spacing:-42.079409px;}
.ws8{word-spacing:-42.029014px;}
.ws18{word-spacing:-41.978620px;}
.ws7{word-spacing:-41.961821px;}
.wsb{word-spacing:-41.945023px;}
.wsd{word-spacing:-41.928225px;}
.ws4{word-spacing:-36.039268px;}
.ws1c{word-spacing:-30.032723px;}
.ws1d{word-spacing:-30.020724px;}
.ws1a{word-spacing:-29.984728px;}
.ws1b{word-spacing:-29.948732px;}
.wsa{word-spacing:-28.842451px;}
.ws17{word-spacing:-25.485219px;}
.wsf{word-spacing:-21.039704px;}
.ws12{word-spacing:-21.014507px;}
.ws11{word-spacing:-20.997709px;}
.ws10{word-spacing:-20.980911px;}
.wse{word-spacing:-20.964113px;}
.ws24{word-spacing:-18.012435px;}
.ws25{word-spacing:-17.983638px;}
.ws23{word-spacing:-17.879249px;}
.ws19{word-spacing:-12.224267px;}
.ws22{word-spacing:-0.359961px;}
.ws14{word-spacing:-0.263971px;}
.ws3{word-spacing:-0.191979px;}
.ws16{word-spacing:-0.167982px;}
.ws1f{word-spacing:-0.143984px;}
.ws1e{word-spacing:-0.119987px;}
.ws1{word-spacing:-0.115187px;}
.ws20{word-spacing:-0.095990px;}
.ws21{word-spacing:-0.071992px;}
.ws26{word-spacing:0.000000px;}
._9{margin-left:-14.264044px;}
._3{margin-left:-12.382649px;}
._4{margin-left:-10.366869px;}
._f{margin-left:-8.358270px;}
._a{margin-left:-6.937643px;}
._e{margin-left:-5.123441px;}
._8{margin-left:-3.685998px;}
._1{margin-left:-2.579719px;}
._2{margin-left:-1.007890px;}
._d{width:1.039069px;}
._5{width:2.644991px;}
._0{width:5.074246px;}
._6{width:9.321303px;}
._c{width:11.458750px;}
._b{width:12.898593px;}
._7{width:3400.364344px;}
.fcd{color:transparent;}
.fc0{color:rgb(0,0,255);}
.fc8{color:rgb(0,128,0);}
.fc1{color:rgb(0,157,0);}
.fc4{color:rgb(36,216,245);}
.fcc{color:rgb(134,245,197);}
.fc2{color:rgb(0,84,0);}
.fc5{color:rgb(102,0,255);}
.fc6{color:rgb(184,94,255);}
.fc7{color:rgb(95,245,245);}
.fc9{color:rgb(0,211,0);}
.fca{color:rgb(0,0,0);}
.fc3{color:rgb(0,89,0);}
.fcb{color:rgb(255,255,255);}
.fse{font-size:35.996072px;}
.fs6{font-size:71.992145px;}
.fs5{font-size:83.990836px;}
.fs4{font-size:111.987741px;}
.fsa{font-size:119.986908px;}
.fs1{font-size:143.984290px;}
.fs3{font-size:167.981671px;}
.fs2{font-size:191.979053px;}
.fsd{font-size:239.973816px;}
.fs9{font-size:263.971198px;}
.fsc{font-size:359.960724px;}
.fsb{font-size:479.947632px;}
.fs8{font-size:527.942395px;}
.fs7{font-size:575.937158px;}
.fs0{font-size:1019.888718px;}
.y0{bottom:0.000000px;}
.y16{bottom:151.507841px;}
.y1d{bottom:199.204923px;}
.y3a{bottom:251.323887px;}
.y12{bottom:273.460841px;}
.y3b{bottom:281.436327px;}
.y38{bottom:333.010964px;}
.y11{bottom:346.141241px;}
.y10{bottom:426.398741px;}
.yf{bottom:556.883782px;}
.y1c{bottom:624.024914px;}
.y39{bottom:725.735182px;}
.y1b{bottom:906.960382px;}
.ye{bottom:1178.164132px;}
.yd{bottom:1266.401032px;}
.y33{bottom:1275.382323px;}
.yc{bottom:1317.395332px;}
.y32{bottom:1332.467673px;}
.yb{bottom:1366.889932px;}
.y31{bottom:1394.097423px;}
.y2f{bottom:1483.783773px;}
.y25{bottom:1484.247273px;}
.y30{bottom:1487.779773px;}
.y21{bottom:1573.682592px;}
.y1f{bottom:1575.919092px;}
.y24{bottom:1595.524773px;}
.y2b{bottom:1629.252273px;}
.y28{bottom:1630.378773px;}
.y2e{bottom:1630.692273px;}
.y23{bottom:1690.311273px;}
.y2a{bottom:1690.359273px;}
.y27{bottom:1691.071773px;}
.y2d{bottom:1693.014273px;}
.y20{bottom:1717.666092px;}
.y1e{bottom:1719.904092px;}
.y22{bottom:1744.662273px;}
.y26{bottom:1745.685273px;}
.y29{bottom:1748.949273px;}
.y2c{bottom:1753.068273px;}
.y1a{bottom:1760.711237px;}
.y37{bottom:1812.920237px;}
.y36{bottom:1880.222237px;}
.ya{bottom:1925.178082px;}
.y35{bottom:1961.607737px;}
.y9{bottom:2011.738582px;}
.y17{bottom:2035.515710px;}
.y34{bottom:2041.385319px;}
.y8{bottom:2061.232582px;}
.y5{bottom:2263.961237px;}
.y4{bottom:2320.955237px;}
.y2{bottom:2330.973737px;}
.y3{bottom:2377.949237px;}
.y15{bottom:2649.406964px;}
.y14{bottom:2788.113464px;}
.y13{bottom:2966.131964px;}
.y6{bottom:3845.474237px;}
.y7{bottom:3870.264737px;}
.y1{bottom:4161.584321px;}
.y18{bottom:4362.123000px;}
.y19{bottom:4405.414201px;}
.h13{height:34.166438px;}
.he{height:49.986733px;}
.h8{height:62.706049px;}
.h9{height:76.825903px;}
.h11{height:83.311222px;}
.hf{height:89.580069px;}
.h7{height:125.412097px;}
.h4{height:129.548365px;}
.hc{height:132.081588px;}
.h3{height:135.360231px;}
.h6{height:143.328111px;}
.hd{height:167.297311px;}
.h5{height:186.696111px;}
.hb{height:187.924808px;}
.h12{height:274.610662px;}
.h10{height:319.886972px;}
.ha{height:410.017762px;}
.h2{height:726.073121px;}
.h1{height:4507.499555px;}
.h0{height:4507.500000px;}
.w0{width:4507.500000px;}
.x0{left:0.000000px;}
.x21{left:302.186700px;}
.x35{left:319.161886px;}
.x36{left:340.159486px;}
.x22{left:348.988655px;}
.x20{left:360.520950px;}
.x3{left:364.096162px;}
.x2c{left:366.884680px;}
.x1{left:403.638610px;}
.x1d{left:407.897550px;}
.x2e{left:416.483867px;}
.x2f{left:439.146450px;}
.x7{left:441.443783px;}
.x2d{left:451.053585px;}
.x1a{left:464.549550px;}
.x32{left:486.516000px;}
.x30{left:489.003900px;}
.x31{left:491.004000px;}
.x1b{left:649.663324px;}
.x23{left:725.280600px;}
.x24{left:727.178400px;}
.x25{left:728.394150px;}
.x2b{left:822.481800px;}
.x4{left:860.641553px;}
.x1c{left:900.364500px;}
.x1e{left:1041.656906px;}
.x1f{left:1049.281399px;}
.x26{left:1124.018850px;}
.x27{left:1125.603750px;}
.x34{left:1194.415950px;}
.x2a{left:1263.650250px;}
.x33{left:1499.836950px;}
.x28{left:1507.668000px;}
.x29{left:1509.084000px;}
.x5{left:1609.106837px;}
.x6{left:1821.578617px;}
.x13{left:2160.745500px;}
.x11{left:2163.549781px;}
.x14{left:2180.395500px;}
.x15{left:2190.343500px;}
.x9{left:2276.627408px;}
.x10{left:2340.172860px;}
.x16{left:2444.238278px;}
.x8{left:2470.763901px;}
.x2{left:2600.577000px;}
.xf{left:2618.009398px;}
.xe{left:2634.162789px;}
.xd{left:3385.843674px;}
.x12{left:3453.732904px;}
.xa{left:3518.982158px;}
.x17{left:3570.015000px;}
.x19{left:3589.734000px;}
.xb{left:3627.132812px;}
.xc{left:3635.365714px;}
.x18{left:4428.040201px;}
@media print{
.v2{vertical-align:-37.329260pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:28.796805pt;}
.v1{vertical-align:38.549333pt;}
.v3{vertical-align:57.593663pt;}
.v5{vertical-align:95.989526pt;}
.ls11{letter-spacing:-11.691526pt;}
.ls1a{letter-spacing:-5.132239pt;}
.lsa{letter-spacing:-4.215007pt;}
.lsd{letter-spacing:-2.201360pt;}
.ls8{letter-spacing:-0.181314pt;}
.ls9{letter-spacing:-0.068259pt;}
.ls15{letter-spacing:-0.059727pt;}
.ls1f{letter-spacing:-0.053328pt;}
.ls19{letter-spacing:-0.046928pt;}
.ls12{letter-spacing:-0.044795pt;}
.ls1c{letter-spacing:-0.042662pt;}
.lsb{letter-spacing:-0.034130pt;}
.lse{letter-spacing:-0.029863pt;}
.ls1e{letter-spacing:-0.021331pt;}
.ls17{letter-spacing:-0.014932pt;}
.ls21{letter-spacing:-0.012799pt;}
.ls1b{letter-spacing:-0.010666pt;}
.ls20{letter-spacing:-0.009599pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007093pt;}
.ls5{letter-spacing:0.012265pt;}
.ls6{letter-spacing:0.012799pt;}
.ls18{letter-spacing:0.014932pt;}
.ls2{letter-spacing:0.021331pt;}
.lsf{letter-spacing:0.029863pt;}
.ls1d{letter-spacing:0.031997pt;}
.ls3{letter-spacing:0.033703pt;}
.ls16{letter-spacing:0.037329pt;}
.lsc{letter-spacing:0.038396pt;}
.ls14{letter-spacing:0.039818pt;}
.ls1{letter-spacing:0.046928pt;}
.ls0{letter-spacing:0.074659pt;}
.ls10{letter-spacing:0.925766pt;}
.ls13{letter-spacing:2.344278pt;}
.ws0{word-spacing:-160.462492pt;}
.ws13{word-spacing:-90.614113pt;}
.ws5{word-spacing:-45.750741pt;}
.ws2{word-spacing:-43.737094pt;}
.ws15{word-spacing:-41.578397pt;}
.wsc{word-spacing:-39.673538pt;}
.ws9{word-spacing:-38.255026pt;}
.ws6{word-spacing:-37.403919pt;}
.ws8{word-spacing:-37.359124pt;}
.ws18{word-spacing:-37.314329pt;}
.ws7{word-spacing:-37.299397pt;}
.wsb{word-spacing:-37.284465pt;}
.wsd{word-spacing:-37.269533pt;}
.ws4{word-spacing:-32.034905pt;}
.ws1c{word-spacing:-26.695754pt;}
.ws1d{word-spacing:-26.685088pt;}
.ws1a{word-spacing:-26.653092pt;}
.ws1b{word-spacing:-26.621095pt;}
.wsa{word-spacing:-25.637734pt;}
.ws17{word-spacing:-22.653528pt;}
.wsf{word-spacing:-18.701959pt;}
.ws12{word-spacing:-18.679562pt;}
.ws11{word-spacing:-18.664630pt;}
.ws10{word-spacing:-18.649698pt;}
.wse{word-spacing:-18.634767pt;}
.ws24{word-spacing:-16.011053pt;}
.ws25{word-spacing:-15.985456pt;}
.ws23{word-spacing:-15.892666pt;}
.ws19{word-spacing:-10.866015pt;}
.ws22{word-spacing:-0.319965pt;}
.ws14{word-spacing:-0.234641pt;}
.ws3{word-spacing:-0.170648pt;}
.ws16{word-spacing:-0.149317pt;}
.ws1f{word-spacing:-0.127986pt;}
.ws1e{word-spacing:-0.106655pt;}
.ws1{word-spacing:-0.102389pt;}
.ws20{word-spacing:-0.085324pt;}
.ws21{word-spacing:-0.063993pt;}
.ws26{word-spacing:0.000000pt;}
._9{margin-left:-12.679150pt;}
._3{margin-left:-11.006799pt;}
._4{margin-left:-9.214995pt;}
._f{margin-left:-7.429573pt;}
._a{margin-left:-6.166794pt;}
._e{margin-left:-4.554170pt;}
._8{margin-left:-3.276443pt;}
._1{margin-left:-2.293083pt;}
._2{margin-left:-0.895902pt;}
._d{width:0.923617pt;}
._5{width:2.351103pt;}
._0{width:4.510441pt;}
._6{width:8.285603pt;}
._c{width:10.185555pt;}
._b{width:11.465416pt;}
._7{width:3022.546084pt;}
.fse{font-size:31.996509pt;}
.fs6{font-size:63.993018pt;}
.fs5{font-size:74.658521pt;}
.fs4{font-size:99.544658pt;}
.fsa{font-size:106.655029pt;}
.fs1{font-size:127.986035pt;}
.fs3{font-size:149.317041pt;}
.fs2{font-size:170.648047pt;}
.fsd{font-size:213.310059pt;}
.fs9{font-size:234.641065pt;}
.fsc{font-size:319.965088pt;}
.fsb{font-size:426.620117pt;}
.fs8{font-size:469.282129pt;}
.fs7{font-size:511.944141pt;}
.fs0{font-size:906.567749pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:134.673637pt;}
.y1d{bottom:177.071043pt;}
.y3a{bottom:223.399011pt;}
.y12{bottom:243.076303pt;}
.y3b{bottom:250.165624pt;}
.y38{bottom:296.009746pt;}
.y11{bottom:307.681103pt;}
.y10{bottom:379.021103pt;}
.yf{bottom:495.007806pt;}
.y1c{bottom:554.688812pt;}
.y39{bottom:645.097939pt;}
.y1b{bottom:806.187006pt;}
.ye{bottom:1047.257006pt;}
.yd{bottom:1125.689806pt;}
.y33{bottom:1133.673176pt;}
.yc{bottom:1171.018073pt;}
.y32{bottom:1184.415709pt;}
.yb{bottom:1215.013273pt;}
.y31{bottom:1239.197709pt;}
.y2f{bottom:1318.918909pt;}
.y25{bottom:1319.330909pt;}
.y30{bottom:1322.470909pt;}
.y21{bottom:1398.828971pt;}
.y1f{bottom:1400.816971pt;}
.y24{bottom:1418.244243pt;}
.y2b{bottom:1448.224243pt;}
.y28{bottom:1449.225576pt;}
.y2e{bottom:1449.504243pt;}
.y23{bottom:1502.498909pt;}
.y2a{bottom:1502.541576pt;}
.y27{bottom:1503.174909pt;}
.y2d{bottom:1504.901576pt;}
.y20{bottom:1526.814304pt;}
.y1e{bottom:1528.803637pt;}
.y22{bottom:1550.810909pt;}
.y26{bottom:1551.720243pt;}
.y29{bottom:1554.621576pt;}
.y2c{bottom:1558.282909pt;}
.y1a{bottom:1565.076655pt;}
.y37{bottom:1611.484655pt;}
.y36{bottom:1671.308655pt;}
.ya{bottom:1711.269406pt;}
.y35{bottom:1743.651322pt;}
.y9{bottom:1788.212073pt;}
.y17{bottom:1809.347298pt;}
.y34{bottom:1814.564728pt;}
.y8{bottom:1832.206740pt;}
.y5{bottom:2012.409988pt;}
.y4{bottom:2063.071322pt;}
.y2{bottom:2071.976655pt;}
.y3{bottom:2113.732655pt;}
.y15{bottom:2355.028412pt;}
.y14{bottom:2478.323079pt;}
.y13{bottom:2636.561746pt;}
.y6{bottom:3418.199322pt;}
.y7{bottom:3440.235322pt;}
.y1{bottom:3699.186063pt;}
.y18{bottom:3877.442667pt;}
.y19{bottom:3915.923734pt;}
.h13{height:30.370167pt;}
.he{height:44.432652pt;}
.h8{height:55.738710pt;}
.h9{height:68.289692pt;}
.h11{height:74.054420pt;}
.hf{height:79.626728pt;}
.h7{height:111.477420pt;}
.h4{height:115.154102pt;}
.hc{height:117.405856pt;}
.h3{height:120.320205pt;}
.h6{height:127.402766pt;}
.hd{height:148.708721pt;}
.h5{height:165.952099pt;}
.hb{height:167.044273pt;}
.h12{height:244.098366pt;}
.h10{height:284.343975pt;}
.ha{height:364.460233pt;}
.h2{height:645.398329pt;}
.h1{height:4006.666271pt;}
.h0{height:4006.666667pt;}
.w0{width:4006.666667pt;}
.x0{left:0.000000pt;}
.x21{left:268.610400pt;}
.x35{left:283.699454pt;}
.x36{left:302.363988pt;}
.x22{left:310.212137pt;}
.x20{left:320.463067pt;}
.x3{left:323.641033pt;}
.x2c{left:326.119716pt;}
.x1{left:358.789876pt;}
.x1d{left:362.575600pt;}
.x2e{left:370.207882pt;}
.x2f{left:390.352400pt;}
.x7{left:392.394474pt;}
.x2d{left:400.936520pt;}
.x1a{left:412.932933pt;}
.x32{left:432.458667pt;}
.x30{left:434.670133pt;}
.x31{left:436.448000pt;}
.x1b{left:577.478510pt;}
.x23{left:644.693867pt;}
.x24{left:646.380800pt;}
.x25{left:647.461467pt;}
.x2b{left:731.094933pt;}
.x4{left:765.014714pt;}
.x1c{left:800.324000pt;}
.x1e{left:925.917250pt;}
.x1f{left:932.694577pt;}
.x26{left:999.127867pt;}
.x27{left:1000.536667pt;}
.x34{left:1061.703067pt;}
.x2a{left:1123.244667pt;}
.x33{left:1333.188400pt;}
.x28{left:1340.149333pt;}
.x29{left:1341.408000pt;}
.x5{left:1430.317188pt;}
.x6{left:1619.180993pt;}
.x13{left:1920.662667pt;}
.x11{left:1923.155361pt;}
.x14{left:1938.129333pt;}
.x15{left:1946.972000pt;}
.x9{left:2023.668807pt;}
.x10{left:2080.153653pt;}
.x16{left:2172.656247pt;}
.x8{left:2196.234578pt;}
.x2{left:2311.624000pt;}
.xf{left:2327.119465pt;}
.xe{left:2341.478035pt;}
.xd{left:3009.638821pt;}
.x12{left:3069.984804pt;}
.xa{left:3127.984141pt;}
.x17{left:3173.346667pt;}
.x19{left:3190.874667pt;}
.xb{left:3224.118055pt;}
.xc{left:3231.436190pt;}
.x18{left:3936.035734pt;}
}




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