
    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_0d7d71a29232199763e72058.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f7ccd2f0f49b2e576be4dd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_0145e58e9f88c2b18dd6acd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858000;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_b3292952d84fbf15c24bf7a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_4f6b0e0fdd4873580d704ae4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_269dca9d6075187501c5d128.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_bb935e8e1798af19d85e2d4b.woff2')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_bb29575995febf24101936bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.876000;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_9d042090784525eaf670122b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.634000;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_d731fecab2b3894eef09f292.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_bd3e180dd444f77806f36012.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_9a3877b5b77b822755e240eb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8cfc6b6e39c1802fe1dcd5dc.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ead15c447f0f0e2be56b7db4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_2a46af0b37df683300b24d52.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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);}
.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:-22.319520px;}
.v6{vertical-align:-16.560960px;}
.v5{vertical-align:-10.717980px;}
.v3{vertical-align:-8.641380px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v4{vertical-align:24.478140px;}
.lsf{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000360px;}
.ls5{letter-spacing:0.020922px;}
.ls9{letter-spacing:0.271917px;}
.ls6{letter-spacing:0.274257px;}
.lsb{letter-spacing:0.521152px;}
.lsc{letter-spacing:0.579390px;}
.ls2{letter-spacing:2.564332px;}
.ls3{letter-spacing:3.286192px;}
.ls7{letter-spacing:3.552236px;}
.ls4{letter-spacing:6.752397px;}
.lse{letter-spacing:20.317824px;}
.lsa{letter-spacing:24.738828px;}
.ls1{letter-spacing:32.349896px;}
.ls0{letter-spacing:33.121787px;}
.ls8{letter-spacing:369.361492px;}
.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;}
}
.ws21{word-spacing:-29.887920px;}
.ws53{word-spacing:-26.899140px;}
.ws5d{word-spacing:-23.910330px;}
.ws41{word-spacing:-23.031660px;}
.ws20{word-spacing:-20.921550px;}
.ws42{word-spacing:-16.122150px;}
.ws3{word-spacing:-9.956414px;}
.ws1{word-spacing:-9.477557px;}
.ws1e{word-spacing:-0.059776px;}
.ws5c{word-spacing:-0.053798px;}
.ws5f{word-spacing:0.000000px;}
.ws23{word-spacing:0.050193px;}
.ws9{word-spacing:12.080834px;}
.ws1c{word-spacing:12.843736px;}
.ws10{word-spacing:13.761170px;}
.wsd{word-spacing:14.239436px;}
.ws11{word-spacing:15.547703px;}
.wse{word-spacing:15.679939px;}
.ws39{word-spacing:15.724812px;}
.ws3c{word-spacing:15.725111px;}
.ws1f{word-spacing:16.133675px;}
.ws56{word-spacing:16.173383px;}
.ws12{word-spacing:16.174022px;}
.ws3d{word-spacing:16.543083px;}
.ws57{word-spacing:17.012791px;}
.wsc{word-spacing:17.733688px;}
.ws43{word-spacing:17.733796px;}
.ws1a{word-spacing:17.884573px;}
.ws24{word-spacing:18.148662px;}
.ws15{word-spacing:18.241168px;}
.ws5e{word-spacing:18.292304px;}
.ws36{word-spacing:18.292363px;}
.ws45{word-spacing:18.332625px;}
.ws14{word-spacing:18.428170px;}
.ws52{word-spacing:18.452756px;}
.ws19{word-spacing:18.508154px;}
.ws0{word-spacing:18.603736px;}
.ws2c{word-spacing:18.660224px;}
.ws4c{word-spacing:18.759093px;}
.ws1d{word-spacing:18.760229px;}
.ws22{word-spacing:18.760376px;}
.ws50{word-spacing:19.172458px;}
.ws4d{word-spacing:19.172739px;}
.ws54{word-spacing:19.174622px;}
.ws51{word-spacing:19.275493px;}
.ws44{word-spacing:19.682047px;}
.ws34{word-spacing:19.852154px;}
.ws33{word-spacing:20.198854px;}
.ws46{word-spacing:20.199033px;}
.wsa{word-spacing:20.402191px;}
.ws26{word-spacing:20.999253px;}
.wsb{word-spacing:21.201095px;}
.ws59{word-spacing:21.520280px;}
.ws1b{word-spacing:21.640707px;}
.ws4b{word-spacing:22.203796px;}
.ws35{word-spacing:22.204513px;}
.ws3f{word-spacing:22.261240px;}
.ws31{word-spacing:22.359213px;}
.ws27{word-spacing:22.467646px;}
.ws30{word-spacing:22.612244px;}
.ws5b{word-spacing:22.748660px;}
.ws2d{word-spacing:22.749131px;}
.ws4e{word-spacing:22.774641px;}
.ws4f{word-spacing:22.879978px;}
.ws13{word-spacing:22.880839px;}
.ws3a{word-spacing:22.925111px;}
.ws25{word-spacing:23.078794px;}
.ws8{word-spacing:23.291051px;}
.ws3b{word-spacing:23.368946px;}
.ws2f{word-spacing:23.644154px;}
.ws17{word-spacing:23.799751px;}
.ws5a{word-spacing:24.093291px;}
.ws6{word-spacing:24.093721px;}
.ws32{word-spacing:24.266720px;}
.ws48{word-spacing:24.307008px;}
.ws38{word-spacing:24.363736px;}
.ws37{word-spacing:24.629021px;}
.ws2b{word-spacing:24.629140px;}
.ws29{word-spacing:24.771825px;}
.ws49{word-spacing:24.891198px;}
.ws2a{word-spacing:25.083676px;}
.ws18{word-spacing:25.239751px;}
.ws58{word-spacing:25.532664px;}
.ws7{word-spacing:25.534116px;}
.ws55{word-spacing:25.652741px;}
.ws28{word-spacing:25.805111px;}
.ws47{word-spacing:25.805290px;}
.ws4a{word-spacing:25.959810px;}
.ws3e{word-spacing:26.428094px;}
.wsf{word-spacing:26.480912px;}
.ws2e{word-spacing:26.525589px;}
.ws16{word-spacing:28.062605px;}
.ws5{word-spacing:29.460642px;}
.ws2{word-spacing:30.179267px;}
.ws4{word-spacing:30.179746px;}
.ws40{word-spacing:242.924009px;}
._4{margin-left:-30.610815px;}
._a{margin-left:-27.254448px;}
._c{margin-left:-22.305827px;}
._5{margin-left:-6.413214px;}
._0{margin-left:-5.228832px;}
._8{margin-left:-4.054808px;}
._3{margin-left:-2.072145px;}
._d{margin-left:-1.006460px;}
._1{width:1.126172px;}
._7{width:2.441181px;}
._1b{width:3.920384px;}
._11{width:13.510129px;}
._14{width:14.704942px;}
._13{width:15.814994px;}
._15{width:17.120289px;}
._12{width:18.894391px;}
._2{width:20.752490px;}
._1c{width:21.891318px;}
._f{width:23.083678px;}
._10{width:24.174354px;}
._9{width:25.520737px;}
._e{width:26.585753px;}
._6{width:27.603063px;}
._18{width:29.675496px;}
._1d{width:32.494808px;}
._1a{width:34.182001px;}
._1f{width:36.957157px;}
._17{width:38.642441px;}
._b{width:41.209447px;}
._19{width:42.604261px;}
._1e{width:44.800679px;}
._21{width:46.828552px;}
._16{width:50.224412px;}
._20{width:264.129869px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.244300px;}
.fs3{font-size:35.865480px;}
.fs5{font-size:38.386080px;}
.fs2{font-size:41.843100px;}
.fs6{font-size:46.063320px;}
.fs8{font-size:47.820660px;}
.fs4{font-size:53.798280px;}
.fs0{font-size:59.775840px;}
.fs1{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.200000px;}
.y3c{bottom:10.516500px;}
.y3d{bottom:17.233500px;}
.y5c{bottom:34.349910px;}
.y3e{bottom:59.497500px;}
.y45{bottom:84.448800px;}
.y43{bottom:84.489000px;}
.y5b{bottom:86.010300px;}
.y3f{bottom:101.722500px;}
.y55{bottom:130.470000px;}
.y5a{bottom:130.470150px;}
.y44{bottom:143.587500px;}
.y40{bottom:143.988000px;}
.y54{bottom:146.310300px;}
.y59{bottom:146.310450px;}
.y53{bottom:161.970000px;}
.y58{bottom:161.970150px;}
.y52{bottom:177.629700px;}
.y57{bottom:177.629850px;}
.y41{bottom:186.211500px;}
.y51{bottom:193.290000px;}
.y56{bottom:193.290150px;}
.y50{bottom:274.290450px;}
.y32{bottom:274.290735px;}
.y4f{bottom:291.390450px;}
.y31{bottom:291.390735px;}
.y4e{bottom:308.670300px;}
.y30{bottom:308.670585px;}
.y4d{bottom:325.770300px;}
.y2f{bottom:325.770585px;}
.y4c{bottom:343.050150px;}
.y2e{bottom:343.050435px;}
.y4b{bottom:360.150150px;}
.y2d{bottom:360.150435px;}
.y4a{bottom:377.430000px;}
.y2c{bottom:377.430285px;}
.y49{bottom:394.530000px;}
.y2b{bottom:394.530285px;}
.y2a{bottom:411.810735px;}
.y29{bottom:428.910735px;}
.y28{bottom:446.190585px;}
.y48{bottom:452.130000px;}
.y27{bottom:463.290585px;}
.y47{bottom:467.790300px;}
.y26{bottom:480.570435px;}
.y46{bottom:483.450000px;}
.y25{bottom:497.670435px;}
.y3b{bottom:514.090500px;}
.y24{bottom:514.950285px;}
.y23{bottom:532.050285px;}
.y22{bottom:549.330135px;}
.y21{bottom:566.430135px;}
.y20{bottom:583.530135px;}
.y1f{bottom:600.809985px;}
.y1e{bottom:617.910585px;}
.y1d{bottom:635.190435px;}
.y1c{bottom:652.290435px;}
.y1b{bottom:684.510585px;}
.y3a{bottom:713.131185px;}
.y1a{bottom:716.550285px;}
.y39{bottom:730.231185px;}
.y19{bottom:733.830135px;}
.y38{bottom:747.511035px;}
.y18{bottom:750.930135px;}
.y37{bottom:764.611035px;}
.y17{bottom:768.210585px;}
.y16{bottom:785.310585px;}
.y36{bottom:785.311035px;}
.y15{bottom:802.590435px;}
.y35{bottom:802.590885px;}
.y14{bottom:819.690435px;}
.y34{bottom:819.690885px;}
.y13{bottom:836.970285px;}
.y33{bottom:836.970735px;}
.y12{bottom:883.590435px;}
.y11{bottom:899.250135px;}
.y10{bottom:914.910435px;}
.yf{bottom:930.750135px;}
.ye{bottom:946.409835px;}
.yd{bottom:962.070135px;}
.yc{bottom:977.729835px;}
.yb{bottom:993.390135px;}
.ya{bottom:1009.229835px;}
.y9{bottom:1024.890135px;}
.y8{bottom:1040.549835px;}
.y7{bottom:1056.209535px;}
.y6{bottom:1087.349745px;}
.y5{bottom:1103.009505px;}
.y4{bottom:1118.669850px;}
.y3{bottom:1133.969850px;}
.y2{bottom:1169.790000px;}
.y1{bottom:1213.890000px;}
.hb{height:17.104785px;}
.h4{height:23.850544px;}
.h9{height:32.474641px;}
.ha{height:34.547490px;}
.h8{height:40.035482px;}
.h5{height:40.348710px;}
.h1{height:44.831880px;}
.h3{height:49.383818px;}
.h2{height:49.853184px;}
.h6{height:52.261958px;}
.h7{height:197.049000px;}
.h0{height:1263.000000px;}
.w1{width:248.710500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:9.876000px;}
.xf{left:14.953500px;}
.xe{left:19.032000px;}
.x10{left:20.551500px;}
.x1{left:81.000000px;}
.x17{left:82.979850px;}
.x9{left:95.938680px;}
.x15{left:101.520150px;}
.x13{left:112.879500px;}
.x2{left:118.800000px;}
.x11{left:128.433000px;}
.x8{left:163.258230px;}
.x7{left:176.939730px;}
.x14{left:184.293555px;}
.x5{left:187.379730px;}
.x6{left:188.999730px;}
.xa{left:192.418590px;}
.x4{left:221.040195px;}
.x3{left:312.120000px;}
.xb{left:475.558455px;}
.xc{left:490.498695px;}
.x16{left:496.079250px;}
.xd{left:535.000500px;}
@media print{
.v2{vertical-align:-19.839573pt;}
.v6{vertical-align:-14.720853pt;}
.v5{vertical-align:-9.527093pt;}
.v3{vertical-align:-7.681227pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v4{vertical-align:21.758347pt;}
.lsf{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000320pt;}
.ls5{letter-spacing:0.018597pt;}
.ls9{letter-spacing:0.241704pt;}
.ls6{letter-spacing:0.243784pt;}
.lsb{letter-spacing:0.463246pt;}
.lsc{letter-spacing:0.515014pt;}
.ls2{letter-spacing:2.279406pt;}
.ls3{letter-spacing:2.921059pt;}
.ls7{letter-spacing:3.157543pt;}
.ls4{letter-spacing:6.002131pt;}
.lse{letter-spacing:18.060288pt;}
.lsa{letter-spacing:21.990069pt;}
.ls1{letter-spacing:28.755463pt;}
.ls0{letter-spacing:29.441588pt;}
.ls8{letter-spacing:328.321327pt;}
.ws21{word-spacing:-26.567040pt;}
.ws53{word-spacing:-23.910347pt;}
.ws5d{word-spacing:-21.253627pt;}
.ws41{word-spacing:-20.472587pt;}
.ws20{word-spacing:-18.596933pt;}
.ws42{word-spacing:-14.330800pt;}
.ws3{word-spacing:-8.850145pt;}
.ws1{word-spacing:-8.424495pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws5c{word-spacing:-0.047821pt;}
.ws5f{word-spacing:0.000000pt;}
.ws23{word-spacing:0.044616pt;}
.ws9{word-spacing:10.738519pt;}
.ws1c{word-spacing:11.416654pt;}
.ws10{word-spacing:12.232151pt;}
.wsd{word-spacing:12.657277pt;}
.ws11{word-spacing:13.820180pt;}
.wse{word-spacing:13.937724pt;}
.ws39{word-spacing:13.977610pt;}
.ws3c{word-spacing:13.977876pt;}
.ws1f{word-spacing:14.341045pt;}
.ws56{word-spacing:14.376340pt;}
.ws12{word-spacing:14.376909pt;}
.ws3d{word-spacing:14.704963pt;}
.ws57{word-spacing:15.122481pt;}
.wsc{word-spacing:15.763279pt;}
.ws43{word-spacing:15.763374pt;}
.ws1a{word-spacing:15.897398pt;}
.ws24{word-spacing:16.132144pt;}
.ws15{word-spacing:16.214371pt;}
.ws5e{word-spacing:16.259825pt;}
.ws36{word-spacing:16.259879pt;}
.ws45{word-spacing:16.295666pt;}
.ws14{word-spacing:16.380596pt;}
.ws52{word-spacing:16.402450pt;}
.ws19{word-spacing:16.451693pt;}
.ws0{word-spacing:16.536654pt;}
.ws2c{word-spacing:16.586866pt;}
.ws4c{word-spacing:16.674750pt;}
.ws1d{word-spacing:16.675759pt;}
.ws22{word-spacing:16.675890pt;}
.ws50{word-spacing:17.042185pt;}
.ws4d{word-spacing:17.042434pt;}
.ws54{word-spacing:17.044108pt;}
.ws51{word-spacing:17.133772pt;}
.ws44{word-spacing:17.495153pt;}
.ws34{word-spacing:17.646359pt;}
.ws33{word-spacing:17.954537pt;}
.ws46{word-spacing:17.954696pt;}
.wsa{word-spacing:18.135281pt;}
.ws26{word-spacing:18.666002pt;}
.wsb{word-spacing:18.845418pt;}
.ws59{word-spacing:19.129138pt;}
.ws1b{word-spacing:19.236184pt;}
.ws4b{word-spacing:19.736707pt;}
.ws35{word-spacing:19.737345pt;}
.ws3f{word-spacing:19.787769pt;}
.ws31{word-spacing:19.874856pt;}
.ws27{word-spacing:19.971241pt;}
.ws30{word-spacing:20.099772pt;}
.ws5b{word-spacing:20.221031pt;}
.ws2d{word-spacing:20.221449pt;}
.ws4e{word-spacing:20.244125pt;}
.ws4f{word-spacing:20.337758pt;}
.ws13{word-spacing:20.338523pt;}
.ws3a{word-spacing:20.377876pt;}
.ws25{word-spacing:20.514484pt;}
.ws8{word-spacing:20.703156pt;}
.ws3b{word-spacing:20.772397pt;}
.ws2f{word-spacing:21.017026pt;}
.ws17{word-spacing:21.155334pt;}
.ws5a{word-spacing:21.416258pt;}
.ws6{word-spacing:21.416641pt;}
.ws32{word-spacing:21.570417pt;}
.ws48{word-spacing:21.606230pt;}
.ws38{word-spacing:21.656654pt;}
.ws37{word-spacing:21.892463pt;}
.ws2b{word-spacing:21.892569pt;}
.ws29{word-spacing:22.019400pt;}
.ws49{word-spacing:22.125509pt;}
.ws2a{word-spacing:22.296601pt;}
.ws18{word-spacing:22.435334pt;}
.ws58{word-spacing:22.695701pt;}
.ws7{word-spacing:22.696992pt;}
.ws55{word-spacing:22.802437pt;}
.ws28{word-spacing:22.937876pt;}
.ws47{word-spacing:22.938035pt;}
.ws4a{word-spacing:23.075387pt;}
.ws3e{word-spacing:23.491639pt;}
.wsf{word-spacing:23.538589pt;}
.ws2e{word-spacing:23.578301pt;}
.ws16{word-spacing:24.944538pt;}
.ws5{word-spacing:26.187238pt;}
.ws2{word-spacing:26.826016pt;}
.ws4{word-spacing:26.826441pt;}
.ws40{word-spacing:215.932453pt;}
._4{margin-left:-27.209613pt;}
._a{margin-left:-24.226176pt;}
._c{margin-left:-19.827402pt;}
._5{margin-left:-5.700635pt;}
._0{margin-left:-4.647851pt;}
._8{margin-left:-3.604274pt;}
._3{margin-left:-1.841907pt;}
._d{margin-left:-0.894631pt;}
._1{width:1.001042pt;}
._7{width:2.169939pt;}
._1b{width:3.484785pt;}
._11{width:12.009004pt;}
._14{width:13.071060pt;}
._13{width:14.057772pt;}
._15{width:15.218034pt;}
._12{width:16.795014pt;}
._2{width:18.446658pt;}
._1c{width:19.458949pt;}
._f{width:20.518825pt;}
._10{width:21.488315pt;}
._9{width:22.685099pt;}
._e{width:23.631781pt;}
._6{width:24.536056pt;}
._18{width:26.378219pt;}
._1d{width:28.884274pt;}
._1a{width:30.384001pt;}
._1f{width:32.850806pt;}
._17{width:34.348836pt;}
._b{width:36.630620pt;}
._19{width:37.870454pt;}
._1e{width:39.822825pt;}
._21{width:41.625379pt;}
._16{width:44.643922pt;}
._20{width:234.782106pt;}
.fs7{font-size:28.661600pt;}
.fs3{font-size:31.880427pt;}
.fs5{font-size:34.120960pt;}
.fs2{font-size:37.193867pt;}
.fs6{font-size:40.945173pt;}
.fs8{font-size:42.507253pt;}
.fs4{font-size:47.820693pt;}
.fs0{font-size:53.134080pt;}
.fs1{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.066667pt;}
.y3c{bottom:9.348000pt;}
.y3d{bottom:15.318667pt;}
.y5c{bottom:30.533253pt;}
.y3e{bottom:52.886667pt;}
.y45{bottom:75.065600pt;}
.y43{bottom:75.101333pt;}
.y5b{bottom:76.453600pt;}
.y3f{bottom:90.420000pt;}
.y55{bottom:115.973333pt;}
.y5a{bottom:115.973467pt;}
.y44{bottom:127.633333pt;}
.y40{bottom:127.989333pt;}
.y54{bottom:130.053600pt;}
.y59{bottom:130.053733pt;}
.y53{bottom:143.973333pt;}
.y58{bottom:143.973467pt;}
.y52{bottom:157.893067pt;}
.y57{bottom:157.893200pt;}
.y41{bottom:165.521333pt;}
.y51{bottom:171.813333pt;}
.y56{bottom:171.813467pt;}
.y50{bottom:243.813733pt;}
.y32{bottom:243.813987pt;}
.y4f{bottom:259.013733pt;}
.y31{bottom:259.013987pt;}
.y4e{bottom:274.373600pt;}
.y30{bottom:274.373853pt;}
.y4d{bottom:289.573600pt;}
.y2f{bottom:289.573853pt;}
.y4c{bottom:304.933467pt;}
.y2e{bottom:304.933720pt;}
.y4b{bottom:320.133467pt;}
.y2d{bottom:320.133720pt;}
.y4a{bottom:335.493333pt;}
.y2c{bottom:335.493587pt;}
.y49{bottom:350.693333pt;}
.y2b{bottom:350.693587pt;}
.y2a{bottom:366.053987pt;}
.y29{bottom:381.253987pt;}
.y28{bottom:396.613853pt;}
.y48{bottom:401.893333pt;}
.y27{bottom:411.813853pt;}
.y47{bottom:415.813600pt;}
.y26{bottom:427.173720pt;}
.y46{bottom:429.733333pt;}
.y25{bottom:442.373720pt;}
.y3b{bottom:456.969333pt;}
.y24{bottom:457.733587pt;}
.y23{bottom:472.933587pt;}
.y22{bottom:488.293453pt;}
.y21{bottom:503.493453pt;}
.y20{bottom:518.693453pt;}
.y1f{bottom:534.053320pt;}
.y1e{bottom:549.253853pt;}
.y1d{bottom:564.613720pt;}
.y1c{bottom:579.813720pt;}
.y1b{bottom:608.453853pt;}
.y3a{bottom:633.894387pt;}
.y1a{bottom:636.933587pt;}
.y39{bottom:649.094387pt;}
.y19{bottom:652.293453pt;}
.y38{bottom:664.454253pt;}
.y18{bottom:667.493453pt;}
.y37{bottom:679.654253pt;}
.y17{bottom:682.853853pt;}
.y16{bottom:698.053853pt;}
.y36{bottom:698.054253pt;}
.y15{bottom:713.413720pt;}
.y35{bottom:713.414120pt;}
.y14{bottom:728.613720pt;}
.y34{bottom:728.614120pt;}
.y13{bottom:743.973587pt;}
.y33{bottom:743.973987pt;}
.y12{bottom:785.413720pt;}
.y11{bottom:799.333453pt;}
.y10{bottom:813.253720pt;}
.yf{bottom:827.333453pt;}
.ye{bottom:841.253187pt;}
.yd{bottom:855.173453pt;}
.yc{bottom:869.093187pt;}
.yb{bottom:883.013453pt;}
.ya{bottom:897.093187pt;}
.y9{bottom:911.013453pt;}
.y8{bottom:924.933187pt;}
.y7{bottom:938.852920pt;}
.y6{bottom:966.533107pt;}
.y5{bottom:980.452893pt;}
.y4{bottom:994.373200pt;}
.y3{bottom:1007.973200pt;}
.y2{bottom:1039.813333pt;}
.y1{bottom:1079.013333pt;}
.hb{height:15.204253pt;}
.h4{height:21.200484pt;}
.h9{height:28.866347pt;}
.ha{height:30.708880pt;}
.h8{height:35.587095pt;}
.h5{height:35.865520pt;}
.h1{height:39.850560pt;}
.h3{height:43.896727pt;}
.h2{height:44.313941pt;}
.h6{height:46.455074pt;}
.h7{height:175.154667pt;}
.h0{height:1122.666667pt;}
.w1{width:221.076000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:8.778667pt;}
.xf{left:13.292000pt;}
.xe{left:16.917333pt;}
.x10{left:18.268000pt;}
.x1{left:72.000000pt;}
.x17{left:73.759867pt;}
.x9{left:85.278827pt;}
.x15{left:90.240133pt;}
.x13{left:100.337333pt;}
.x2{left:105.600000pt;}
.x11{left:114.162667pt;}
.x8{left:145.118427pt;}
.x7{left:157.279760pt;}
.x14{left:163.816493pt;}
.x5{left:166.559760pt;}
.x6{left:167.999760pt;}
.xa{left:171.038747pt;}
.x4{left:196.480173pt;}
.x3{left:277.440000pt;}
.xb{left:422.718627pt;}
.xc{left:435.998840pt;}
.x16{left:440.959333pt;}
.xd{left:475.556000pt;}
}




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