
    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_70d5a8e2e1aa42eac1d7c9bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_7d934171ee23f7905fd00c73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_c1b04e46a82344a417190518.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_6c8ca64194468cce7a901ab2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_de4204177acd0320b8d41b8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.372000;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_8cf01b92a7b1a10a46796446.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_42876ae55f25134f9bcd25da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_40ec9485c98dee124a74d11c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708000;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_91141a772f63640a17550e01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_fae8befe5124034e5df5f16d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,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);}
.m17{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:11.957100px;}
.ls3{letter-spacing:15.090996px;}
.ls0{letter-spacing:23.912334px;}
.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;}
}
.ws31{word-spacing:-14.944500px;}
.ws5b{word-spacing:-11.955000px;}
.ws32{word-spacing:-4.543068px;}
.ws1e{word-spacing:-3.885450px;}
.ws4{word-spacing:-2.909473px;}
.ws5{word-spacing:-2.908602px;}
.ws1{word-spacing:-2.908217px;}
.ws3{word-spacing:-2.907703px;}
.ws56{word-spacing:-2.091991px;}
.ws44{word-spacing:-1.972554px;}
.ws2e{word-spacing:-1.673784px;}
.ws54{word-spacing:-1.667299px;}
.ws3d{word-spacing:-1.452546px;}
.ws3e{word-spacing:-1.195560px;}
.ws45{word-spacing:-1.135543px;}
.ws12{word-spacing:-1.076124px;}
.ws3f{word-spacing:-0.956747px;}
.ws3a{word-spacing:-0.699563px;}
.ws34{word-spacing:-0.657319px;}
.ws2f{word-spacing:-0.537942px;}
.ws29{word-spacing:-0.358489px;}
.ws10{word-spacing:-0.299129px;}
.wsa{word-spacing:-0.239112px;}
.ws8{word-spacing:-0.216390px;}
.ws3c{word-spacing:-0.215399px;}
.ws5e{word-spacing:-0.191519px;}
.ws60{word-spacing:-0.190945px;}
.ws24{word-spacing:-0.179693px;}
.ws25{word-spacing:-0.179095px;}
.ws43{word-spacing:-0.119735px;}
.ws14{word-spacing:-0.095544px;}
.ws1d{word-spacing:-0.059778px;}
.ws1b{word-spacing:-0.059718px;}
.ws3b{word-spacing:-0.054011px;}
.ws64{word-spacing:-0.048155px;}
.ws35{word-spacing:-0.016836px;}
.ws37{word-spacing:-0.010002px;}
.ws38{word-spacing:-0.005364px;}
.wsc{word-spacing:-0.000299px;}
.ws15{word-spacing:-0.000143px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.000299px;}
.ws27{word-spacing:0.059718px;}
.ws22{word-spacing:0.119676px;}
.ws59{word-spacing:0.143269px;}
.ws26{word-spacing:0.179095px;}
.ws39{word-spacing:0.215399px;}
.wsd{word-spacing:0.239112px;}
.ws13{word-spacing:0.239243px;}
.ws28{word-spacing:0.299129px;}
.ws40{word-spacing:0.657319px;}
.ws49{word-spacing:0.717336px;}
.ws41{word-spacing:0.776755px;}
.wsb{word-spacing:0.777353px;}
.ws1a{word-spacing:1.016166px;}
.ws18{word-spacing:1.076124px;}
.ws4c{word-spacing:1.673784px;}
.ws33{word-spacing:1.913195px;}
.ws47{word-spacing:2.032572px;}
.ws20{word-spacing:2.117610px;}
.ws21{word-spacing:2.152008px;}
.ws2a{word-spacing:2.211965px;}
.ws23{word-spacing:2.331402px;}
.ws61{word-spacing:2.343419px;}
.ws42{word-spacing:2.869643px;}
.ws4a{word-spacing:4.124861px;}
.ws4b{word-spacing:4.244298px;}
.ws5c{word-spacing:4.542996px;}
.ws4d{word-spacing:5.382780px;}
.ws4f{word-spacing:5.411610px;}
.ws51{word-spacing:5.440097px;}
.ws5f{word-spacing:11.715661px;}
.ws57{word-spacing:11.811636px;}
.ws63{word-spacing:11.859647px;}
.ws16{word-spacing:11.907037px;}
.ws5a{word-spacing:12.050449px;}
.ws52{word-spacing:13.398048px;}
.ws53{word-spacing:13.404360px;}
.ws2d{word-spacing:13.759680px;}
.ws11{word-spacing:13.808598px;}
.ws62{word-spacing:14.250025px;}
.ws65{word-spacing:14.250599px;}
.ws1c{word-spacing:14.824944px;}
.ws6{word-spacing:14.884722px;}
.wsf{word-spacing:15.043680px;}
.ws2c{word-spacing:15.063817px;}
.ws55{word-spacing:15.163680px;}
.ws7{word-spacing:15.169680px;}
.ws9{word-spacing:15.173976px;}
.ws48{word-spacing:15.197976px;}
.ws46{word-spacing:15.385680px;}
.ws30{word-spacing:15.419976px;}
.ws19{word-spacing:15.960846px;}
.ws36{word-spacing:16.135758px;}
.ws17{word-spacing:16.433976px;}
.ws5d{word-spacing:16.450176px;}
.ws2b{word-spacing:17.096687px;}
.ws58{word-spacing:17.214865px;}
.ws1f{word-spacing:17.503680px;}
.ws4e{word-spacing:20.797680px;}
.ws50{word-spacing:20.801976px;}
.ws0{word-spacing:21.432924px;}
._3{margin-left:-3.861590px;}
._4{margin-left:-2.356671px;}
._0{margin-left:-1.290882px;}
._2{width:1.570896px;}
._5{width:3.599970px;}
._20{width:5.110532px;}
._a{width:10.042584px;}
._e{width:12.363294px;}
._8{width:13.607840px;}
._1{width:16.363500px;}
._f{width:18.183971px;}
._1c{width:19.785048px;}
._c{width:21.041617px;}
._b{width:23.911200px;}
._6{width:26.898000px;}
._1d{width:29.906971px;}
._1e{width:33.877936px;}
._21{width:39.749012px;}
._22{width:41.165272px;}
._1f{width:51.118815px;}
._7{width:59.778000px;}
._11{width:77.883300px;}
._16{width:83.862900px;}
._1a{width:102.153036px;}
._18{width:480.307482px;}
._17{width:753.458493px;}
._13{width:778.493772px;}
._19{width:863.484462px;}
._d{width:951.543268px;}
._1b{width:957.093768px;}
._10{width:1147.826082px;}
._15{width:1582.255134px;}
._12{width:1584.885366px;}
._9{width:1721.201622px;}
._14{width:2030.364648px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820000px;}
.fs2{font-size:53.796000px;}
.fs3{font-size:59.778000px;}
.fs1{font-size:65.454000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y74{bottom:152.872500px;}
.y7f{bottom:153.330000px;}
.y4d{bottom:155.577000px;}
.y1a{bottom:167.707500px;}
.y73{bottom:170.805000px;}
.y4c{bottom:173.509500px;}
.y7e{bottom:175.746000px;}
.y19{bottom:184.146000px;}
.y72{bottom:188.737500px;}
.y18{bottom:200.584500px;}
.y4b{bottom:201.043500px;}
.y71{bottom:206.670000px;}
.y4a{bottom:218.976000px;}
.y70{bottom:224.602500px;}
.yb0{bottom:231.702000px;}
.y7d{bottom:233.113500px;}
.y49{bottom:236.910000px;}
.y6f{bottom:242.535000px;}
.yaf{bottom:246.645000px;}
.y48{bottom:254.842500px;}
.y17{bottom:259.036500px;}
.y6e{bottom:260.469000px;}
.yae{bottom:261.589500px;}
.y16{bottom:273.981000px;}
.yad{bottom:276.534000px;}
.y6d{bottom:278.401500px;}
.y47{bottom:282.376500px;}
.y15{bottom:288.924000px;}
.yac{bottom:291.477000px;}
.y6c{bottom:296.334000px;}
.y46{bottom:300.310500px;}
.yab{bottom:306.421500px;}
.y6b{bottom:314.266500px;}
.y14{bottom:315.874500px;}
.y45{bottom:318.243000px;}
.yaa{bottom:321.366000px;}
.y6a{bottom:332.199000px;}
.y13{bottom:333.807000px;}
.ya9{bottom:336.309000px;}
.y44{bottom:340.659000px;}
.ya8{bottom:351.253500px;}
.y12{bottom:351.741000px;}
.y69{bottom:354.615000px;}
.ya7{bottom:366.196500px;}
.y11{bottom:373.369500px;}
.y43{bottom:378.196500px;}
.ya6{bottom:381.141000px;}
.y68{bottom:386.745000px;}
.y10{bottom:391.302000px;}
.ya5{bottom:396.085500px;}
.y42{bottom:396.129000px;}
.y67{bottom:404.677500px;}
.ya4{bottom:411.028500px;}
.yf{bottom:412.930500px;}
.y41{bottom:414.063000px;}
.y66{bottom:422.610000px;}
.ya3{bottom:425.973000px;}
.ye{bottom:430.863000px;}
.y40{bottom:431.995500px;}
.y65{bottom:440.542500px;}
.ya2{bottom:440.917500px;}
.yd{bottom:448.795500px;}
.y3f{bottom:449.928000px;}
.ya1{bottom:455.860500px;}
.y64{bottom:458.475000px;}
.yc{bottom:466.728000px;}
.y3e{bottom:467.860500px;}
.ya0{bottom:470.805000px;}
.y63{bottom:476.407500px;}
.yb{bottom:484.660500px;}
.y9f{bottom:485.749500px;}
.y3d{bottom:485.793000px;}
.y62{bottom:494.341500px;}
.y9e{bottom:500.692500px;}
.ya{bottom:502.594500px;}
.y3c{bottom:503.725500px;}
.y61{bottom:512.274000px;}
.y9d{bottom:515.637000px;}
.y3b{bottom:521.659500px;}
.y9{bottom:525.010500px;}
.y60{bottom:530.206500px;}
.y9c{bottom:535.063500px;}
.y3a{bottom:539.592000px;}
.y5f{bottom:548.139000px;}
.y39{bottom:557.524500px;}
.y9b{bottom:566.446500px;}
.y5e{bottom:570.555000px;}
.y38{bottom:575.457000px;}
.y8{bottom:578.206500px;}
.y9a{bottom:584.379000px;}
.y37{bottom:593.389500px;}
.y99{bottom:602.311500px;}
.y5d{bottom:602.683500px;}
.y36{bottom:611.322000px;}
.y98{bottom:620.244000px;}
.y5c{bottom:620.617500px;}
.y35{bottom:629.256000px;}
.y97{bottom:638.176500px;}
.y5b{bottom:638.550000px;}
.y34{bottom:647.188500px;}
.y5a{bottom:656.482500px;}
.y96{bottom:660.592500px;}
.y33{bottom:665.121000px;}
.y59{bottom:674.415000px;}
.y32{bottom:683.053500px;}
.y95{bottom:691.975500px;}
.y58{bottom:692.347500px;}
.y7c{bottom:700.474500px;}
.y94{bottom:709.908000px;}
.y57{bottom:710.280000px;}
.y31{bottom:710.589000px;}
.y7b{bottom:718.407000px;}
.y93{bottom:727.840500px;}
.y56{bottom:728.214000px;}
.y30{bottom:728.521500px;}
.y7a{bottom:736.339500px;}
.y92{bottom:745.774500px;}
.y2f{bottom:746.454000px;}
.y55{bottom:750.628500px;}
.y79{bottom:754.272000px;}
.y91{bottom:763.707000px;}
.y2e{bottom:764.386500px;}
.y78{bottom:776.688000px;}
.y2d{bottom:782.319000px;}
.y90{bottom:786.123000px;}
.y54{bottom:795.907500px;}
.y2c{bottom:800.251500px;}
.y77{bottom:809.733000px;}
.y53{bottom:812.346000px;}
.y2b{bottom:818.185500px;}
.y76{bottom:827.665500px;}
.y52{bottom:828.784500px;}
.y2a{bottom:836.118000px;}
.y51{bottom:845.223000px;}
.y75{bottom:845.598000px;}
.y8f{bottom:846.346500px;}
.y50{bottom:861.661500px;}
.y8e{bottom:862.785000px;}
.y29{bottom:863.652000px;}
.y4f{bottom:878.100000px;}
.y28{bottom:881.584500px;}
.y8d{bottom:881.764500px;}
.y4e{bottom:894.538500px;}
.y27{bottom:899.518500px;}
.y8c{bottom:900.294000px;}
.y26{bottom:917.451000px;}
.y8b{bottom:918.825000px;}
.y25{bottom:935.383500px;}
.y8a{bottom:937.356000px;}
.y24{bottom:953.316000px;}
.y89{bottom:955.885500px;}
.y23{bottom:971.248500px;}
.y88{bottom:974.416500px;}
.y7{bottom:977.737500px;}
.y22{bottom:989.181000px;}
.y87{bottom:992.947500px;}
.y6{bottom:994.176000px;}
.y21{bottom:1007.115000px;}
.y86{bottom:1011.477000px;}
.y20{bottom:1025.047500px;}
.y5{bottom:1027.980000px;}
.y85{bottom:1030.008000px;}
.y4{bottom:1047.406500px;}
.y1f{bottom:1047.463500px;}
.y84{bottom:1048.539000px;}
.y3{bottom:1066.834500px;}
.y83{bottom:1067.068500px;}
.y1e{bottom:1085.001000px;}
.y82{bottom:1085.599500px;}
.y2{bottom:1086.261000px;}
.y1d{bottom:1102.935000px;}
.y81{bottom:1104.130500px;}
.y1c{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y80{bottom:1122.660000px;}
.y1b{bottom:1161.216000px;}
.hb{height:26.481654px;}
.h9{height:33.856560px;}
.ha{height:34.334760px;}
.h8{height:35.195520px;}
.h5{height:38.625528px;}
.h4{height:39.593856px;}
.h6{height:41.725044px;}
.hc{height:42.920604px;}
.h7{height:43.996608px;}
.h3{height:46.995972px;}
.h2{height:60.081048px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:79.008000px;}
.x1{left:80.697000px;}
.x3{left:95.641500px;}
.x23{left:100.471500px;}
.x1f{left:101.640000px;}
.x4{left:103.905000px;}
.x20{left:106.168500px;}
.x21{left:107.662500px;}
.x22{left:112.236000px;}
.xa{left:117.310500px;}
.xd{left:149.763000px;}
.xe{left:156.712500px;}
.x1e{left:162.282000px;}
.x1b{left:189.456000px;}
.x2{left:206.961000px;}
.x11{left:305.058000px;}
.x12{left:312.007500px;}
.x13{left:317.761500px;}
.x14{left:324.711000px;}
.x19{left:338.404500px;}
.x1a{left:345.352500px;}
.xb{left:462.420000px;}
.xc{left:469.368000px;}
.x17{left:497.940000px;}
.x18{left:504.888000px;}
.x8{left:521.364000px;}
.x9{left:528.312000px;}
.xf{left:643.915500px;}
.x10{left:650.865000px;}
.x15{left:653.919000px;}
.x16{left:660.867000px;}
.x1c{left:751.704000px;}
.x1d{left:758.653500px;}
.x6{left:774.781500px;}
.x7{left:781.729500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:10.628533pt;}
.ls3{letter-spacing:13.414219pt;}
.ls0{letter-spacing:21.255408pt;}
.ws31{word-spacing:-13.284000pt;}
.ws5b{word-spacing:-10.626667pt;}
.ws32{word-spacing:-4.038283pt;}
.ws1e{word-spacing:-3.453734pt;}
.ws4{word-spacing:-2.586198pt;}
.ws5{word-spacing:-2.585424pt;}
.ws1{word-spacing:-2.585082pt;}
.ws3{word-spacing:-2.584625pt;}
.ws56{word-spacing:-1.859547pt;}
.ws44{word-spacing:-1.753382pt;}
.ws2e{word-spacing:-1.487808pt;}
.ws54{word-spacing:-1.482044pt;}
.ws3d{word-spacing:-1.291152pt;}
.ws3e{word-spacing:-1.062720pt;}
.ws45{word-spacing:-1.009371pt;}
.ws12{word-spacing:-0.956554pt;}
.ws3f{word-spacing:-0.850442pt;}
.ws3a{word-spacing:-0.621834pt;}
.ws34{word-spacing:-0.584283pt;}
.ws2f{word-spacing:-0.478171pt;}
.ws29{word-spacing:-0.318657pt;}
.ws10{word-spacing:-0.265893pt;}
.wsa{word-spacing:-0.212544pt;}
.ws8{word-spacing:-0.192347pt;}
.ws3c{word-spacing:-0.191466pt;}
.ws5e{word-spacing:-0.170239pt;}
.ws60{word-spacing:-0.169729pt;}
.ws24{word-spacing:-0.159727pt;}
.ws25{word-spacing:-0.159195pt;}
.ws43{word-spacing:-0.106431pt;}
.ws14{word-spacing:-0.084928pt;}
.ws1d{word-spacing:-0.053136pt;}
.ws1b{word-spacing:-0.053083pt;}
.ws3b{word-spacing:-0.048010pt;}
.ws64{word-spacing:-0.042804pt;}
.ws35{word-spacing:-0.014965pt;}
.ws37{word-spacing:-0.008891pt;}
.ws38{word-spacing:-0.004768pt;}
.wsc{word-spacing:-0.000266pt;}
.ws15{word-spacing:-0.000128pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.000266pt;}
.ws27{word-spacing:0.053083pt;}
.ws22{word-spacing:0.106378pt;}
.ws59{word-spacing:0.127350pt;}
.ws26{word-spacing:0.159195pt;}
.ws39{word-spacing:0.191466pt;}
.wsd{word-spacing:0.212544pt;}
.ws13{word-spacing:0.212661pt;}
.ws28{word-spacing:0.265893pt;}
.ws40{word-spacing:0.584283pt;}
.ws49{word-spacing:0.637632pt;}
.ws41{word-spacing:0.690449pt;}
.wsb{word-spacing:0.690981pt;}
.ws1a{word-spacing:0.903259pt;}
.ws18{word-spacing:0.956554pt;}
.ws4c{word-spacing:1.487808pt;}
.ws33{word-spacing:1.700618pt;}
.ws47{word-spacing:1.806730pt;}
.ws20{word-spacing:1.882320pt;}
.ws21{word-spacing:1.912896pt;}
.ws2a{word-spacing:1.966191pt;}
.ws23{word-spacing:2.072357pt;}
.ws61{word-spacing:2.083039pt;}
.ws42{word-spacing:2.550794pt;}
.ws4a{word-spacing:3.666543pt;}
.ws4b{word-spacing:3.772709pt;}
.ws5c{word-spacing:4.038218pt;}
.ws4d{word-spacing:4.784693pt;}
.ws4f{word-spacing:4.810320pt;}
.ws51{word-spacing:4.835642pt;}
.ws5f{word-spacing:10.413921pt;}
.ws57{word-spacing:10.499232pt;}
.ws63{word-spacing:10.541908pt;}
.ws16{word-spacing:10.584032pt;}
.ws5a{word-spacing:10.711510pt;}
.ws52{word-spacing:11.909376pt;}
.ws53{word-spacing:11.914987pt;}
.ws2d{word-spacing:12.230827pt;}
.ws11{word-spacing:12.274310pt;}
.ws62{word-spacing:12.666689pt;}
.ws65{word-spacing:12.667199pt;}
.ws1c{word-spacing:13.177728pt;}
.ws6{word-spacing:13.230864pt;}
.wsf{word-spacing:13.372160pt;}
.ws2c{word-spacing:13.390059pt;}
.ws55{word-spacing:13.478827pt;}
.ws7{word-spacing:13.484160pt;}
.ws9{word-spacing:13.487979pt;}
.ws48{word-spacing:13.509312pt;}
.ws46{word-spacing:13.676160pt;}
.ws30{word-spacing:13.706645pt;}
.ws19{word-spacing:14.187418pt;}
.ws36{word-spacing:14.342896pt;}
.ws17{word-spacing:14.607979pt;}
.ws5d{word-spacing:14.622378pt;}
.ws2b{word-spacing:15.197055pt;}
.ws58{word-spacing:15.302102pt;}
.ws1f{word-spacing:15.558827pt;}
.ws4e{word-spacing:18.486827pt;}
.ws50{word-spacing:18.490645pt;}
.ws0{word-spacing:19.051488pt;}
._3{margin-left:-3.432524pt;}
._4{margin-left:-2.094819pt;}
._0{margin-left:-1.147450pt;}
._2{width:1.396352pt;}
._5{width:3.199973pt;}
._20{width:4.542695pt;}
._a{width:8.926742pt;}
._e{width:10.989595pt;}
._8{width:12.095858pt;}
._1{width:14.545333pt;}
._f{width:16.163529pt;}
._1c{width:17.586709pt;}
._c{width:18.703659pt;}
._b{width:21.254400pt;}
._6{width:23.909333pt;}
._1d{width:26.583974pt;}
._1e{width:30.113721pt;}
._21{width:35.332455pt;}
._22{width:36.591353pt;}
._1f{width:45.438947pt;}
._7{width:53.136000pt;}
._11{width:69.229600pt;}
._16{width:74.544800pt;}
._1a{width:90.802699pt;}
._18{width:426.939984pt;}
._17{width:669.740883pt;}
._13{width:691.994464pt;}
._19{width:767.541744pt;}
._d{width:845.816238pt;}
._1b{width:850.750016pt;}
._10{width:1020.289850pt;}
._15{width:1406.449008pt;}
._12{width:1408.786992pt;}
._9{width:1529.956997pt;}
._14{width:1804.768576pt;}
.fs4{font-size:42.506667pt;}
.fs2{font-size:47.818667pt;}
.fs3{font-size:53.136000pt;}
.fs1{font-size:58.181333pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:135.886667pt;}
.y7f{bottom:136.293333pt;}
.y4d{bottom:138.290667pt;}
.y1a{bottom:149.073333pt;}
.y73{bottom:151.826667pt;}
.y4c{bottom:154.230667pt;}
.y7e{bottom:156.218667pt;}
.y19{bottom:163.685333pt;}
.y72{bottom:167.766667pt;}
.y18{bottom:178.297333pt;}
.y4b{bottom:178.705333pt;}
.y71{bottom:183.706667pt;}
.y4a{bottom:194.645333pt;}
.y70{bottom:199.646667pt;}
.yb0{bottom:205.957333pt;}
.y7d{bottom:207.212000pt;}
.y49{bottom:210.586667pt;}
.y6f{bottom:215.586667pt;}
.yaf{bottom:219.240000pt;}
.y48{bottom:226.526667pt;}
.y17{bottom:230.254667pt;}
.y6e{bottom:231.528000pt;}
.yae{bottom:232.524000pt;}
.y16{bottom:243.538667pt;}
.yad{bottom:245.808000pt;}
.y6d{bottom:247.468000pt;}
.y47{bottom:251.001333pt;}
.y15{bottom:256.821333pt;}
.yac{bottom:259.090667pt;}
.y6c{bottom:263.408000pt;}
.y46{bottom:266.942667pt;}
.yab{bottom:272.374667pt;}
.y6b{bottom:279.348000pt;}
.y14{bottom:280.777333pt;}
.y45{bottom:282.882667pt;}
.yaa{bottom:285.658667pt;}
.y6a{bottom:295.288000pt;}
.y13{bottom:296.717333pt;}
.ya9{bottom:298.941333pt;}
.y44{bottom:302.808000pt;}
.ya8{bottom:312.225333pt;}
.y12{bottom:312.658667pt;}
.y69{bottom:315.213333pt;}
.ya7{bottom:325.508000pt;}
.y11{bottom:331.884000pt;}
.y43{bottom:336.174667pt;}
.ya6{bottom:338.792000pt;}
.y68{bottom:343.773333pt;}
.y10{bottom:347.824000pt;}
.ya5{bottom:352.076000pt;}
.y42{bottom:352.114667pt;}
.y67{bottom:359.713333pt;}
.ya4{bottom:365.358667pt;}
.yf{bottom:367.049333pt;}
.y41{bottom:368.056000pt;}
.y66{bottom:375.653333pt;}
.ya3{bottom:378.642667pt;}
.ye{bottom:382.989333pt;}
.y40{bottom:383.996000pt;}
.y65{bottom:391.593333pt;}
.ya2{bottom:391.926667pt;}
.yd{bottom:398.929333pt;}
.y3f{bottom:399.936000pt;}
.ya1{bottom:405.209333pt;}
.y64{bottom:407.533333pt;}
.yc{bottom:414.869333pt;}
.y3e{bottom:415.876000pt;}
.ya0{bottom:418.493333pt;}
.y63{bottom:423.473333pt;}
.yb{bottom:430.809333pt;}
.y9f{bottom:431.777333pt;}
.y3d{bottom:431.816000pt;}
.y62{bottom:439.414667pt;}
.y9e{bottom:445.060000pt;}
.ya{bottom:446.750667pt;}
.y3c{bottom:447.756000pt;}
.y61{bottom:455.354667pt;}
.y9d{bottom:458.344000pt;}
.y3b{bottom:463.697333pt;}
.y9{bottom:466.676000pt;}
.y60{bottom:471.294667pt;}
.y9c{bottom:475.612000pt;}
.y3a{bottom:479.637333pt;}
.y5f{bottom:487.234667pt;}
.y39{bottom:495.577333pt;}
.y9b{bottom:503.508000pt;}
.y5e{bottom:507.160000pt;}
.y38{bottom:511.517333pt;}
.y8{bottom:513.961333pt;}
.y9a{bottom:519.448000pt;}
.y37{bottom:527.457333pt;}
.y99{bottom:535.388000pt;}
.y5d{bottom:535.718667pt;}
.y36{bottom:543.397333pt;}
.y98{bottom:551.328000pt;}
.y5c{bottom:551.660000pt;}
.y35{bottom:559.338667pt;}
.y97{bottom:567.268000pt;}
.y5b{bottom:567.600000pt;}
.y34{bottom:575.278667pt;}
.y5a{bottom:583.540000pt;}
.y96{bottom:587.193333pt;}
.y33{bottom:591.218667pt;}
.y59{bottom:599.480000pt;}
.y32{bottom:607.158667pt;}
.y95{bottom:615.089333pt;}
.y58{bottom:615.420000pt;}
.y7c{bottom:622.644000pt;}
.y94{bottom:631.029333pt;}
.y57{bottom:631.360000pt;}
.y31{bottom:631.634667pt;}
.y7b{bottom:638.584000pt;}
.y93{bottom:646.969333pt;}
.y56{bottom:647.301333pt;}
.y30{bottom:647.574667pt;}
.y7a{bottom:654.524000pt;}
.y92{bottom:662.910667pt;}
.y2f{bottom:663.514667pt;}
.y55{bottom:667.225333pt;}
.y79{bottom:670.464000pt;}
.y91{bottom:678.850667pt;}
.y2e{bottom:679.454667pt;}
.y78{bottom:690.389333pt;}
.y2d{bottom:695.394667pt;}
.y90{bottom:698.776000pt;}
.y54{bottom:707.473333pt;}
.y2c{bottom:711.334667pt;}
.y77{bottom:719.762667pt;}
.y53{bottom:722.085333pt;}
.y2b{bottom:727.276000pt;}
.y76{bottom:735.702667pt;}
.y52{bottom:736.697333pt;}
.y2a{bottom:743.216000pt;}
.y51{bottom:751.309333pt;}
.y75{bottom:751.642667pt;}
.y8f{bottom:752.308000pt;}
.y50{bottom:765.921333pt;}
.y8e{bottom:766.920000pt;}
.y29{bottom:767.690667pt;}
.y4f{bottom:780.533333pt;}
.y28{bottom:783.630667pt;}
.y8d{bottom:783.790667pt;}
.y4e{bottom:795.145333pt;}
.y27{bottom:799.572000pt;}
.y8c{bottom:800.261333pt;}
.y26{bottom:815.512000pt;}
.y8b{bottom:816.733333pt;}
.y25{bottom:831.452000pt;}
.y8a{bottom:833.205333pt;}
.y24{bottom:847.392000pt;}
.y89{bottom:849.676000pt;}
.y23{bottom:863.332000pt;}
.y88{bottom:866.148000pt;}
.y7{bottom:869.100000pt;}
.y22{bottom:879.272000pt;}
.y87{bottom:882.620000pt;}
.y6{bottom:883.712000pt;}
.y21{bottom:895.213333pt;}
.y86{bottom:899.090667pt;}
.y20{bottom:911.153333pt;}
.y5{bottom:913.760000pt;}
.y85{bottom:915.562667pt;}
.y4{bottom:931.028000pt;}
.y1f{bottom:931.078667pt;}
.y84{bottom:932.034667pt;}
.y3{bottom:948.297333pt;}
.y83{bottom:948.505333pt;}
.y1e{bottom:964.445333pt;}
.y82{bottom:964.977333pt;}
.y2{bottom:965.565333pt;}
.y1d{bottom:980.386667pt;}
.y81{bottom:981.449333pt;}
.y1c{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y80{bottom:997.920000pt;}
.y1b{bottom:1032.192000pt;}
.hb{height:23.539248pt;}
.h9{height:30.094720pt;}
.ha{height:30.519787pt;}
.h8{height:31.284907pt;}
.h5{height:34.333803pt;}
.h4{height:35.194539pt;}
.h6{height:37.088928pt;}
.hc{height:38.151648pt;}
.h7{height:39.108096pt;}
.h3{height:41.774197pt;}
.h2{height:53.405376pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:70.229333pt;}
.x1{left:71.730667pt;}
.x3{left:85.014667pt;}
.x23{left:89.308000pt;}
.x1f{left:90.346667pt;}
.x4{left:92.360000pt;}
.x20{left:94.372000pt;}
.x21{left:95.700000pt;}
.x22{left:99.765333pt;}
.xa{left:104.276000pt;}
.xd{left:133.122667pt;}
.xe{left:139.300000pt;}
.x1e{left:144.250667pt;}
.x1b{left:168.405333pt;}
.x2{left:183.965333pt;}
.x11{left:271.162667pt;}
.x12{left:277.340000pt;}
.x13{left:282.454667pt;}
.x14{left:288.632000pt;}
.x19{left:300.804000pt;}
.x1a{left:306.980000pt;}
.xb{left:411.040000pt;}
.xc{left:417.216000pt;}
.x17{left:442.613333pt;}
.x18{left:448.789333pt;}
.x8{left:463.434667pt;}
.x9{left:469.610667pt;}
.xf{left:572.369333pt;}
.x10{left:578.546667pt;}
.x15{left:581.261333pt;}
.x16{left:587.437333pt;}
.x1c{left:668.181333pt;}
.x1d{left:674.358667pt;}
.x6{left:688.694667pt;}
.x7{left:694.870667pt;}
}




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