
    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_8b3e7d6c84c47a7bf5683171.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_d749727af71218f33b5d353c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2f70352344bf15ac90f12044.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e8f6724bcc0c000fd29136d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_44f2b4d527229636c989f91e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4c6f38e9ee0dd4d23fdcc393.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.410000;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_3dc3097c45315ff45abd0068.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e61b3d103069c184ca8d7595.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_c0f23681aae7c843eec1fff1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674000;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_5ec1da382008fb8be4bf2080.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.674000;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_7e0cbbf54d1184cdf3c6c41e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.502000;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_e5a223280792ef0db242bc71.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.641000;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_e8d5d11eb7003acd24286b36.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.010254;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_3b465a54731b676bfda30cc1.woff2')format("woff");}.fff{font-family:fff;line-height:1.010254;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;}
.m3{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);}
.m1b{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);}
.m1c{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);}
.ma{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);}
.m13{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);}
.mf{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);}
.m2{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);}
.m4{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);}
.m1f{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);}
.m18{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);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1e{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);}
.m1d{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);}
.m15{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);}
.m9{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);}
.m1a{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);}
.m11{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);}
.mc{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.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);}
.m19{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);}
.m20{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);}
.m10{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);}
.m16{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);}
.m17{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);}
.m7{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);}
.me{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.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);}
.m5{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);}
.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);}
.m21{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;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000691px;}
.ls6{letter-spacing:0.001068px;}
.ls7{letter-spacing:2.616764px;}
.ls2{letter-spacing:3.636531px;}
.ls1{letter-spacing:4.358215px;}
.ls8{letter-spacing:4.711662px;}
.ls5{letter-spacing:10.178214px;}
.ls3{letter-spacing:13.343985px;}
.ls4{letter-spacing:13.904508px;}
.ls9{letter-spacing:14.237104px;}
.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;}
}
.ws1{word-spacing:-81.947475px;}
.ws5c{word-spacing:-65.992704px;}
.ws5f{word-spacing:-60.182477px;}
.ws2{word-spacing:-49.924915px;}
.ws3{word-spacing:-47.414323px;}
.ws0{word-spacing:-39.511672px;}
.ws5d{word-spacing:-37.359750px;}
.ws5e{word-spacing:-35.805584px;}
.ws9{word-spacing:-0.069804px;}
.ws11{word-spacing:-0.063696px;}
.ws8{word-spacing:-0.058169px;}
.wsb{word-spacing:-0.052353px;}
.ws56{word-spacing:-0.040718px;}
.ws4{word-spacing:0.000000px;}
.ws28{word-spacing:8.754474px;}
.ws3a{word-spacing:8.795277px;}
.ws27{word-spacing:9.080222px;}
.ws19{word-spacing:9.161746px;}
.ws55{word-spacing:9.487407px;}
.ws36{word-spacing:9.685275px;}
.ws3c{word-spacing:9.731210px;}
.ws4f{word-spacing:9.935310px;}
.ws5a{word-spacing:10.016747px;}
.ws5b{word-spacing:10.057466px;}
.ws50{word-spacing:10.098184px;}
.ws25{word-spacing:10.138903px;}
.ws39{word-spacing:10.156450px;}
.ws57{word-spacing:10.179621px;}
.ws59{word-spacing:10.261058px;}
.ws26{word-spacing:10.301776px;}
.ws37{word-spacing:10.365862px;}
.ws54{word-spacing:10.383213px;}
.ws18{word-spacing:10.732332px;}
.ws41{word-spacing:10.837037px;}
.ws2b{word-spacing:10.994096px;}
.ws29{word-spacing:11.098801px;}
.ws3d{word-spacing:11.308213px;}
.ws16{word-spacing:11.354701px;}
.ws30{word-spacing:11.517624px;}
.ws13{word-spacing:11.587379px;}
.ws43{word-spacing:11.622330px;}
.ws2c{word-spacing:11.884094px;}
.ws58{word-spacing:12.011953px;}
.ws42{word-spacing:12.302917px;}
.ws2e{word-spacing:12.459975px;}
.ws52{word-spacing:12.500575px;}
.ws33{word-spacing:12.564681px;}
.ws2a{word-spacing:12.721739px;}
.ws31{word-spacing:12.774092px;}
.ws1d{word-spacing:12.826445px;}
.ws1f{word-spacing:12.878798px;}
.ws21{word-spacing:12.931151px;}
.ws1e{word-spacing:12.983504px;}
.ws51{word-spacing:12.989196px;}
.ws20{word-spacing:13.035856px;}
.ws1a{word-spacing:13.088209px;}
.ws12{word-spacing:13.140562px;}
.ws53{word-spacing:13.152070px;}
.ws45{word-spacing:13.192915px;}
.ws2f{word-spacing:13.245268px;}
.wsc{word-spacing:13.290371px;}
.wsd{word-spacing:13.297621px;}
.ws24{word-spacing:13.349973px;}
.ws4e{word-spacing:13.402326px;}
.ws48{word-spacing:13.467926px;}
.wse{word-spacing:13.559385px;}
.ws23{word-spacing:13.768796px;}
.wsf{word-spacing:13.821149px;}
.ws10{word-spacing:13.873502px;}
.ws3e{word-spacing:14.135266px;}
.ws44{word-spacing:14.187619px;}
.ws35{word-spacing:14.292324px;}
.ws7{word-spacing:14.484188px;}
.ws4c{word-spacing:14.658794px;}
.ws15{word-spacing:14.798340px;}
.ws40{word-spacing:14.815853px;}
.ws34{word-spacing:14.920559px;}
.ws32{word-spacing:14.972911px;}
.ws49{word-spacing:15.025264px;}
.ws1b{word-spacing:15.548793px;}
.ws1c{word-spacing:15.601145px;}
.ws4d{word-spacing:15.758204px;}
.wsa{word-spacing:15.860263px;}
.ws3b{word-spacing:15.862910px;}
.ws38{word-spacing:16.229379px;}
.ws14{word-spacing:16.706302px;}
.ws22{word-spacing:17.014672px;}
.ws4b{word-spacing:17.276436px;}
.ws6{word-spacing:17.381142px;}
.ws3f{word-spacing:17.485848px;}
.ws4a{word-spacing:17.590553px;}
.ws2d{word-spacing:17.852317px;}
.ws47{word-spacing:18.009376px;}
.ws46{word-spacing:19.370550px;}
.ws5{word-spacing:25.028716px;}
.ws17{word-spacing:63.632139px;}
._3{margin-left:-6.312346px;}
._4{margin-left:-4.020677px;}
._0{margin-left:-2.479500px;}
._2{margin-left:-1.434624px;}
._6{width:1.186664px;}
._9{width:2.356746px;}
._5{width:3.630574px;}
._d{width:5.697396px;}
._11{width:8.114906px;}
._c{width:11.156865px;}
._8{width:13.309199px;}
._b{width:14.420365px;}
._7{width:16.101339px;}
._1{width:17.143757px;}
._12{width:19.213491px;}
._13{width:20.627018px;}
._f{width:21.778780px;}
._a{width:23.297012px;}
._14{width:25.958323px;}
._10{width:27.589945px;}
._e{width:1287.932143px;}
.fc1{color:transparent;}
.fc2{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.718484px;}
.fs8{font-size:46.535660px;}
.fs7{font-size:52.352837px;}
.fs5{font-size:58.169430px;}
.fs0{font-size:59.775600px;}
.fs6{font-size:63.695835px;}
.fs4{font-size:69.803783px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:100.516933px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y7{bottom:53.380500px;}
.y3c{bottom:123.609892px;}
.ya5{bottom:126.532201px;}
.y3b{bottom:135.245121px;}
.ya4{bottom:138.165971px;}
.y63{bottom:139.606689px;}
.y3a{bottom:148.042267px;}
.ya3{bottom:149.799740px;}
.y62{bottom:155.603487px;}
.y39{bottom:160.839413px;}
.ya2{bottom:161.433509px;}
.y61{bottom:171.600285px;}
.y38{bottom:172.473182px;}
.ya1{bottom:173.068738px;}
.y84{bottom:175.599849px;}
.y37{bottom:184.106951px;}
.ya0{bottom:184.702507px;}
.y60{bottom:191.596646px;}
.y36{bottom:195.740720px;}
.y9f{bottom:196.336276px;}
.y83{bottom:207.086930px;}
.y35{bottom:207.374490px;}
.y9e{bottom:207.970045px;}
.y9d{bottom:219.603814px;}
.y82{bottom:223.083727px;}
.y9c{bottom:231.237583px;}
.y34{bottom:234.119021px;}
.y5f{bottom:237.000459px;}
.y81{bottom:239.080525px;}
.y9b{bottom:242.871353px;}
.y33{bottom:250.115819px;}
.y5e{bottom:252.997257px;}
.y9a{bottom:254.505122px;}
.y80{bottom:255.077322px;}
.y32{bottom:266.111157px;}
.y99{bottom:266.138891px;}
.y5d{bottom:268.994054px;}
.y7f{bottom:271.072660px;}
.y98{bottom:277.774120px;}
.y31{bottom:282.107954px;}
.y5c{bottom:284.990852px;}
.y7e{bottom:287.069457px;}
.y97{bottom:289.407889px;}
.y30{bottom:298.104752px;}
.y5b{bottom:300.987649px;}
.y7d{bottom:303.066255px;}
.y96{bottom:304.676299px;}
.y2f{bottom:314.101549px;}
.y5a{bottom:316.984447px;}
.y7c{bottom:319.063052px;}
.y2e{bottom:330.098347px;}
.y59{bottom:332.981244px;}
.y95{bottom:334.489109px;}
.y7b{bottom:335.059850px;}
.y2d{bottom:346.095144px;}
.y58{bottom:348.978042px;}
.y94{bottom:350.485907px;}
.y7a{bottom:351.056647px;}
.y2c{bottom:362.091942px;}
.y57{bottom:364.974839px;}
.y93{bottom:366.482704px;}
.y79{bottom:367.053445px;}
.y2b{bottom:378.088739px;}
.y56{bottom:380.971637px;}
.y78{bottom:383.050243px;}
.y92{bottom:386.477606px;}
.y2a{bottom:394.085537px;}
.y55{bottom:396.966975px;}
.y77{bottom:399.047040px;}
.y29{bottom:410.082334px;}
.y54{bottom:412.963772px;}
.y76{bottom:415.043838px;}
.y91{bottom:417.380809px;}
.y28{bottom:426.079132px;}
.y53{bottom:428.960570px;}
.y75{bottom:431.039175px;}
.y90{bottom:433.377607px;}
.y27{bottom:442.074470px;}
.y52{bottom:444.957367px;}
.y74{bottom:447.035973px;}
.y8f{bottom:449.374404px;}
.y26{bottom:458.071267px;}
.y51{bottom:460.954165px;}
.y73{bottom:463.032770px;}
.y8e{bottom:465.371202px;}
.y25{bottom:474.068065px;}
.y50{bottom:476.950962px;}
.y72{bottom:479.029568px;}
.y8d{bottom:481.366540px;}
.yc1{bottom:484.519500px;}
.y24{bottom:490.064862px;}
.y4f{bottom:492.947760px;}
.y71{bottom:495.026365px;}
.y8c{bottom:497.363337px;}
.y23{bottom:506.061660px;}
.y4e{bottom:508.944557px;}
.y70{bottom:511.023163px;}
.y8b{bottom:513.360135px;}
.yc0{bottom:520.384500px;}
.y22{bottom:522.058457px;}
.y4d{bottom:524.941355px;}
.y6f{bottom:527.019960px;}
.y8a{bottom:529.356932px;}
.ybf{bottom:538.318500px;}
.y4c{bottom:540.938152px;}
.y21{bottom:542.054819px;}
.y6e{bottom:543.016758px;}
.y89{bottom:545.353730px;}
.ybe{bottom:556.251000px;}
.y4b{bottom:556.934950px;}
.y6d{bottom:559.013555px;}
.y88{bottom:561.350527px;}
.y4a{bottom:572.930287px;}
.ybd{bottom:574.183500px;}
.y6c{bottom:575.010353px;}
.y87{bottom:577.347325px;}
.y20{bottom:582.662074px;}
.y49{bottom:588.927085px;}
.y6b{bottom:591.007150px;}
.ybc{bottom:592.116000px;}
.y86{bottom:593.344122px;}
.y1f{bottom:597.203556px;}
.y48{bottom:604.923883px;}
.y6a{bottom:607.002488px;}
.ybb{bottom:610.048500px;}
.y1e{bottom:611.746497px;}
.y47{bottom:620.920680px;}
.y1d{bottom:626.289438px;}
.yba{bottom:627.981000px;}
.y85{bottom:634.498763px;}
.y46{bottom:636.917478px;}
.y1b{bottom:640.830920px;}
.y1c{bottom:640.924340px;}
.yb9{bottom:645.915000px;}
.y69{bottom:650.495560px;}
.y45{bottom:652.914275px;}
.y1a{bottom:655.373861px;}
.y68{bottom:666.492358px;}
.y44{bottom:668.911073px;}
.y19{bottom:677.151051px;}
.yb8{bottom:681.780000px;}
.y67{bottom:682.489155px;}
.y43{bottom:684.907870px;}
.y18{bottom:693.146389px;}
.y66{bottom:698.485953px;}
.y42{bottom:700.904668px;}
.y17{bottom:713.142750px;}
.y65{bottom:714.482750px;}
.y41{bottom:716.901465px;}
.y40{bottom:732.896803px;}
.yb7{bottom:735.577500px;}
.y16{bottom:744.895496px;}
.y3f{bottom:748.893600px;}
.yb6{bottom:753.511500px;}
.y15{bottom:760.892293px;}
.y3e{bottom:764.890398px;}
.yb5{bottom:771.444000px;}
.y14{bottom:776.887631px;}
.y3d{bottom:780.887195px;}
.yb4{bottom:789.376500px;}
.y13{bottom:796.883993px;}
.yb3{bottom:807.309000px;}
.yb2{bottom:825.241500px;}
.y12{bottom:825.853100px;}
.yb1{bottom:843.175500px;}
.y11{bottom:843.303754px;}
.yb0{bottom:861.108000px;}
.y10{bottom:876.224255px;}
.y6{bottom:876.771000px;}
.yaf{bottom:879.040500px;}
.yf{bottom:893.674909px;}
.yae{bottom:896.973000px;}
.y5{bottom:897.693000px;}
.yc{bottom:926.596870px;}
.yad{bottom:932.838000px;}
.ye{bottom:941.138351px;}
.yb{bottom:944.047523px;}
.yd{bottom:958.590465px;}
.ya{bottom:961.498177px;}
.yac{bottom:968.704500px;}
.y4{bottom:973.327500px;}
.y9{bottom:978.948831px;}
.yab{bottom:986.637000px;}
.y3{bottom:1010.686500px;}
.y8{bottom:1017.747524px;}
.yaa{bottom:1022.502000px;}
.ya9{bottom:1040.434500px;}
.ya8{bottom:1058.368500px;}
.y64{bottom:1060.534104px;}
.ya7{bottom:1076.301000px;}
.y2{bottom:1098.486000px;}
.ya6{bottom:1112.166000px;}
.y1{bottom:1116.418500px;}
.h12{height:26.595241px;}
.h10{height:28.828687px;}
.hf{height:32.947248px;}
.he{height:33.505676px;}
.h11{height:36.908750px;}
.hd{height:37.065809px;}
.hc{height:37.694043px;}
.h8{height:41.183956px;}
.ha{height:41.651059px;}
.hb{height:45.861001px;}
.h2{height:46.028379px;}
.h7{height:49.421078px;}
.h9{height:49.981601px;}
.h4{height:55.234425px;}
.h13{height:56.786820px;}
.h6{height:70.160819px;}
.h3{height:95.463171px;}
.h5{height:1156.078440px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:78.320172px;}
.x1b{left:92.863113px;}
.x1{left:115.143000px;}
.x4{left:119.922939px;}
.x3{left:128.384791px;}
.x5{left:145.736185px;}
.x23{left:157.223985px;}
.xf{left:158.493919px;}
.x2{left:167.711893px;}
.x16{left:198.714356px;}
.x21{left:269.163615px;}
.x22{left:281.054291px;}
.x17{left:331.632723px;}
.x18{left:337.719651px;}
.x19{left:344.637145px;}
.x1a{left:350.722614px;}
.x11{left:358.803485px;}
.x13{left:394.106209px;}
.x15{left:396.847516px;}
.xa{left:402.111176px;}
.x10{left:408.964444px;}
.x6{left:411.175882px;}
.x7{left:416.794248px;}
.x8{left:421.344118px;}
.x1c{left:423.333682px;}
.x9{left:453.540610px;}
.x1d{left:463.908824px;}
.x24{left:468.642615px;}
.x20{left:478.451765px;}
.x25{left:487.895992px;}
.xb{left:576.975339px;}
.x12{left:599.536385px;}
.xd{left:660.951592px;}
.xc{left:672.553248px;}
.xe{left:693.148085px;}
.x1e{left:737.531571px;}
.x1f{left:743.617039px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000614pt;}
.ls6{letter-spacing:0.000950pt;}
.ls7{letter-spacing:2.326012pt;}
.ls2{letter-spacing:3.232472pt;}
.ls1{letter-spacing:3.873969pt;}
.ls8{letter-spacing:4.188144pt;}
.ls5{letter-spacing:9.047301pt;}
.ls3{letter-spacing:11.861320pt;}
.ls4{letter-spacing:12.359563pt;}
.ls9{letter-spacing:12.655203pt;}
.ws1{word-spacing:-72.842200pt;}
.ws5c{word-spacing:-58.660181pt;}
.ws5f{word-spacing:-53.495535pt;}
.ws2{word-spacing:-44.377702pt;}
.ws3{word-spacing:-42.146065pt;}
.ws0{word-spacing:-35.121486pt;}
.ws5d{word-spacing:-33.208667pt;}
.ws5e{word-spacing:-31.827186pt;}
.ws9{word-spacing:-0.062048pt;}
.ws11{word-spacing:-0.056619pt;}
.ws8{word-spacing:-0.051706pt;}
.wsb{word-spacing:-0.046536pt;}
.ws56{word-spacing:-0.036194pt;}
.ws4{word-spacing:0.000000pt;}
.ws28{word-spacing:7.781755pt;}
.ws3a{word-spacing:7.818024pt;}
.ws27{word-spacing:8.071308pt;}
.ws19{word-spacing:8.143775pt;}
.ws55{word-spacing:8.433250pt;}
.ws36{word-spacing:8.609133pt;}
.ws3c{word-spacing:8.649964pt;}
.ws4f{word-spacing:8.831387pt;}
.ws5a{word-spacing:8.903775pt;}
.ws5b{word-spacing:8.939969pt;}
.ws50{word-spacing:8.976164pt;}
.ws25{word-spacing:9.012358pt;}
.ws39{word-spacing:9.027956pt;}
.ws57{word-spacing:9.048552pt;}
.ws59{word-spacing:9.120940pt;}
.ws26{word-spacing:9.157135pt;}
.ws37{word-spacing:9.214099pt;}
.ws54{word-spacing:9.229523pt;}
.ws18{word-spacing:9.539850pt;}
.ws41{word-spacing:9.632922pt;}
.ws2b{word-spacing:9.772530pt;}
.ws29{word-spacing:9.865601pt;}
.ws3d{word-spacing:10.051745pt;}
.ws16{word-spacing:10.093068pt;}
.ws30{word-spacing:10.237888pt;}
.ws13{word-spacing:10.299893pt;}
.ws43{word-spacing:10.330960pt;}
.ws2c{word-spacing:10.563639pt;}
.ws58{word-spacing:10.677291pt;}
.ws42{word-spacing:10.935926pt;}
.ws2e{word-spacing:11.075534pt;}
.ws52{word-spacing:11.111622pt;}
.ws33{word-spacing:11.168605pt;}
.ws2a{word-spacing:11.308213pt;}
.ws31{word-spacing:11.354749pt;}
.ws1d{word-spacing:11.401285pt;}
.ws1f{word-spacing:11.447820pt;}
.ws21{word-spacing:11.494356pt;}
.ws1e{word-spacing:11.540892pt;}
.ws51{word-spacing:11.545952pt;}
.ws20{word-spacing:11.587428pt;}
.ws1a{word-spacing:11.633964pt;}
.ws12{word-spacing:11.680500pt;}
.ws53{word-spacing:11.690729pt;}
.ws45{word-spacing:11.727035pt;}
.ws2f{word-spacing:11.773571pt;}
.wsc{word-spacing:11.813663pt;}
.wsd{word-spacing:11.820107pt;}
.ws24{word-spacing:11.866643pt;}
.ws4e{word-spacing:11.913179pt;}
.ws48{word-spacing:11.971490pt;}
.wse{word-spacing:12.052786pt;}
.ws23{word-spacing:12.238930pt;}
.wsf{word-spacing:12.285466pt;}
.ws10{word-spacing:12.332002pt;}
.ws3e{word-spacing:12.564681pt;}
.ws44{word-spacing:12.611217pt;}
.ws35{word-spacing:12.704288pt;}
.ws7{word-spacing:12.874834pt;}
.ws4c{word-spacing:13.030039pt;}
.ws15{word-spacing:13.154080pt;}
.ws40{word-spacing:13.169647pt;}
.ws34{word-spacing:13.262719pt;}
.ws32{word-spacing:13.309255pt;}
.ws49{word-spacing:13.355790pt;}
.ws1b{word-spacing:13.821149pt;}
.ws1c{word-spacing:13.867685pt;}
.ws4d{word-spacing:14.007292pt;}
.wsa{word-spacing:14.098011pt;}
.ws3b{word-spacing:14.100364pt;}
.ws38{word-spacing:14.426115pt;}
.ws14{word-spacing:14.850046pt;}
.ws22{word-spacing:15.124153pt;}
.ws4b{word-spacing:15.356832pt;}
.ws6{word-spacing:15.449904pt;}
.ws3f{word-spacing:15.542976pt;}
.ws4a{word-spacing:15.636047pt;}
.ws2d{word-spacing:15.868727pt;}
.ws47{word-spacing:16.008334pt;}
.ws46{word-spacing:17.218266pt;}
.ws5{word-spacing:22.247748pt;}
.ws17{word-spacing:56.561901pt;}
._3{margin-left:-5.610974pt;}
._4{margin-left:-3.573935pt;}
._0{margin-left:-2.204000pt;}
._2{margin-left:-1.275221pt;}
._6{width:1.054813pt;}
._9{width:2.094885pt;}
._5{width:3.227177pt;}
._d{width:5.064352pt;}
._11{width:7.213250pt;}
._c{width:9.917213pt;}
._8{width:11.830399pt;}
._b{width:12.818103pt;}
._7{width:14.312301pt;}
._1{width:15.238895pt;}
._12{width:17.078659pt;}
._13{width:18.335127pt;}
._f{width:19.358916pt;}
._a{width:20.708456pt;}
._14{width:23.074064pt;}
._10{width:24.524396pt;}
._e{width:1144.828571pt;}
.fs9{font-size:36.194208pt;}
.fs8{font-size:41.365032pt;}
.fs7{font-size:46.535855pt;}
.fs5{font-size:51.706160pt;}
.fs0{font-size:53.133867pt;}
.fs6{font-size:56.618520pt;}
.fs4{font-size:62.047807pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:89.348385pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:47.449333pt;}
.y3c{bottom:109.875460pt;}
.ya5{bottom:112.473068pt;}
.y3b{bottom:120.217885pt;}
.ya4{bottom:122.814196pt;}
.y63{bottom:124.094835pt;}
.y3a{bottom:131.593126pt;}
.ya3{bottom:133.155324pt;}
.y62{bottom:138.314211pt;}
.y39{bottom:142.968367pt;}
.ya2{bottom:143.496452pt;}
.y61{bottom:152.533586pt;}
.y38{bottom:153.309495pt;}
.ya1{bottom:153.838878pt;}
.y84{bottom:156.088754pt;}
.y37{bottom:163.650623pt;}
.ya0{bottom:164.180006pt;}
.y60{bottom:170.308130pt;}
.y36{bottom:173.991751pt;}
.y9f{bottom:174.521134pt;}
.y83{bottom:184.077271pt;}
.y35{bottom:184.332880pt;}
.y9e{bottom:184.862262pt;}
.y9d{bottom:195.203390pt;}
.y82{bottom:198.296646pt;}
.y9c{bottom:205.544519pt;}
.y34{bottom:208.105797pt;}
.y5f{bottom:210.667075pt;}
.y81{bottom:212.516022pt;}
.y9b{bottom:215.885647pt;}
.y33{bottom:222.325172pt;}
.y5e{bottom:224.886450pt;}
.y9a{bottom:226.226775pt;}
.y80{bottom:226.735397pt;}
.y32{bottom:236.543250pt;}
.y99{bottom:236.567903pt;}
.y5d{bottom:239.105826pt;}
.y7f{bottom:240.953476pt;}
.y98{bottom:246.910329pt;}
.y31{bottom:250.762626pt;}
.y5c{bottom:253.325202pt;}
.y7e{bottom:255.172851pt;}
.y97{bottom:257.251457pt;}
.y30{bottom:264.982001pt;}
.y5b{bottom:267.544577pt;}
.y7d{bottom:269.392227pt;}
.y96{bottom:270.823377pt;}
.y2f{bottom:279.201377pt;}
.y5a{bottom:281.763953pt;}
.y7c{bottom:283.611602pt;}
.y2e{bottom:293.420753pt;}
.y59{bottom:295.983328pt;}
.y95{bottom:297.323653pt;}
.y7b{bottom:297.830978pt;}
.y2d{bottom:307.640128pt;}
.y58{bottom:310.202704pt;}
.y94{bottom:311.543028pt;}
.y7a{bottom:312.050353pt;}
.y2c{bottom:321.859504pt;}
.y57{bottom:324.422079pt;}
.y93{bottom:325.762404pt;}
.y79{bottom:326.269729pt;}
.y2b{bottom:336.078879pt;}
.y56{bottom:338.641455pt;}
.y78{bottom:340.489104pt;}
.y92{bottom:343.535650pt;}
.y2a{bottom:350.298255pt;}
.y55{bottom:352.859533pt;}
.y77{bottom:354.708480pt;}
.y29{bottom:364.517630pt;}
.y54{bottom:367.078909pt;}
.y76{bottom:368.927856pt;}
.y91{bottom:371.005164pt;}
.y28{bottom:378.737006pt;}
.y53{bottom:381.298284pt;}
.y75{bottom:383.145934pt;}
.y90{bottom:385.224539pt;}
.y27{bottom:392.955084pt;}
.y52{bottom:395.517660pt;}
.y74{bottom:397.365309pt;}
.y8f{bottom:399.443915pt;}
.y26{bottom:407.174460pt;}
.y51{bottom:409.737035pt;}
.y73{bottom:411.584685pt;}
.y8e{bottom:413.663290pt;}
.y25{bottom:421.393835pt;}
.y50{bottom:423.956411pt;}
.y72{bottom:425.804060pt;}
.y8d{bottom:427.881368pt;}
.yc1{bottom:430.684000pt;}
.y24{bottom:435.613211pt;}
.y4f{bottom:438.175786pt;}
.y71{bottom:440.023436pt;}
.y8c{bottom:442.100744pt;}
.y23{bottom:449.832586pt;}
.y4e{bottom:452.395162pt;}
.y70{bottom:454.242811pt;}
.y8b{bottom:456.320120pt;}
.yc0{bottom:462.564000pt;}
.y22{bottom:464.051962pt;}
.y4d{bottom:466.614537pt;}
.y6f{bottom:468.462187pt;}
.y8a{bottom:470.539495pt;}
.ybf{bottom:478.505333pt;}
.y4c{bottom:480.833913pt;}
.y21{bottom:481.826506pt;}
.y6e{bottom:482.681563pt;}
.y89{bottom:484.758871pt;}
.ybe{bottom:494.445333pt;}
.y4b{bottom:495.053289pt;}
.y6d{bottom:496.900938pt;}
.y88{bottom:498.978246pt;}
.y4a{bottom:509.271367pt;}
.ybd{bottom:510.385333pt;}
.y6c{bottom:511.120314pt;}
.y87{bottom:513.197622pt;}
.y20{bottom:517.921844pt;}
.y49{bottom:523.490742pt;}
.y6b{bottom:525.339689pt;}
.ybc{bottom:526.325333pt;}
.y86{bottom:527.416997pt;}
.y1f{bottom:530.847605pt;}
.y48{bottom:537.710118pt;}
.y6a{bottom:539.557767pt;}
.ybb{bottom:542.265333pt;}
.y1e{bottom:543.774664pt;}
.y47{bottom:551.929493pt;}
.y1d{bottom:556.701723pt;}
.yba{bottom:558.205333pt;}
.y85{bottom:563.998900pt;}
.y46{bottom:566.148869pt;}
.y1b{bottom:569.627484pt;}
.y1c{bottom:569.710525pt;}
.yb9{bottom:574.146667pt;}
.y69{bottom:578.218276pt;}
.y45{bottom:580.368244pt;}
.y1a{bottom:582.554543pt;}
.y68{bottom:592.437651pt;}
.y44{bottom:594.587620pt;}
.y19{bottom:601.912045pt;}
.yb8{bottom:606.026667pt;}
.y67{bottom:606.657027pt;}
.y43{bottom:608.806996pt;}
.y18{bottom:616.130123pt;}
.y66{bottom:620.876403pt;}
.y42{bottom:623.026371pt;}
.y17{bottom:633.904667pt;}
.y65{bottom:635.095778pt;}
.y41{bottom:637.245747pt;}
.y40{bottom:651.463825pt;}
.yb7{bottom:653.846667pt;}
.y16{bottom:662.129330pt;}
.y3f{bottom:665.683200pt;}
.yb6{bottom:669.788000pt;}
.y15{bottom:676.348705pt;}
.y3e{bottom:679.902576pt;}
.yb5{bottom:685.728000pt;}
.y14{bottom:690.566783pt;}
.y3d{bottom:694.121951pt;}
.yb4{bottom:701.668000pt;}
.y13{bottom:708.341327pt;}
.yb3{bottom:717.608000pt;}
.yb2{bottom:733.548000pt;}
.y12{bottom:734.091644pt;}
.yb1{bottom:749.489333pt;}
.y11{bottom:749.603337pt;}
.yb0{bottom:765.429333pt;}
.y10{bottom:778.866004pt;}
.y6{bottom:779.352000pt;}
.yaf{bottom:781.369333pt;}
.yf{bottom:794.377697pt;}
.yae{bottom:797.309333pt;}
.y5{bottom:797.949333pt;}
.yc{bottom:823.641662pt;}
.yad{bottom:829.189333pt;}
.ye{bottom:836.567423pt;}
.yb{bottom:839.153354pt;}
.yd{bottom:852.080413pt;}
.ya{bottom:854.665046pt;}
.yac{bottom:861.070667pt;}
.y4{bottom:865.180000pt;}
.y9{bottom:870.176739pt;}
.yab{bottom:877.010667pt;}
.y3{bottom:898.388000pt;}
.y8{bottom:904.664466pt;}
.yaa{bottom:908.890667pt;}
.ya9{bottom:924.830667pt;}
.ya8{bottom:940.772000pt;}
.y64{bottom:942.696981pt;}
.ya7{bottom:956.712000pt;}
.y2{bottom:976.432000pt;}
.ya6{bottom:988.592000pt;}
.y1{bottom:992.372000pt;}
.h12{height:23.640214pt;}
.h10{height:25.625499pt;}
.hf{height:29.286442pt;}
.he{height:29.782823pt;}
.h11{height:32.807778pt;}
.hd{height:32.947385pt;}
.hc{height:33.505816pt;}
.h8{height:36.607961pt;}
.ha{height:37.023163pt;}
.hb{height:40.765334pt;}
.h2{height:40.914115pt;}
.h7{height:43.929847pt;}
.h9{height:44.428090pt;}
.h4{height:49.097267pt;}
.h13{height:50.477173pt;}
.h6{height:62.365173pt;}
.h3{height:84.856152pt;}
.h5{height:1027.625280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:69.617930pt;}
.x1b{left:82.544989pt;}
.x1{left:102.349333pt;}
.x4{left:106.598168pt;}
.x3{left:114.119814pt;}
.x5{left:129.543276pt;}
.x23{left:139.754653pt;}
.xf{left:140.883484pt;}
.x2{left:149.077239pt;}
.x16{left:176.634983pt;}
.x21{left:239.256547pt;}
.x22{left:249.826036pt;}
.x17{left:294.784642pt;}
.x18{left:300.195245pt;}
.x19{left:306.344129pt;}
.x1a{left:311.753434pt;}
.x11{left:318.936431pt;}
.x13{left:350.316630pt;}
.x15{left:352.753348pt;}
.xa{left:357.432157pt;}
.x10{left:363.523950pt;}
.x6{left:365.489673pt;}
.x7{left:370.483776pt;}
.x8{left:374.528104pt;}
.x1c{left:376.296606pt;}
.x9{left:403.147209pt;}
.x1d{left:412.363399pt;}
.x24{left:416.571213pt;}
.x20{left:425.290458pt;}
.x25{left:433.685326pt;}
.xb{left:512.866968pt;}
.x12{left:532.921231pt;}
.xd{left:587.512526pt;}
.xc{left:597.825109pt;}
.xe{left:616.131631pt;}
.x1e{left:655.583619pt;}
.x1f{left:660.992924pt;}
}




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