
    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_58aba5e455c59aa81dd51e3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_de9a1b936a2d84be58c34bc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_d513c0ddb96113338a3712f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_ef0f5202cfcabc0ea313089b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5a8b9dab444c80d7ee13d9b0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f861c25257cc0a04acff420b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f13f8511a9a505f72c0d70e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687000;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_e7b325cf18f31b9a1d7e5a62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.745000;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_7a6e701c06afef9ef64b5e44.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_b24c594fb3ce794942e0d925.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4c18756379adce97a44c94d4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_453105f0ecb8bd0dad5baf57.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_11fd1f9a428fa87da958f1c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704000;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;}
.m2{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);}
.m8{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);}
.m1f{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);}
.m1e{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);}
.m22{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);}
.m1c{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m21{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);}
.me{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);}
.m1d{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);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m12{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);}
.m14{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m5{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);}
.m19{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);}
.mc{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);}
.m16{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.ma{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);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m13{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);}
.m3{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);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m6{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);}
.mf{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);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m1{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);}
.v1{vertical-align:-10.128000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:0.000000px;}
.ls1d{letter-spacing:3.796367px;}
.ls11{letter-spacing:5.105459px;}
.ls16{letter-spacing:5.170913px;}
.ls21{letter-spacing:10.930918px;}
.ls2{letter-spacing:13.389734px;}
.ls12{letter-spacing:13.993050px;}
.lsd{letter-spacing:14.530921px;}
.ls1e{letter-spacing:14.661830px;}
.ls18{letter-spacing:16.363650px;}
.ls4{letter-spacing:16.557841px;}
.ls5{letter-spacing:16.617617px;}
.ls15{letter-spacing:18.130924px;}
.lsc{letter-spacing:18.196379px;}
.ls22{letter-spacing:18.261833px;}
.ls0{letter-spacing:19.725948px;}
.ls6{letter-spacing:19.898198px;}
.ls3{letter-spacing:19.965050px;}
.lse{letter-spacing:20.094562px;}
.ls1{letter-spacing:20.204153px;}
.lsa{letter-spacing:20.487290px;}
.ls24{letter-spacing:21.207290px;}
.ls9{letter-spacing:21.534563px;}
.ls8{letter-spacing:21.665473px;}
.ls13{letter-spacing:21.796382px;}
.ls17{letter-spacing:21.861836px;}
.lsb{letter-spacing:21.927291px;}
.ls1b{letter-spacing:21.992746px;}
.ls26{letter-spacing:22.189109px;}
.ls27{letter-spacing:22.254564px;}
.ls25{letter-spacing:22.647292px;}
.ls1c{letter-spacing:23.301838px;}
.ls14{letter-spacing:23.367292px;}
.ls23{letter-spacing:23.825474px;}
.ls19{letter-spacing:25.723658px;}
.ls1a{letter-spacing:26.967295px;}
.ls20{letter-spacing:28.210933px;}
.ls7{letter-spacing:28.930933px;}
.ls1f{letter-spacing:32.530936px;}
.ls10{letter-spacing:32.727300px;}
.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;}
}
.ws3d{word-spacing:-53.568045px;}
.ws38{word-spacing:-47.323676px;}
.ws21{word-spacing:-47.258221px;}
.ws39{word-spacing:-42.637126px;}
.ws2e{word-spacing:-33.453846px;}
.ws3e{word-spacing:-31.706208px;}
.ws31{word-spacing:-21.796382px;}
.ws52{word-spacing:-16.756378px;}
.ws54{word-spacing:-15.447286px;}
.ws26{word-spacing:-14.400012px;}
.ws29{word-spacing:-13.876375px;}
.ws34{word-spacing:-12.960011px;}
.ws11{word-spacing:-12.829102px;}
.ws42{word-spacing:-12.763647px;}
.ws23{word-spacing:-12.698192px;}
.ws4c{word-spacing:-12.567283px;}
.ws1e{word-spacing:-12.240010px;}
.wse{word-spacing:-11.847283px;}
.ws2c{word-spacing:-11.716373px;}
.ws4f{word-spacing:-11.585464px;}
.ws4e{word-spacing:-11.520010px;}
.ws35{word-spacing:-11.389100px;}
.ws10{word-spacing:-11.323646px;}
.ws1a{word-spacing:-11.258191px;}
.ws45{word-spacing:-11.192737px;}
.ws17{word-spacing:-11.127282px;}
.ws16{word-spacing:-11.061827px;}
.ws4d{word-spacing:-11.002918px;}
.ws19{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws15{word-spacing:-10.865464px;}
.ws27{word-spacing:-10.800009px;}
.ws20{word-spacing:-10.734554px;}
.ws36{word-spacing:-10.669100px;}
.ws1f{word-spacing:-10.610191px;}
.ws48{word-spacing:-10.603645px;}
.ws30{word-spacing:-10.538191px;}
.ws40{word-spacing:-10.407281px;}
.ws41{word-spacing:-10.348372px;}
.ws6{word-spacing:-10.281403px;}
.ws7{word-spacing:-10.221628px;}
.ws1b{word-spacing:-10.217463px;}
.ws4{word-spacing:-10.161852px;}
.ws46{word-spacing:-10.152008px;}
.wsa{word-spacing:-10.102076px;}
.ws8{word-spacing:-10.042301px;}
.ws28{word-spacing:-10.021099px;}
.wsc{word-spacing:-9.982525px;}
.ws18{word-spacing:-9.955645px;}
.ws2d{word-spacing:-9.949099px;}
.ws9{word-spacing:-9.922750px;}
.ws2f{word-spacing:-9.883645px;}
.ws37{word-spacing:-9.824735px;}
.ws5{word-spacing:-9.683647px;}
.ws3f{word-spacing:-9.628372px;}
.wsb{word-spacing:-9.564096px;}
.ws47{word-spacing:-9.562917px;}
.ws33{word-spacing:-9.294553px;}
.ws53{word-spacing:-9.163644px;}
.ws49{word-spacing:-8.973826px;}
.ws51{word-spacing:-8.967280px;}
.ws2b{word-spacing:-8.378189px;}
.ws50{word-spacing:-8.188370px;}
.wsf{word-spacing:-7.926552px;}
.ws32{word-spacing:-7.861097px;}
.ws4b{word-spacing:-7.527279px;}
.ws1d{word-spacing:-6.617460px;}
.ws4a{word-spacing:-6.545460px;}
.ws3a{word-spacing:-6.414551px;}
.ws44{word-spacing:-6.355642px;}
.ws3{word-spacing:-5.738458px;}
.ws3b{word-spacing:-5.498186px;}
.ws3c{word-spacing:-5.177459px;}
.ws1c{word-spacing:-4.778186px;}
.ws43{word-spacing:-4.581822px;}
.ws14{word-spacing:-3.796367px;}
.ws13{word-spacing:-3.730912px;}
.ws2a{word-spacing:-0.065455px;}
.ws24{word-spacing:0.000000px;}
.ws22{word-spacing:14.465467px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws25{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.wsd{word-spacing:32.192873px;}
._15{margin-left:-10.865464px;}
._9{margin-left:-8.364709px;}
._11{margin-left:-7.316582px;}
._e{margin-left:-6.180871px;}
._6{margin-left:-4.584062px;}
._0{margin-left:-2.788895px;}
._1{margin-left:-1.084590px;}
._4{width:1.613941px;}
._2{width:2.788895px;}
._c{width:5.996170px;}
._17{width:18.050577px;}
._5{width:20.637941px;}
._10{width:21.796382px;}
._b{width:22.883457px;}
._d{width:25.200021px;}
._3{width:26.361040px;}
._a{width:27.988916px;}
._8{width:29.909523px;}
._13{width:32.872358px;}
._14{width:35.483924px;}
._12{width:37.701850px;}
._f{width:41.640789px;}
._16{width:42.747803px;}
._7{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.y29{bottom:108.000000px;}
.y55{bottom:109.074000px;}
.y28{bottom:128.323500px;}
.y54{bottom:142.848000px;}
.y27{bottom:148.647000px;}
.y26{bottom:168.972000px;}
.y53{bottom:176.620500px;}
.y7b{bottom:180.163500px;}
.y52{bottom:196.944000px;}
.y25{bottom:200.473500px;}
.y7a{bottom:200.487000px;}
.y24{bottom:220.798500px;}
.y51{bottom:227.836500px;}
.y79{bottom:233.356500px;}
.y23{bottom:241.122000px;}
.y78{bottom:253.681500px;}
.y50{bottom:271.656000px;}
.y22{bottom:273.987000px;}
.y77{bottom:274.005000px;}
.y4f{bottom:291.979500px;}
.y21{bottom:294.310500px;}
.y76{bottom:305.520000px;}
.y4e{bottom:312.303000px;}
.y20{bottom:314.634000px;}
.y75{bottom:325.843500px;}
.y4d{bottom:332.626500px;}
.y74{bottom:346.167000px;}
.y1f{bottom:347.499000px;}
.y4c{bottom:352.950000px;}
.y73{bottom:366.492000px;}
.y1e{bottom:367.824000px;}
.y4b{bottom:373.275000px;}
.y72{bottom:386.815500px;}
.y1d{bottom:388.147500px;}
.y4a{bottom:393.598500px;}
.y49{bottom:413.922000px;}
.y71{bottom:417.706500px;}
.y1c{bottom:419.650500px;}
.y48{bottom:434.245500px;}
.y1b{bottom:439.974000px;}
.y47{bottom:454.569000px;}
.y1a{bottom:460.297500px;}
.y70{bottom:461.100000px;}
.y19{bottom:480.621000px;}
.y6f{bottom:481.423500px;}
.y46{bottom:488.343000px;}
.y18{bottom:500.944500px;}
.y6e{bottom:501.748500px;}
.y17{bottom:521.269500px;}
.y6d{bottom:522.072000px;}
.y45{bottom:522.117000px;}
.y16{bottom:541.593000px;}
.y6c{bottom:542.395500px;}
.y44{bottom:542.440500px;}
.y15{bottom:561.916500px;}
.y6b{bottom:573.910500px;}
.y43{bottom:576.213000px;}
.y14{bottom:582.240000px;}
.y93{bottom:586.983000px;}
.y6a{bottom:594.234000px;}
.y42{bottom:596.536500px;}
.y13{bottom:602.563500px;}
.y69{bottom:614.559000px;}
.y41{bottom:616.861500px;}
.y92{bottom:623.511000px;}
.y40{bottom:637.185000px;}
.y12{bottom:639.091500px;}
.y68{bottom:647.428500px;}
.y3f{bottom:657.508500px;}
.y67{bottom:667.752000px;}
.y91{bottom:675.069000px;}
.y3e{bottom:677.832000px;}
.y66{bottom:688.077000px;}
.y11{bottom:690.222000px;}
.y90{bottom:695.392500px;}
.y3d{bottom:698.155500px;}
.y10{bottom:708.154500px;}
.y8f{bottom:715.716000px;}
.y3c{bottom:718.480500px;}
.y65{bottom:719.592000px;}
.yf{bottom:726.087000px;}
.y8e{bottom:736.039500px;}
.y3b{bottom:738.804000px;}
.y64{bottom:739.915500px;}
.ye{bottom:744.019500px;}
.y8d{bottom:756.363000px;}
.yd{bottom:761.953500px;}
.y63{bottom:771.430500px;}
.y3a{bottom:772.576500px;}
.y8c{bottom:776.688000px;}
.yc{bottom:779.886000px;}
.y62{bottom:791.755500px;}
.y8b{bottom:797.011500px;}
.yb{bottom:797.818500px;}
.y39{bottom:806.350500px;}
.y61{bottom:812.079000px;}
.ya{bottom:815.751000px;}
.y8a{bottom:817.335000px;}
.y9{bottom:833.683500px;}
.y89{bottom:837.658500px;}
.y38{bottom:840.124500px;}
.y60{bottom:844.948500px;}
.y8{bottom:851.616000px;}
.y88{bottom:857.982000px;}
.y37{bottom:860.448000px;}
.y5f{bottom:865.272000px;}
.y7{bottom:869.550000px;}
.y87{bottom:878.307000px;}
.y36{bottom:880.771500px;}
.y5e{bottom:885.597000px;}
.y6{bottom:887.482500px;}
.y86{bottom:898.630500px;}
.y35{bottom:901.095000px;}
.y5{bottom:912.030000px;}
.y5d{bottom:918.466500px;}
.y85{bottom:918.954000px;}
.y34{bottom:921.418500px;}
.y5c{bottom:938.790000px;}
.y84{bottom:939.277500px;}
.y33{bottom:941.743500px;}
.y83{bottom:959.601000px;}
.y32{bottom:962.067000px;}
.y4{bottom:969.717000px;}
.y5b{bottom:970.306500px;}
.y82{bottom:979.926000px;}
.y31{bottom:982.390500px;}
.y81{bottom:1000.249500px;}
.y5a{bottom:1001.821500px;}
.y30{bottom:1002.714000px;}
.y3{bottom:1006.404000px;}
.y80{bottom:1020.573000px;}
.y59{bottom:1022.145000px;}
.y2f{bottom:1033.606500px;}
.y7f{bottom:1040.896500px;}
.y58{bottom:1042.468500px;}
.y2{bottom:1051.870500px;}
.y7e{bottom:1061.220000px;}
.y57{bottom:1062.793500px;}
.y1{bottom:1072.792500px;}
.y2e{bottom:1077.424500px;}
.y7d{bottom:1081.545000px;}
.y56{bottom:1083.117000px;}
.y2d{bottom:1097.748000px;}
.y7c{bottom:1101.868500px;}
.y2c{bottom:1118.073000px;}
.y2b{bottom:1138.396500px;}
.h6{height:40.826735px;}
.h7{height:41.065837px;}
.h4{height:41.842920px;}
.hc{height:44.705492px;}
.h5{height:44.831700px;}
.hd{height:44.836401px;}
.ha{height:44.967310px;}
.he{height:46.145493px;}
.h9{height:49.090950px;}
.hb{height:50.211840px;}
.h3{height:51.216077px;}
.h8{height:60.254040px;}
.h2{height:72.201388px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:106.929000px;}
.xe{left:108.000000px;}
.x10{left:127.999500px;}
.xf{left:133.404000px;}
.x33{left:138.087000px;}
.x20{left:146.994000px;}
.x7{left:148.909500px;}
.x29{left:152.490000px;}
.x2a{left:167.925000px;}
.x60{left:169.128000px;}
.x6{left:171.325500px;}
.x5b{left:175.327500px;}
.x5c{left:190.513500px;}
.x34{left:211.429500px;}
.x4a{left:212.704500px;}
.x63{left:224.040000px;}
.x4b{left:225.432000px;}
.x3b{left:228.067500px;}
.x45{left:232.098000px;}
.x3c{left:242.515500px;}
.x18{left:243.661500px;}
.x64{left:248.578500px;}
.x46{left:250.264500px;}
.x19{left:255.480000px;}
.x1{left:263.170500px;}
.x1a{left:297.844500px;}
.x2b{left:310.506000px;}
.x21{left:317.434500px;}
.x38{left:320.695500px;}
.x1b{left:323.814000px;}
.x3d{left:334.258500px;}
.x39{left:335.569500px;}
.x35{left:337.824000px;}
.xc{left:346.014000px;}
.x36{left:347.395500px;}
.x47{left:357.568500px;}
.x2c{left:360.838500px;}
.x2d{left:367.099500px;}
.x2{left:372.451500px;}
.x3{left:375.274500px;}
.x2e{left:376.671000px;}
.x4{left:387.661500px;}
.x16{left:395.433000px;}
.x50{left:400.954500px;}
.x17{left:409.362000px;}
.x51{left:410.526000px;}
.xd{left:412.621500px;}
.x5{left:413.812500px;}
.x25{left:425.896500px;}
.x15{left:442.366500px;}
.x42{left:447.304500px;}
.x3e{left:448.795500px;}
.x52{left:449.979000px;}
.x1c{left:458.268000px;}
.x3f{left:462.177000px;}
.x55{left:463.839000px;}
.x1d{left:472.566000px;}
.x53{left:474.517500px;}
.x4e{left:478.515000px;}
.x43{left:481.623000px;}
.x56{left:482.625000px;}
.x54{left:488.385000px;}
.x13{left:491.811000px;}
.x40{left:492.916500px;}
.x44{left:494.350500px;}
.x4c{left:498.549000px;}
.x1e{left:505.278000px;}
.x14{left:509.982000px;}
.x4d{left:512.908500px;}
.x41{left:518.644500px;}
.x4f{left:525.174000px;}
.x1f{left:531.922500px;}
.x59{left:548.031000px;}
.x11{left:563.616000px;}
.x2f{left:566.541000px;}
.x12{left:581.257500px;}
.x5a{left:584.605500px;}
.x37{left:585.888000px;}
.x57{left:592.242000px;}
.x48{left:597.942000px;}
.x61{left:610.684500px;}
.x8{left:611.913000px;}
.x5e{left:613.132500px;}
.x49{left:616.108500px;}
.x9{left:619.654500px;}
.x30{left:621.123000px;}
.x5f{left:622.138500px;}
.x31{left:627.385500px;}
.x32{left:636.955500px;}
.x62{left:652.242000px;}
.x58{left:668.004000px;}
.x23{left:674.125500px;}
.x24{left:689.149500px;}
.x26{left:718.738500px;}
.xa{left:730.266000px;}
.xb{left:741.889500px;}
.x22{left:771.835500px;}
.x5d{left:775.342500px;}
.x3a{left:776.436000px;}
.x27{left:780.337500px;}
@media print{
.v1{vertical-align:-9.002667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:3.374548pt;}
.ls11{letter-spacing:4.538186pt;}
.ls16{letter-spacing:4.596367pt;}
.ls21{letter-spacing:9.716372pt;}
.ls2{letter-spacing:11.901986pt;}
.ls12{letter-spacing:12.438266pt;}
.lsd{letter-spacing:12.916374pt;}
.ls1e{letter-spacing:13.032738pt;}
.ls18{letter-spacing:14.545467pt;}
.ls4{letter-spacing:14.718081pt;}
.ls5{letter-spacing:14.771215pt;}
.ls15{letter-spacing:16.116377pt;}
.lsc{letter-spacing:16.174559pt;}
.ls22{letter-spacing:16.232741pt;}
.ls0{letter-spacing:17.534176pt;}
.ls6{letter-spacing:17.687287pt;}
.ls3{letter-spacing:17.746711pt;}
.lse{letter-spacing:17.861833pt;}
.ls1{letter-spacing:17.959247pt;}
.lsa{letter-spacing:18.210924pt;}
.ls24{letter-spacing:18.850925pt;}
.ls9{letter-spacing:19.141834pt;}
.ls8{letter-spacing:19.258198pt;}
.ls13{letter-spacing:19.374562pt;}
.ls17{letter-spacing:19.432743pt;}
.lsb{letter-spacing:19.490925pt;}
.ls1b{letter-spacing:19.549107pt;}
.ls26{letter-spacing:19.723653pt;}
.ls27{letter-spacing:19.781835pt;}
.ls25{letter-spacing:20.130926pt;}
.ls1c{letter-spacing:20.712745pt;}
.ls14{letter-spacing:20.770926pt;}
.ls23{letter-spacing:21.178199pt;}
.ls19{letter-spacing:22.865474pt;}
.ls1a{letter-spacing:23.970929pt;}
.ls20{letter-spacing:25.076385pt;}
.ls7{letter-spacing:25.716385pt;}
.ls1f{letter-spacing:28.916388pt;}
.ls10{letter-spacing:29.090933pt;}
.ws3d{word-spacing:-47.616040pt;}
.ws38{word-spacing:-42.065490pt;}
.ws21{word-spacing:-42.007308pt;}
.ws39{word-spacing:-37.899668pt;}
.ws2e{word-spacing:-29.736752pt;}
.ws3e{word-spacing:-28.183296pt;}
.ws31{word-spacing:-19.374562pt;}
.ws52{word-spacing:-14.894558pt;}
.ws54{word-spacing:-13.730921pt;}
.ws26{word-spacing:-12.800011pt;}
.ws29{word-spacing:-12.334556pt;}
.ws34{word-spacing:-11.520010pt;}
.ws11{word-spacing:-11.403646pt;}
.ws42{word-spacing:-11.345464pt;}
.ws23{word-spacing:-11.287282pt;}
.ws4c{word-spacing:-11.170918pt;}
.ws1e{word-spacing:-10.880009pt;}
.wse{word-spacing:-10.530918pt;}
.ws2c{word-spacing:-10.414554pt;}
.ws4f{word-spacing:-10.298190pt;}
.ws4e{word-spacing:-10.240009pt;}
.ws35{word-spacing:-10.123645pt;}
.ws10{word-spacing:-10.065463pt;}
.ws1a{word-spacing:-10.007281pt;}
.ws45{word-spacing:-9.949099pt;}
.ws17{word-spacing:-9.890917pt;}
.ws16{word-spacing:-9.832735pt;}
.ws4d{word-spacing:-9.780372pt;}
.ws19{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws15{word-spacing:-9.658190pt;}
.ws27{word-spacing:-9.600008pt;}
.ws20{word-spacing:-9.541826pt;}
.ws36{word-spacing:-9.483644pt;}
.ws1f{word-spacing:-9.431281pt;}
.ws48{word-spacing:-9.425462pt;}
.ws30{word-spacing:-9.367281pt;}
.ws40{word-spacing:-9.250917pt;}
.ws41{word-spacing:-9.198553pt;}
.ws6{word-spacing:-9.139025pt;}
.ws7{word-spacing:-9.085891pt;}
.ws1b{word-spacing:-9.082189pt;}
.ws4{word-spacing:-9.032757pt;}
.ws46{word-spacing:-9.024008pt;}
.wsa{word-spacing:-8.979623pt;}
.ws8{word-spacing:-8.926490pt;}
.ws28{word-spacing:-8.907644pt;}
.wsc{word-spacing:-8.873356pt;}
.ws18{word-spacing:-8.849462pt;}
.ws2d{word-spacing:-8.843644pt;}
.ws9{word-spacing:-8.820222pt;}
.ws2f{word-spacing:-8.785462pt;}
.ws37{word-spacing:-8.733098pt;}
.ws5{word-spacing:-8.607686pt;}
.ws3f{word-spacing:-8.558553pt;}
.wsb{word-spacing:-8.501419pt;}
.ws47{word-spacing:-8.500371pt;}
.ws33{word-spacing:-8.261825pt;}
.ws53{word-spacing:-8.145461pt;}
.ws49{word-spacing:-7.976734pt;}
.ws51{word-spacing:-7.970916pt;}
.ws2b{word-spacing:-7.447279pt;}
.ws50{word-spacing:-7.278552pt;}
.wsf{word-spacing:-7.045824pt;}
.ws32{word-spacing:-6.987642pt;}
.ws4b{word-spacing:-6.690915pt;}
.ws1d{word-spacing:-5.882187pt;}
.ws4a{word-spacing:-5.818187pt;}
.ws3a{word-spacing:-5.701823pt;}
.ws44{word-spacing:-5.649459pt;}
.ws3{word-spacing:-5.100851pt;}
.ws3b{word-spacing:-4.887277pt;}
.ws3c{word-spacing:-4.602186pt;}
.ws1c{word-spacing:-4.247276pt;}
.ws43{word-spacing:-4.072731pt;}
.ws14{word-spacing:-3.374548pt;}
.ws13{word-spacing:-3.316366pt;}
.ws2a{word-spacing:-0.058182pt;}
.ws24{word-spacing:0.000000pt;}
.ws22{word-spacing:12.858193pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws25{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.wsd{word-spacing:28.615887pt;}
._15{margin-left:-9.658190pt;}
._9{margin-left:-7.435297pt;}
._11{margin-left:-6.503629pt;}
._e{margin-left:-5.494107pt;}
._6{margin-left:-4.074722pt;}
._0{margin-left:-2.479018pt;}
._1{margin-left:-0.964080pt;}
._4{width:1.434614pt;}
._2{width:2.479018pt;}
._c{width:5.329929pt;}
._17{width:16.044957pt;}
._5{width:18.344836pt;}
._10{width:19.374562pt;}
._b{width:20.340851pt;}
._d{width:22.400019pt;}
._3{width:23.432035pt;}
._a{width:24.879036pt;}
._8{width:26.586243pt;}
._13{width:29.219874pt;}
._14{width:31.541266pt;}
._12{width:33.512755pt;}
._f{width:37.014035pt;}
._16{width:37.998047pt;}
._7{width:86.077200pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.y29{bottom:96.000000pt;}
.y55{bottom:96.954667pt;}
.y28{bottom:114.065333pt;}
.y54{bottom:126.976000pt;}
.y27{bottom:132.130667pt;}
.y26{bottom:150.197333pt;}
.y53{bottom:156.996000pt;}
.y7b{bottom:160.145333pt;}
.y52{bottom:175.061333pt;}
.y25{bottom:178.198667pt;}
.y7a{bottom:178.210667pt;}
.y24{bottom:196.265333pt;}
.y51{bottom:202.521333pt;}
.y79{bottom:207.428000pt;}
.y23{bottom:214.330667pt;}
.y78{bottom:225.494667pt;}
.y50{bottom:241.472000pt;}
.y22{bottom:243.544000pt;}
.y77{bottom:243.560000pt;}
.y4f{bottom:259.537333pt;}
.y21{bottom:261.609333pt;}
.y76{bottom:271.573333pt;}
.y4e{bottom:277.602667pt;}
.y20{bottom:279.674667pt;}
.y75{bottom:289.638667pt;}
.y4d{bottom:295.668000pt;}
.y74{bottom:307.704000pt;}
.y1f{bottom:308.888000pt;}
.y4c{bottom:313.733333pt;}
.y73{bottom:325.770667pt;}
.y1e{bottom:326.954667pt;}
.y4b{bottom:331.800000pt;}
.y72{bottom:343.836000pt;}
.y1d{bottom:345.020000pt;}
.y4a{bottom:349.865333pt;}
.y49{bottom:367.930667pt;}
.y71{bottom:371.294667pt;}
.y1c{bottom:373.022667pt;}
.y48{bottom:385.996000pt;}
.y1b{bottom:391.088000pt;}
.y47{bottom:404.061333pt;}
.y1a{bottom:409.153333pt;}
.y70{bottom:409.866667pt;}
.y19{bottom:427.218667pt;}
.y6f{bottom:427.932000pt;}
.y46{bottom:434.082667pt;}
.y18{bottom:445.284000pt;}
.y6e{bottom:445.998667pt;}
.y17{bottom:463.350667pt;}
.y6d{bottom:464.064000pt;}
.y45{bottom:464.104000pt;}
.y16{bottom:481.416000pt;}
.y6c{bottom:482.129333pt;}
.y44{bottom:482.169333pt;}
.y15{bottom:499.481333pt;}
.y6b{bottom:510.142667pt;}
.y43{bottom:512.189333pt;}
.y14{bottom:517.546667pt;}
.y93{bottom:521.762667pt;}
.y6a{bottom:528.208000pt;}
.y42{bottom:530.254667pt;}
.y13{bottom:535.612000pt;}
.y69{bottom:546.274667pt;}
.y41{bottom:548.321333pt;}
.y92{bottom:554.232000pt;}
.y40{bottom:566.386667pt;}
.y12{bottom:568.081333pt;}
.y68{bottom:575.492000pt;}
.y3f{bottom:584.452000pt;}
.y67{bottom:593.557333pt;}
.y91{bottom:600.061333pt;}
.y3e{bottom:602.517333pt;}
.y66{bottom:611.624000pt;}
.y11{bottom:613.530667pt;}
.y90{bottom:618.126667pt;}
.y3d{bottom:620.582667pt;}
.y10{bottom:629.470667pt;}
.y8f{bottom:636.192000pt;}
.y3c{bottom:638.649333pt;}
.y65{bottom:639.637333pt;}
.yf{bottom:645.410667pt;}
.y8e{bottom:654.257333pt;}
.y3b{bottom:656.714667pt;}
.y64{bottom:657.702667pt;}
.ye{bottom:661.350667pt;}
.y8d{bottom:672.322667pt;}
.yd{bottom:677.292000pt;}
.y63{bottom:685.716000pt;}
.y3a{bottom:686.734667pt;}
.y8c{bottom:690.389333pt;}
.yc{bottom:693.232000pt;}
.y62{bottom:703.782667pt;}
.y8b{bottom:708.454667pt;}
.yb{bottom:709.172000pt;}
.y39{bottom:716.756000pt;}
.y61{bottom:721.848000pt;}
.ya{bottom:725.112000pt;}
.y8a{bottom:726.520000pt;}
.y9{bottom:741.052000pt;}
.y89{bottom:744.585333pt;}
.y38{bottom:746.777333pt;}
.y60{bottom:751.065333pt;}
.y8{bottom:756.992000pt;}
.y88{bottom:762.650667pt;}
.y37{bottom:764.842667pt;}
.y5f{bottom:769.130667pt;}
.y7{bottom:772.933333pt;}
.y87{bottom:780.717333pt;}
.y36{bottom:782.908000pt;}
.y5e{bottom:787.197333pt;}
.y6{bottom:788.873333pt;}
.y86{bottom:798.782667pt;}
.y35{bottom:800.973333pt;}
.y5{bottom:810.693333pt;}
.y5d{bottom:816.414667pt;}
.y85{bottom:816.848000pt;}
.y34{bottom:819.038667pt;}
.y5c{bottom:834.480000pt;}
.y84{bottom:834.913333pt;}
.y33{bottom:837.105333pt;}
.y83{bottom:852.978667pt;}
.y32{bottom:855.170667pt;}
.y4{bottom:861.970667pt;}
.y5b{bottom:862.494667pt;}
.y82{bottom:871.045333pt;}
.y31{bottom:873.236000pt;}
.y81{bottom:889.110667pt;}
.y5a{bottom:890.508000pt;}
.y30{bottom:891.301333pt;}
.y3{bottom:894.581333pt;}
.y80{bottom:907.176000pt;}
.y59{bottom:908.573333pt;}
.y2f{bottom:918.761333pt;}
.y7f{bottom:925.241333pt;}
.y58{bottom:926.638667pt;}
.y2{bottom:934.996000pt;}
.y7e{bottom:943.306667pt;}
.y57{bottom:944.705333pt;}
.y1{bottom:953.593333pt;}
.y2e{bottom:957.710667pt;}
.y7d{bottom:961.373333pt;}
.y56{bottom:962.770667pt;}
.y2d{bottom:975.776000pt;}
.y7c{bottom:979.438667pt;}
.y2c{bottom:993.842667pt;}
.y2b{bottom:1011.908000pt;}
.h6{height:36.290431pt;}
.h7{height:36.502966pt;}
.h4{height:37.193707pt;}
.hc{height:39.738215pt;}
.h5{height:39.850400pt;}
.hd{height:39.854579pt;}
.ha{height:39.970942pt;}
.he{height:41.018216pt;}
.h9{height:43.636400pt;}
.hb{height:44.632747pt;}
.h3{height:45.525402pt;}
.h8{height:53.559147pt;}
.h2{height:64.179011pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:95.048000pt;}
.xe{left:96.000000pt;}
.x10{left:113.777333pt;}
.xf{left:118.581333pt;}
.x33{left:122.744000pt;}
.x20{left:130.661333pt;}
.x7{left:132.364000pt;}
.x29{left:135.546667pt;}
.x2a{left:149.266667pt;}
.x60{left:150.336000pt;}
.x6{left:152.289333pt;}
.x5b{left:155.846667pt;}
.x5c{left:169.345333pt;}
.x34{left:187.937333pt;}
.x4a{left:189.070667pt;}
.x63{left:199.146667pt;}
.x4b{left:200.384000pt;}
.x3b{left:202.726667pt;}
.x45{left:206.309333pt;}
.x3c{left:215.569333pt;}
.x18{left:216.588000pt;}
.x64{left:220.958667pt;}
.x46{left:222.457333pt;}
.x19{left:227.093333pt;}
.x1{left:233.929333pt;}
.x1a{left:264.750667pt;}
.x2b{left:276.005333pt;}
.x21{left:282.164000pt;}
.x38{left:285.062667pt;}
.x1b{left:287.834667pt;}
.x3d{left:297.118667pt;}
.x39{left:298.284000pt;}
.x35{left:300.288000pt;}
.xc{left:307.568000pt;}
.x36{left:308.796000pt;}
.x47{left:317.838667pt;}
.x2c{left:320.745333pt;}
.x2d{left:326.310667pt;}
.x2{left:331.068000pt;}
.x3{left:333.577333pt;}
.x2e{left:334.818667pt;}
.x4{left:344.588000pt;}
.x16{left:351.496000pt;}
.x50{left:356.404000pt;}
.x17{left:363.877333pt;}
.x51{left:364.912000pt;}
.xd{left:366.774667pt;}
.x5{left:367.833333pt;}
.x25{left:378.574667pt;}
.x15{left:393.214667pt;}
.x42{left:397.604000pt;}
.x3e{left:398.929333pt;}
.x52{left:399.981333pt;}
.x1c{left:407.349333pt;}
.x3f{left:410.824000pt;}
.x55{left:412.301333pt;}
.x1d{left:420.058667pt;}
.x53{left:421.793333pt;}
.x4e{left:425.346667pt;}
.x43{left:428.109333pt;}
.x56{left:429.000000pt;}
.x54{left:434.120000pt;}
.x13{left:437.165333pt;}
.x40{left:438.148000pt;}
.x44{left:439.422667pt;}
.x4c{left:443.154667pt;}
.x1e{left:449.136000pt;}
.x14{left:453.317333pt;}
.x4d{left:455.918667pt;}
.x41{left:461.017333pt;}
.x4f{left:466.821333pt;}
.x1f{left:472.820000pt;}
.x59{left:487.138667pt;}
.x11{left:500.992000pt;}
.x2f{left:503.592000pt;}
.x12{left:516.673333pt;}
.x5a{left:519.649333pt;}
.x37{left:520.789333pt;}
.x57{left:526.437333pt;}
.x48{left:531.504000pt;}
.x61{left:542.830667pt;}
.x8{left:543.922667pt;}
.x5e{left:545.006667pt;}
.x49{left:547.652000pt;}
.x9{left:550.804000pt;}
.x30{left:552.109333pt;}
.x5f{left:553.012000pt;}
.x31{left:557.676000pt;}
.x32{left:566.182667pt;}
.x62{left:579.770667pt;}
.x58{left:593.781333pt;}
.x23{left:599.222667pt;}
.x24{left:612.577333pt;}
.x26{left:638.878667pt;}
.xa{left:649.125333pt;}
.xb{left:659.457333pt;}
.x22{left:686.076000pt;}
.x5d{left:689.193333pt;}
.x3a{left:690.165333pt;}
.x27{left:693.633333pt;}
}




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