
    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_90f491cab736aadeb6445d9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_713e3ec0bb2c3f6014a268f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_3c2cb04aa2936d590d7038ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_93c734788b6bee189fbb5388.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_de14402a5dd41558ab342b8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.841000;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_8913fbf26428ef06d5366f88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d825341bb7e9cc3f13d22896.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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);}
.mb{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);}
.m13{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);}
.m14{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);}
.m26{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);}
.m16{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);}
.m8{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);}
.m10{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);}
.m11{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);}
.m1b{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);}
.m17{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);}
.m22{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);}
.m24{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);}
.m4{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);}
.m6{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);}
.m1e{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);}
.m25{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);}
.m18{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);}
.ma{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);}
.m1c{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);}
.m1f{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);}
.m9{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);}
.m1a{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);}
.m19{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);}
.m7{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);}
.me{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);}
.m15{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);}
.m23{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);}
.mf{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);}
.m1d{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);}
.m20{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);}
.m21{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);}
.m12{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);}
.m27{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);}
.mc{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);}
.m1{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);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-12.510000px;}
.v3{vertical-align:-11.142000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003634px;}
.ls25{letter-spacing:0.097897px;}
.ls26{letter-spacing:0.103897px;}
.ls1e{letter-spacing:0.670741px;}
.ls21{letter-spacing:0.676741px;}
.ls23{letter-spacing:0.720783px;}
.ls22{letter-spacing:0.742200px;}
.lsa{letter-spacing:0.748200px;}
.ls28{letter-spacing:1.210800px;}
.ls14{letter-spacing:1.312200px;}
.ls13{letter-spacing:1.318200px;}
.ls11{letter-spacing:1.342200px;}
.ls9{letter-spacing:1.420741px;}
.lsc{letter-spacing:1.489897px;}
.ls2d{letter-spacing:2.026800px;}
.ls2f{letter-spacing:2.032800px;}
.ls29{letter-spacing:3.286800px;}
.ls16{letter-spacing:3.787258px;}
.ls1{letter-spacing:10.461300px;}
.lsb{letter-spacing:10.712100px;}
.ls5{letter-spacing:11.954850px;}
.ls35{letter-spacing:12.527951px;}
.ls33{letter-spacing:12.687135px;}
.ls37{letter-spacing:13.208553px;}
.ls32{letter-spacing:13.281012px;}
.ls30{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.448467px;}
.ls34{letter-spacing:13.454400px;}
.ls17{letter-spacing:13.791634px;}
.ls15{letter-spacing:14.571634px;}
.ls6{letter-spacing:14.824349px;}
.ls19{letter-spacing:14.854950px;}
.ls18{letter-spacing:14.875580px;}
.ls1b{letter-spacing:14.943900px;}
.ls31{letter-spacing:15.244518px;}
.ls27{letter-spacing:15.481880px;}
.ls12{letter-spacing:15.691897px;}
.ls36{letter-spacing:16.079812px;}
.ls7{letter-spacing:16.796944px;}
.ls24{letter-spacing:17.741612px;}
.ls1d{letter-spacing:19.089483px;}
.ls2c{letter-spacing:19.127498px;}
.ls2e{letter-spacing:19.128049px;}
.ls2a{letter-spacing:20.195498px;}
.lsd{letter-spacing:20.782200px;}
.ls1c{letter-spacing:21.361200px;}
.ls20{letter-spacing:22.011483px;}
.ls8{letter-spacing:22.356074px;}
.ls2b{letter-spacing:22.409498px;}
.lsf{letter-spacing:23.284200px;}
.lse{letter-spacing:24.039483px;}
.ls1f{letter-spacing:24.283200px;}
.ls10{letter-spacing:26.535483px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.ws57{word-spacing:-14.943900px;}
.ws91{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws5d{word-spacing:-4.961375px;}
.ws51{word-spacing:-3.526760px;}
.ws41{word-spacing:-3.287658px;}
.ws32{word-spacing:-3.168107px;}
.ws30{word-spacing:-3.108331px;}
.ws42{word-spacing:-2.510575px;}
.ws5c{word-spacing:-2.151922px;}
.ws6b{word-spacing:-2.032370px;}
.ws78{word-spacing:-1.733492px;}
.ws3b{word-spacing:-1.554166px;}
.ws7a{word-spacing:-1.315063px;}
.ws3f{word-spacing:-1.255288px;}
.wsa7{word-spacing:-1.237363px;}
.ws6{word-spacing:-1.171598px;}
.ws8{word-spacing:-1.046070px;}
.wsa2{word-spacing:-1.022170px;}
.ws2a{word-spacing:-0.896634px;}
.ws6f{word-spacing:-0.660361px;}
.ws1c{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.298878px;}
.ws8c{word-spacing:-0.268992px;}
.ws8d{word-spacing:-0.260424px;}
.ws8e{word-spacing:-0.258024px;}
.ws2{word-spacing:-0.251057px;}
.ws23{word-spacing:-0.239102px;}
.wsac{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.179327px;}
.ws8f{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws9b{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws7e{word-spacing:-0.005440px;}
.ws0{word-spacing:0.000000px;}
.ws74{word-spacing:0.025967px;}
.ws20{word-spacing:0.059776px;}
.ws8b{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.ws18{word-spacing:0.161395px;}
.ws34{word-spacing:0.179327px;}
.ws77{word-spacing:0.215543px;}
.ws2b{word-spacing:0.239102px;}
.ws89{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws13{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws21{word-spacing:0.418429px;}
.ws7f{word-spacing:0.478205px;}
.ws95{word-spacing:0.484186px;}
.ws82{word-spacing:0.537980px;}
.ws45{word-spacing:0.631078px;}
.ws44{word-spacing:0.657532px;}
.ws52{word-spacing:0.691829px;}
.ws40{word-spacing:0.717307px;}
.ws84{word-spacing:0.777083px;}
.ws28{word-spacing:0.896634px;}
.ws48{word-spacing:0.956410px;}
.ws7{word-spacing:1.004227px;}
.ws5b{word-spacing:1.075961px;}
.ws46{word-spacing:1.135736px;}
.wsa4{word-spacing:1.183565px;}
.ws25{word-spacing:1.195512px;}
.ws3e{word-spacing:1.255288px;}
.ws3a{word-spacing:1.315063px;}
.ws9e{word-spacing:1.344960px;}
.ws97{word-spacing:1.398758px;}
.ws7d{word-spacing:1.434614px;}
.ws8a{word-spacing:1.452557px;}
.ws60{word-spacing:1.494390px;}
.ws71{word-spacing:1.504900px;}
.ws72{word-spacing:1.507188px;}
.ws76{word-spacing:1.554166px;}
.ws81{word-spacing:1.613941px;}
.ws80{word-spacing:1.673717px;}
.ws4d{word-spacing:1.718082px;}
.ws1f{word-spacing:1.733492px;}
.ws15{word-spacing:1.775347px;}
.ws5e{word-spacing:1.793268px;}
.ws31{word-spacing:1.853044px;}
.ws4c{word-spacing:1.972595px;}
.ws88{word-spacing:1.990541px;}
.ws2f{word-spacing:2.032370px;}
.wsab{word-spacing:2.044339px;}
.ws6a{word-spacing:2.092146px;}
.ws1{word-spacing:2.349541px;}
.ws47{word-spacing:2.450800px;}
.wsa9{word-spacing:2.636122px;}
.ws17{word-spacing:2.689920px;}
.ws50{word-spacing:2.749678px;}
.ws62{word-spacing:2.809453px;}
.ws14{word-spacing:2.851315px;}
.ws1e{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws83{word-spacing:3.048556px;}
.ws3d{word-spacing:3.108331px;}
.ws19{word-spacing:3.219667px;}
.ws87{word-spacing:3.224822px;}
.wsae{word-spacing:3.227904px;}
.ws69{word-spacing:3.407209px;}
.ws1a{word-spacing:3.586536px;}
.ws33{word-spacing:3.825638px;}
.ws26{word-spacing:3.945190px;}
.ws79{word-spacing:4.064741px;}
.ws16{word-spacing:4.250074px;}
.ws4f{word-spacing:4.542946px;}
.ws86{word-spacing:4.572864px;}
.wse{word-spacing:4.770079px;}
.ws3c{word-spacing:4.782048px;}
.wsf{word-spacing:4.853765px;}
.ws85{word-spacing:4.949453px;}
.ws5f{word-spacing:4.961375px;}
.ws67{word-spacing:5.618906px;}
.ws35{word-spacing:6.754643px;}
.ws61{word-spacing:6.814418px;}
.ws36{word-spacing:6.933970px;}
.ws49{word-spacing:7.035578px;}
.ws4b{word-spacing:7.053521px;}
.ws38{word-spacing:7.352399px;}
.ws37{word-spacing:7.412174px;}
.wsc{word-spacing:7.782761px;}
.ws3{word-spacing:10.418056px;}
.ws2c{word-spacing:11.906506px;}
.wsa{word-spacing:12.176255px;}
.wsa3{word-spacing:12.373632px;}
.wsa1{word-spacing:13.126810px;}
.ws6c{word-spacing:13.150632px;}
.ws9a{word-spacing:13.386422px;}
.ws9d{word-spacing:13.390157px;}
.wsa6{word-spacing:13.393334px;}
.ws90{word-spacing:13.395802px;}
.ws7b{word-spacing:13.867939px;}
.ws6e{word-spacing:14.226593px;}
.ws98{word-spacing:14.794560px;}
.ws39{word-spacing:14.884124px;}
.ws6d{word-spacing:14.943900px;}
.ws68{word-spacing:15.063451px;}
.wsaa{word-spacing:15.440141px;}
.ws43{word-spacing:15.541656px;}
.wsb{word-spacing:16.109478px;}
.wsad{word-spacing:16.300915px;}
.ws7c{word-spacing:16.318739px;}
.ws70{word-spacing:16.378514px;}
.ws93{word-spacing:16.408512px;}
.wsa8{word-spacing:16.462310px;}
.ws99{word-spacing:16.615853px;}
.wsa0{word-spacing:16.621853px;}
.ws94{word-spacing:16.623706px;}
.ws9c{word-spacing:16.677504px;}
.ws73{word-spacing:17.693578px;}
.ws75{word-spacing:18.351109px;}
.ws53{word-spacing:18.470660px;}
.ws96{word-spacing:18.560448px;}
.wsa5{word-spacing:20.712384px;}
.ws9f{word-spacing:21.088973px;}
.ws4a{word-spacing:21.937645px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws11{word-spacing:61.587245px;}
.ws55{word-spacing:211.051123px;}
.ws59{word-spacing:270.014170px;}
.ws54{word-spacing:291.694925px;}
.ws56{word-spacing:357.113779px;}
.ws58{word-spacing:409.567219px;}
.ws63{word-spacing:427.912474px;}
.ws64{word-spacing:427.966272px;}
.ws65{word-spacing:468.261274px;}
.ws5a{word-spacing:474.986074px;}
.ws66{word-spacing:481.710874px;}
._f{margin-left:-6.754643px;}
._8{margin-left:-5.571108px;}
._7{margin-left:-4.399495px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._6{width:1.231594px;}
._3{width:2.301354px;}
._2a{width:4.913550px;}
._2{width:12.971268px;}
._10{width:14.828586px;}
._c{width:16.674240px;}
._13{width:17.753353px;}
._b{width:18.775642px;}
._29{width:19.977001px;}
._a{width:21.465562px;}
._e{width:23.145108px;}
._14{width:24.579722px;}
._1{width:25.946136px;}
._d{width:27.508753px;}
._28{width:29.409595px;}
._5{width:30.587087px;}
._17{width:32.816804px;}
._2c{width:33.968192px;}
._15{width:38.626988px;}
._16{width:41.615768px;}
._9{width:56.810873px;}
._2b{width:88.767360px;}
._19{width:257.855731px;}
._1e{width:334.746864px;}
._1a{width:350.388979px;}
._1c{width:370.563379px;}
._21{width:375.728026px;}
._22{width:468.261274px;}
._1d{width:469.606234px;}
._26{width:481.764672px;}
._24{width:488.435674px;}
._1b{width:489.780634px;}
._27{width:495.160474px;}
._1f{width:509.955034px;}
._23{width:666.562176px;}
._18{width:672.964186px;}
._25{width:686.736576px;}
._20{width:908.708774px;}
._11{width:1107.764199px;}
._12{width:2648.091300px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,41,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fse{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y36{bottom:15.759303px;}
.y63{bottom:31.890000px;}
.y4{bottom:97.125005px;}
.y152{bottom:101.688000px;}
.y34{bottom:104.646000px;}
.y62{bottom:110.046000px;}
.y124{bottom:111.444000px;}
.y17c{bottom:111.576000px;}
.y151{bottom:120.516000px;}
.y33{bottom:122.535000px;}
.yf6{bottom:123.693000px;}
.y98{bottom:126.022500px;}
.y17b{bottom:128.836500px;}
.y61{bottom:128.875500px;}
.y123{bottom:130.273500px;}
.y17a{bottom:133.719000px;}
.y1f{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.yf5{bottom:142.522500px;}
.y97{bottom:144.852000px;}
.y60{bottom:147.705000px;}
.y122{bottom:149.103000px;}
.y179{bottom:154.864500px;}
.y150{bottom:157.279500px;}
.y31{bottom:158.310000px;}
.yf4{bottom:161.352000px;}
.y96{bottom:163.681500px;}
.y5f{bottom:166.534500px;}
.y14f{bottom:176.109000px;}
.y30{bottom:176.199000px;}
.yc6{bottom:179.343000px;}
.yf3{bottom:180.181500px;}
.y95{bottom:182.511000px;}
.y5e{bottom:185.364000px;}
.y178{bottom:188.488500px;}
.y2f{bottom:194.086500px;}
.y121{bottom:194.565000px;}
.y14e{bottom:194.938500px;}
.y16{bottom:196.933500px;}
.yc5{bottom:198.172500px;}
.yf2{bottom:199.011000px;}
.y94{bottom:201.340500px;}
.y5d{bottom:204.193500px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y2e{bottom:211.974000px;}
.y177{bottom:215.029500px;}
.yc4{bottom:217.002000px;}
.yf1{bottom:217.840500px;}
.y120{bottom:218.505000px;}
.y93{bottom:220.170000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y5c{bottom:223.023000px;}
.y2d{bottom:229.863000px;}
.y14d{bottom:231.700500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y11f{bottom:234.943500px;}
.yc3{bottom:235.831500px;}
.y92{bottom:238.999500px;}
.y176{bottom:241.569000px;}
.y5b{bottom:241.852500px;}
.y11e{bottom:251.382000px;}
.yc2{bottom:254.661000px;}
.y91{bottom:257.829000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y5a{bottom:260.682000px;}
.y14c{bottom:262.485000px;}
.yf0{bottom:263.302500px;}
.y11d{bottom:267.820500px;}
.y175{bottom:268.110000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.yc1{bottom:273.490500px;}
.y90{bottom:276.658500px;}
.y59{bottom:279.510000px;}
.yef{bottom:279.741000px;}
.y14b{bottom:281.314500px;}
.y11c{bottom:284.259000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y174{bottom:285.684000px;}
.y8f{bottom:295.488000px;}
.yee{bottom:296.179500px;}
.yc0{bottom:296.802000px;}
.y58{bottom:298.339500px;}
.y14a{bottom:300.144000px;}
.y2c{bottom:300.154500px;}
.y11b{bottom:308.197500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.yed{bottom:312.618000px;}
.y8e{bottom:314.317500px;}
.y57{bottom:317.169000px;}
.y2b{bottom:318.043500px;}
.y149{bottom:318.973500px;}
.y173{bottom:321.190500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.yec{bottom:329.056500px;}
.ybf{bottom:330.426000px;}
.y11a{bottom:332.137500px;}
.y8d{bottom:333.145500px;}
.y2a{bottom:335.931000px;}
.y56{bottom:335.998500px;}
.y148{bottom:337.803000px;}
.y172{bottom:340.020000px;}
.yd{bottom:348.133500px;}
.y119{bottom:348.576000px;}
.ybe{bottom:349.255500px;}
.y8c{bottom:351.975000px;}
.yeb{bottom:352.995000px;}
.y29{bottom:353.818500px;}
.y55{bottom:354.828000px;}
.y147{bottom:356.632500px;}
.y171{bottom:358.849500px;}
.y118{bottom:365.014500px;}
.ybd{bottom:368.085000px;}
.yea{bottom:369.433500px;}
.y146{bottom:370.306500px;}
.y8b{bottom:370.804500px;}
.y54{bottom:373.657500px;}
.y145{bottom:375.462000px;}
.y1a7{bottom:376.683000px;}
.y170{bottom:377.679000px;}
.y28{bottom:380.673000px;}
.yc{bottom:386.785499px;}
.ybc{bottom:386.914500px;}
.y117{bottom:388.954500px;}
.y8a{bottom:389.634000px;}
.y53{bottom:392.487000px;}
.ye9{bottom:393.373500px;}
.y1a6{bottom:393.943500px;}
.y144{bottom:394.290000px;}
.y16f{bottom:396.508500px;}
.y27{bottom:398.562000px;}
.ybb{bottom:405.744000px;}
.yb{bottom:408.044999px;}
.y89{bottom:408.463500px;}
.ye8{bottom:409.812000px;}
.y1a5{bottom:411.202500px;}
.y52{bottom:411.316500px;}
.y116{bottom:412.893000px;}
.y143{bottom:413.119500px;}
.y16e{bottom:415.338000px;}
.y26{bottom:416.449500px;}
.yba{bottom:424.573500px;}
.ye7{bottom:426.250500px;}
.y142{bottom:426.795000px;}
.y88{bottom:427.293000px;}
.y1a4{bottom:428.463000px;}
.y115{bottom:429.331500px;}
.y51{bottom:430.146000px;}
.y141{bottom:431.949000px;}
.y16d{bottom:434.167500px;}
.ye6{bottom:442.689000px;}
.yb9{bottom:443.403000px;}
.y25{bottom:444.798000px;}
.y1a3{bottom:445.723500px;}
.y114{bottom:445.770000px;}
.y87{bottom:446.122500px;}
.y140{bottom:447.244500px;}
.y50{bottom:448.975500px;}
.y13f{bottom:452.400000px;}
.y16c{bottom:452.997000px;}
.ye5{bottom:459.127500px;}
.y113{bottom:462.208500px;}
.yb8{bottom:462.232500px;}
.y24{bottom:462.685500px;}
.y1a2{bottom:462.984000px;}
.y86{bottom:464.952000px;}
.y4f{bottom:467.805000px;}
.y16b{bottom:471.826500px;}
.y112{bottom:478.647000px;}
.y1a1{bottom:480.244500px;}
.yb7{bottom:481.062000px;}
.ye4{bottom:483.066000px;}
.y85{bottom:483.781500px;}
.y4e{bottom:486.634500px;}
.y13e{bottom:489.162000px;}
.y23{bottom:489.540000px;}
.y16a{bottom:490.656000px;}
.y111{bottom:495.085500px;}
.y1a0{bottom:497.505000px;}
.ye3{bottom:499.504500px;}
.yb6{bottom:499.891500px;}
.y84{bottom:502.611000px;}
.y4d{bottom:505.464000px;}
.y22{bottom:507.429000px;}
.y13d{bottom:507.991500px;}
.y169{bottom:509.485500px;}
.y19f{bottom:514.765500px;}
.yb5{bottom:518.721000px;}
.y110{bottom:519.025500px;}
.ya{bottom:520.864502px;}
.y83{bottom:521.440500px;}
.y4c{bottom:524.293500px;}
.y21{bottom:525.316500px;}
.y13c{bottom:526.821000px;}
.y168{bottom:528.315000px;}
.ye2{bottom:531.124500px;}
.y19e{bottom:532.026000px;}
.yb3{bottom:537.550500px;}
.y9{bottom:538.864499px;}
.y82{bottom:540.270000px;}
.y10f{bottom:542.964000px;}
.yb4{bottom:542.974500px;}
.y4b{bottom:543.123000px;}
.y20{bottom:543.204000px;}
.y167{bottom:547.144500px;}
.y19d{bottom:549.286500px;}
.y8{bottom:556.864499px;}
.yb2{bottom:558.202500px;}
.y10e{bottom:559.402500px;}
.y4a{bottom:561.952500px;}
.y81{bottom:563.583000px;}
.y166{bottom:565.974000px;}
.y19c{bottom:566.545500px;}
.ye1{bottom:568.228500px;}
.y10d{bottom:575.841000px;}
.yb1{bottom:577.032000px;}
.y49{bottom:580.782000px;}
.y13b{bottom:582.412500px;}
.y19b{bottom:583.806000px;}
.y165{bottom:584.803500px;}
.ye0{bottom:587.058000px;}
.yb0{bottom:595.861500px;}
.y80{bottom:597.207000px;}
.y48{bottom:599.611500px;}
.y19a{bottom:601.066500px;}
.y13a{bottom:601.242000px;}
.y164{bottom:603.633000px;}
.y10c{bottom:607.461000px;}
.yaf{bottom:614.691000px;}
.y7f{bottom:616.036500px;}
.y199{bottom:618.327000px;}
.ydf{bottom:620.704500px;}
.y163{bottom:622.462500px;}
.y47{bottom:622.924500px;}
.yae{bottom:633.520500px;}
.y7e{bottom:634.866000px;}
.y198{bottom:635.587500px;}
.y139{bottom:638.004000px;}
.yde{bottom:639.534000px;}
.y162{bottom:641.292000px;}
.y10b{bottom:644.565000px;}
.y7{bottom:645.510000px;}
.yad{bottom:652.350000px;}
.y197{bottom:652.848000px;}
.y7d{bottom:653.695500px;}
.y138{bottom:656.833500px;}
.y161{bottom:660.121500px;}
.y10a{bottom:663.394500px;}
.y6{bottom:666.771000px;}
.y196{bottom:670.108500px;}
.yac{bottom:671.179500px;}
.y7c{bottom:672.525000px;}
.ydc{bottom:674.113500px;}
.y137{bottom:675.663000px;}
.y160{bottom:678.951000px;}
.ydd{bottom:679.539000px;}
.y109{bottom:682.224000px;}
.y195{bottom:687.369000px;}
.yab{bottom:690.009000px;}
.y7b{bottom:691.354500px;}
.y136{bottom:694.335000px;}
.y135{bottom:694.492500px;}
.y46{bottom:697.267500px;}
.y15f{bottom:697.780500px;}
.ydb{bottom:699.742500px;}
.y108{bottom:701.053500px;}
.y194{bottom:704.628000px;}
.yaa{bottom:708.838500px;}
.y7a{bottom:710.184000px;}
.y134{bottom:713.164500px;}
.y133{bottom:713.322000px;}
.y15e{bottom:716.610000px;}
.y193{bottom:721.888500px;}
.y5{bottom:726.298500px;}
.y79{bottom:729.013500px;}
.y132{bottom:731.994000px;}
.ya9{bottom:732.151500px;}
.y45{bottom:734.656500px;}
.y107{bottom:734.700000px;}
.y15d{bottom:735.439500px;}
.y192{bottom:739.149000px;}
.yda{bottom:742.066500px;}
.y78{bottom:747.843000px;}
.y3{bottom:752.599495px;}
.y106{bottom:753.529500px;}
.y15c{bottom:754.269000px;}
.y191{bottom:756.409500px;}
.yd9{bottom:758.505000px;}
.ya8{bottom:765.775500px;}
.y77{bottom:766.671000px;}
.y131{bottom:768.913500px;}
.y44{bottom:772.047000px;}
.y190{bottom:773.670000px;}
.yd8{bottom:774.943500px;}
.y15b{bottom:777.580500px;}
.ya7{bottom:784.605000px;}
.y76{bottom:785.500500px;}
.y130{bottom:787.743000px;}
.y105{bottom:788.109000px;}
.y18f{bottom:790.930500px;}
.yd7{bottom:791.382000px;}
.y43{bottom:791.503500px;}
.ya6{bottom:803.434500px;}
.y75{bottom:804.330000px;}
.y104{bottom:806.938500px;}
.yd6{bottom:807.820500px;}
.y18e{bottom:808.191000px;}
.y42{bottom:810.960000px;}
.y12f{bottom:811.056000px;}
.y15a{bottom:811.204500px;}
.ya5{bottom:822.264000px;}
.y74{bottom:823.159500px;}
.y18d{bottom:825.451500px;}
.y103{bottom:825.768000px;}
.y159{bottom:830.034000px;}
.y41{bottom:830.418000px;}
.yd5{bottom:831.760500px;}
.ya4{bottom:841.093500px;}
.y73{bottom:841.989000px;}
.y18c{bottom:842.712000px;}
.y102{bottom:844.597500px;}
.y12e{bottom:844.680000px;}
.y158{bottom:848.863500px;}
.y40{bottom:849.874500px;}
.yd4{bottom:855.699000px;}
.ya3{bottom:859.923000px;}
.y18b{bottom:859.971000px;}
.y72{bottom:860.818500px;}
.y101{bottom:863.427000px;}
.y12d{bottom:863.509500px;}
.y157{bottom:867.693000px;}
.y3f{bottom:869.332500px;}
.yd3{bottom:872.137500px;}
.y18a{bottom:877.231500px;}
.ya2{bottom:878.752500px;}
.y2{bottom:879.369000px;}
.y71{bottom:879.648000px;}
.y100{bottom:882.256500px;}
.y156{bottom:886.522500px;}
.yd2{bottom:888.576000px;}
.y3e{bottom:888.789000px;}
.y189{bottom:894.492000px;}
.ya1{bottom:897.582000px;}
.y70{bottom:898.477500px;}
.y12c{bottom:900.271500px;}
.yff{bottom:901.086000px;}
.y155{bottom:905.352000px;}
.y188{bottom:911.752500px;}
.yd1{bottom:912.516000px;}
.ya0{bottom:916.254000px;}
.y9f{bottom:916.410000px;}
.y6f{bottom:917.307000px;}
.y12b{bottom:919.101000px;}
.yfe{bottom:919.915500px;}
.y154{bottom:924.181500px;}
.y3d{bottom:927.375000px;}
.yd0{bottom:928.954500px;}
.y187{bottom:929.013000px;}
.y9e{bottom:935.239500px;}
.y6e{bottom:936.136500px;}
.y12a{bottom:937.930500px;}
.yfd{bottom:938.745000px;}
.y153{bottom:943.011000px;}
.y3c{bottom:943.513500px;}
.ycf{bottom:945.393000px;}
.y186{bottom:946.273500px;}
.y9d{bottom:954.069000px;}
.y6d{bottom:954.966000px;}
.y129{bottom:956.760000px;}
.yfc{bottom:957.574500px;}
.yce{bottom:961.830000px;}
.y185{bottom:963.534000px;}
.y3b{bottom:963.993000px;}
.y1{bottom:966.726000px;}
.y6c{bottom:973.795500px;}
.y128{bottom:975.589500px;}
.yfb{bottom:976.404000px;}
.y9c{bottom:977.382000px;}
.ycd{bottom:978.268500px;}
.y3a{bottom:980.133000px;}
.y184{bottom:980.794500px;}
.y6b{bottom:992.625000px;}
.y127{bottom:994.419000px;}
.ycc{bottom:994.707000px;}
.yfa{bottom:995.233500px;}
.y183{bottom:1002.537000px;}
.y9b{bottom:1011.006000px;}
.y6a{bottom:1011.454500px;}
.ycb{bottom:1018.647000px;}
.y39{bottom:1024.809000px;}
.yf9{bottom:1028.880000px;}
.y9a{bottom:1029.835500px;}
.y69{bottom:1030.284000px;}
.y126{bottom:1031.181000px;}
.y182{bottom:1036.161000px;}
.yca{bottom:1042.587000px;}
.yf8{bottom:1047.709500px;}
.y68{bottom:1049.113500px;}
.y125{bottom:1050.010500px;}
.y99{bottom:1053.148500px;}
.y181{bottom:1053.421500px;}
.yc9{bottom:1059.025500px;}
.y38{bottom:1064.728500px;}
.y67{bottom:1067.943000px;}
.y180{bottom:1070.682000px;}
.yc8{bottom:1075.462500px;}
.yf7{bottom:1082.289000px;}
.y66{bottom:1086.772500px;}
.y17f{bottom:1087.942500px;}
.y37{bottom:1092.972000px;}
.y17e{bottom:1105.203000px;}
.y65{bottom:1105.602000px;}
.yc7{bottom:1107.082500px;}
.y17d{bottom:1110.085500px;}
.y35{bottom:1136.460000px;}
.y64{bottom:1168.366500px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h18{height:33.072749px;}
.h1b{height:33.299897px;}
.h11{height:34.813397px;}
.h16{height:35.052500px;}
.h12{height:38.734848px;}
.h13{height:39.165235px;}
.h19{height:39.434227px;}
.h1d{height:42.043500px;}
.h14{height:43.038432px;}
.h15{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h17{height:46.714950px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.411312px;}
.h1a{height:54.995897px;}
.h1c{height:55.001897px;}
.h2{height:55.080000px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.hc{height:94.491000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:156.736946px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x73{left:85.890000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x77{left:225.154500px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x78{left:261.474000px;}
.x74{left:277.228500px;}
.xa{left:281.479500px;}
.x2b{left:282.660000px;}
.x7e{left:290.475000px;}
.x4e{left:293.641500px;}
.x2c{left:297.604500px;}
.x7f{left:298.861500px;}
.x9{left:308.145000px;}
.x51{left:311.487000px;}
.x80{left:317.754000px;}
.x39{left:321.232500px;}
.x5d{left:325.467000px;}
.x3a{left:328.128000px;}
.x7b{left:329.184000px;}
.x5e{left:330.931500px;}
.x4d{left:333.213000px;}
.x21{left:336.354000px;}
.x22{left:351.298500px;}
.x64{left:352.665000px;}
.x55{left:357.964500px;}
.x50{left:362.679000px;}
.x5c{left:364.417500px;}
.x34{left:367.321500px;}
.x1b{left:375.528000px;}
.x71{left:379.125000px;}
.x1c{left:382.999500px;}
.x46{left:384.151500px;}
.x47{left:394.788000px;}
.x58{left:402.778500px;}
.x65{left:413.746500px;}
.x59{left:416.862000px;}
.x6c{left:418.372500px;}
.x2d{left:420.307500px;}
.xd{left:421.354500px;}
.x48{left:424.759500px;}
.x5a{left:426.987000px;}
.xe{left:428.827500px;}
.x5b{left:430.819500px;}
.x6d{left:432.673500px;}
.x2e{left:435.252000px;}
.x53{left:436.393500px;}
.x49{left:442.288500px;}
.x70{left:450.358500px;}
.x3{left:454.959000px;}
.x4b{left:462.802500px;}
.x56{left:464.692500px;}
.x4c{left:466.218000px;}
.x35{left:469.605000px;}
.x62{left:477.135000px;}
.x36{left:488.004000px;}
.x3f{left:526.299000px;}
.x27{left:533.259000px;}
.x63{left:544.564500px;}
.x28{left:548.202000px;}
.x40{left:552.061500px;}
.x66{left:557.874000px;}
.x67{left:565.594500px;}
.x4f{left:567.318000px;}
.x54{left:570.531000px;}
.x68{left:571.822500px;}
.x4a{left:573.496500px;}
.x2f{left:579.469500px;}
.x17{left:581.374500px;}
.x75{left:583.102500px;}
.x11{left:585.729000px;}
.x18{left:588.846000px;}
.x23{left:592.660500px;}
.x69{left:594.390000px;}
.x6a{left:602.112000px;}
.x81{left:605.343000px;}
.x12{left:606.891000px;}
.x32{left:609.196500px;}
.x24{left:611.277000px;}
.x30{left:613.470000px;}
.x5f{left:614.776500px;}
.x76{left:618.313500px;}
.x6e{left:620.971500px;}
.x38{left:622.989000px;}
.x25{left:626.221500px;}
.x6f{left:632.041500px;}
.x13{left:636.408000px;}
.x79{left:647.182500px;}
.x33{left:648.894000px;}
.x72{left:654.045000px;}
.x52{left:655.717500px;}
.x3b{left:660.268500px;}
.x1d{left:661.792500px;}
.x26{left:666.442500px;}
.x60{left:670.998000px;}
.x15{left:674.131500px;}
.x1e{left:676.737000px;}
.x3c{left:677.790000px;}
.x16{left:681.603000px;}
.x7a{left:683.502000px;}
.x41{left:688.047000px;}
.x57{left:690.453000px;}
.xb{left:694.108500px;}
.x7c{left:698.691000px;}
.xc{left:701.581500px;}
.x87{left:704.731500px;}
.x42{left:718.981500px;}
.x88{left:724.996500px;}
.x7d{left:733.371000px;}
.x85{left:734.676000px;}
.x43{left:738.595500px;}
.x44{left:745.083000px;}
.x61{left:749.772000px;}
.x86{left:761.575500px;}
.x45{left:770.455500px;}
.x89{left:776.355000px;}
.x37{left:780.009000px;}
.x82{left:781.029000px;}
.x19{left:784.749000px;}
.xf{left:787.537500px;}
.x1a{left:792.220500px;}
.x10{left:795.009000px;}
.x6b{left:798.289500px;}
.x1f{left:801.433500px;}
.x84{left:810.265500px;}
.x83{left:814.233000px;}
.x20{left:816.378000px;}
.x29{left:819.093000px;}
.x3d{left:823.182000px;}
.x31{left:831.255000px;}
.x14{left:832.650000px;}
.x2a{left:834.036000px;}
.x3e{left:836.970000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-11.120000pt;}
.v3{vertical-align:-9.904000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003230pt;}
.ls25{letter-spacing:0.087020pt;}
.ls26{letter-spacing:0.092353pt;}
.ls1e{letter-spacing:0.596214pt;}
.ls21{letter-spacing:0.601548pt;}
.ls23{letter-spacing:0.640696pt;}
.ls22{letter-spacing:0.659733pt;}
.lsa{letter-spacing:0.665067pt;}
.ls28{letter-spacing:1.076267pt;}
.ls14{letter-spacing:1.166400pt;}
.ls13{letter-spacing:1.171733pt;}
.ls11{letter-spacing:1.193067pt;}
.ls9{letter-spacing:1.262881pt;}
.lsc{letter-spacing:1.324353pt;}
.ls2d{letter-spacing:1.801600pt;}
.ls2f{letter-spacing:1.806933pt;}
.ls29{letter-spacing:2.921600pt;}
.ls16{letter-spacing:3.366451pt;}
.ls1{letter-spacing:9.298933pt;}
.lsb{letter-spacing:9.521867pt;}
.ls5{letter-spacing:10.626533pt;}
.ls35{letter-spacing:11.135956pt;}
.ls33{letter-spacing:11.277453pt;}
.ls37{letter-spacing:11.740936pt;}
.ls32{letter-spacing:11.805344pt;}
.ls30{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.954193pt;}
.ls34{letter-spacing:11.959467pt;}
.ls17{letter-spacing:12.259230pt;}
.ls15{letter-spacing:12.952563pt;}
.ls6{letter-spacing:13.177199pt;}
.ls19{letter-spacing:13.204400pt;}
.ls18{letter-spacing:13.222738pt;}
.ls1b{letter-spacing:13.283467pt;}
.ls31{letter-spacing:13.550682pt;}
.ls27{letter-spacing:13.761671pt;}
.ls12{letter-spacing:13.948353pt;}
.ls36{letter-spacing:14.293166pt;}
.ls7{letter-spacing:14.930617pt;}
.ls24{letter-spacing:15.770322pt;}
.ls1d{letter-spacing:16.968429pt;}
.ls2c{letter-spacing:17.002221pt;}
.ls2e{letter-spacing:17.002710pt;}
.ls2a{letter-spacing:17.951554pt;}
.lsd{letter-spacing:18.473067pt;}
.ls1c{letter-spacing:18.987733pt;}
.ls20{letter-spacing:19.565762pt;}
.ls8{letter-spacing:19.872066pt;}
.ls2b{letter-spacing:19.919554pt;}
.lsf{letter-spacing:20.697067pt;}
.lse{letter-spacing:21.368429pt;}
.ls1f{letter-spacing:21.585067pt;}
.ls10{letter-spacing:23.587096pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws57{word-spacing:-13.283467pt;}
.ws91{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws5d{word-spacing:-4.410111pt;}
.ws51{word-spacing:-3.134898pt;}
.ws41{word-spacing:-2.922363pt;}
.ws32{word-spacing:-2.816095pt;}
.ws30{word-spacing:-2.762961pt;}
.ws42{word-spacing:-2.231622pt;}
.ws5c{word-spacing:-1.912819pt;}
.ws6b{word-spacing:-1.806551pt;}
.ws78{word-spacing:-1.540882pt;}
.ws3b{word-spacing:-1.381481pt;}
.ws7a{word-spacing:-1.168945pt;}
.ws3f{word-spacing:-1.115811pt;}
.wsa7{word-spacing:-1.099878pt;}
.ws6{word-spacing:-1.041421pt;}
.ws8{word-spacing:-0.929840pt;}
.wsa2{word-spacing:-0.908595pt;}
.ws2a{word-spacing:-0.797008pt;}
.ws6f{word-spacing:-0.586988pt;}
.ws1c{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.265669pt;}
.ws8c{word-spacing:-0.239104pt;}
.ws8d{word-spacing:-0.231488pt;}
.ws8e{word-spacing:-0.229355pt;}
.ws2{word-spacing:-0.223162pt;}
.ws23{word-spacing:-0.212535pt;}
.wsac{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.159402pt;}
.ws8f{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws9b{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws7e{word-spacing:-0.004835pt;}
.ws0{word-spacing:0.000000pt;}
.ws74{word-spacing:0.023081pt;}
.ws20{word-spacing:0.053134pt;}
.ws8b{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.ws18{word-spacing:0.143462pt;}
.ws34{word-spacing:0.159402pt;}
.ws77{word-spacing:0.191594pt;}
.ws2b{word-spacing:0.212535pt;}
.ws89{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws13{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws21{word-spacing:0.371937pt;}
.ws7f{word-spacing:0.425071pt;}
.ws95{word-spacing:0.430387pt;}
.ws82{word-spacing:0.478205pt;}
.ws45{word-spacing:0.560959pt;}
.ws44{word-spacing:0.584473pt;}
.ws52{word-spacing:0.614959pt;}
.ws40{word-spacing:0.637606pt;}
.ws84{word-spacing:0.690740pt;}
.ws28{word-spacing:0.797008pt;}
.ws48{word-spacing:0.850142pt;}
.ws7{word-spacing:0.892646pt;}
.ws5b{word-spacing:0.956410pt;}
.ws46{word-spacing:1.009543pt;}
.wsa4{word-spacing:1.052058pt;}
.ws25{word-spacing:1.062677pt;}
.ws3e{word-spacing:1.115811pt;}
.ws3a{word-spacing:1.168945pt;}
.ws9e{word-spacing:1.195520pt;}
.ws97{word-spacing:1.243341pt;}
.ws7d{word-spacing:1.275213pt;}
.ws8a{word-spacing:1.291162pt;}
.ws60{word-spacing:1.328347pt;}
.ws71{word-spacing:1.337689pt;}
.ws72{word-spacing:1.339723pt;}
.ws76{word-spacing:1.381481pt;}
.ws81{word-spacing:1.434614pt;}
.ws80{word-spacing:1.487748pt;}
.ws4d{word-spacing:1.527184pt;}
.ws1f{word-spacing:1.540882pt;}
.ws15{word-spacing:1.578086pt;}
.ws5e{word-spacing:1.594016pt;}
.ws31{word-spacing:1.647150pt;}
.ws4c{word-spacing:1.753418pt;}
.ws88{word-spacing:1.769370pt;}
.ws2f{word-spacing:1.806551pt;}
.wsab{word-spacing:1.817190pt;}
.ws6a{word-spacing:1.859685pt;}
.ws1{word-spacing:2.088481pt;}
.ws47{word-spacing:2.178489pt;}
.wsa9{word-spacing:2.343219pt;}
.ws17{word-spacing:2.391040pt;}
.ws50{word-spacing:2.444158pt;}
.ws62{word-spacing:2.497292pt;}
.ws14{word-spacing:2.534502pt;}
.ws1e{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws83{word-spacing:2.709827pt;}
.ws3d{word-spacing:2.762961pt;}
.ws19{word-spacing:2.861926pt;}
.ws87{word-spacing:2.866509pt;}
.wsae{word-spacing:2.869248pt;}
.ws69{word-spacing:3.028630pt;}
.ws1a{word-spacing:3.188032pt;}
.ws33{word-spacing:3.400567pt;}
.ws26{word-spacing:3.506835pt;}
.ws79{word-spacing:3.613103pt;}
.ws16{word-spacing:3.777843pt;}
.ws4f{word-spacing:4.038174pt;}
.ws86{word-spacing:4.064768pt;}
.wse{word-spacing:4.240070pt;}
.ws3c{word-spacing:4.250709pt;}
.wsf{word-spacing:4.314458pt;}
.ws85{word-spacing:4.399514pt;}
.ws5f{word-spacing:4.410111pt;}
.ws67{word-spacing:4.994583pt;}
.ws35{word-spacing:6.004127pt;}
.ws61{word-spacing:6.057261pt;}
.ws36{word-spacing:6.163529pt;}
.ws49{word-spacing:6.253847pt;}
.ws4b{word-spacing:6.269796pt;}
.ws38{word-spacing:6.535466pt;}
.ws37{word-spacing:6.588599pt;}
.wsc{word-spacing:6.918010pt;}
.ws3{word-spacing:9.260494pt;}
.ws2c{word-spacing:10.583561pt;}
.wsa{word-spacing:10.823338pt;}
.wsa3{word-spacing:10.998784pt;}
.wsa1{word-spacing:11.668275pt;}
.ws6c{word-spacing:11.689451pt;}
.ws9a{word-spacing:11.899042pt;}
.ws9d{word-spacing:11.902362pt;}
.wsa6{word-spacing:11.905186pt;}
.ws90{word-spacing:11.907379pt;}
.ws7b{word-spacing:12.327057pt;}
.ws6e{word-spacing:12.645860pt;}
.ws98{word-spacing:13.150720pt;}
.ws39{word-spacing:13.230333pt;}
.ws6d{word-spacing:13.283467pt;}
.ws68{word-spacing:13.389734pt;}
.wsaa{word-spacing:13.724570pt;}
.ws43{word-spacing:13.814805pt;}
.wsb{word-spacing:14.319536pt;}
.wsad{word-spacing:14.489702pt;}
.ws7c{word-spacing:14.505546pt;}
.ws70{word-spacing:14.558679pt;}
.ws93{word-spacing:14.585344pt;}
.wsa8{word-spacing:14.633165pt;}
.ws99{word-spacing:14.769647pt;}
.wsa0{word-spacing:14.774980pt;}
.ws94{word-spacing:14.776627pt;}
.ws9c{word-spacing:14.824448pt;}
.ws73{word-spacing:15.727625pt;}
.ws75{word-spacing:16.312097pt;}
.ws53{word-spacing:16.418365pt;}
.ws96{word-spacing:16.498176pt;}
.wsa5{word-spacing:18.411008pt;}
.ws9f{word-spacing:18.745754pt;}
.ws4a{word-spacing:19.500129pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws11{word-spacing:54.744218pt;}
.ws55{word-spacing:187.600998pt;}
.ws59{word-spacing:240.012595pt;}
.ws54{word-spacing:259.284378pt;}
.ws56{word-spacing:317.434470pt;}
.ws58{word-spacing:364.059750pt;}
.ws63{word-spacing:380.366643pt;}
.ws64{word-spacing:380.414464pt;}
.ws65{word-spacing:416.232243pt;}
.ws5a{word-spacing:422.209843pt;}
.ws66{word-spacing:428.187443pt;}
._f{margin-left:-6.004127pt;}
._8{margin-left:-4.952096pt;}
._7{margin-left:-3.910662pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._6{width:1.094750pt;}
._3{width:2.045648pt;}
._2a{width:4.367600pt;}
._2{width:11.530016pt;}
._10{width:13.180965pt;}
._c{width:14.821547pt;}
._13{width:15.780758pt;}
._b{width:16.689459pt;}
._29{width:17.757334pt;}
._a{width:19.080499pt;}
._e{width:20.573429pt;}
._14{width:21.848642pt;}
._1{width:23.063232pt;}
._d{width:24.452225pt;}
._28{width:26.141862pt;}
._5{width:27.188522pt;}
._17{width:29.170493pt;}
._2c{width:30.193948pt;}
._15{width:34.335101pt;}
._16{width:36.991794pt;}
._9{width:50.498554pt;}
._2b{width:78.904320pt;}
._19{width:229.205094pt;}
._1e{width:297.552768pt;}
._1a{width:311.456870pt;}
._1c{width:329.389670pt;}
._21{width:333.980467pt;}
._22{width:416.232243pt;}
._1d{width:417.427763pt;}
._26{width:428.235264pt;}
._24{width:434.165043pt;}
._1b{width:435.360563pt;}
._27{width:440.142643pt;}
._1f{width:453.293363pt;}
._23{width:592.499712pt;}
._18{width:598.190387pt;}
._25{width:610.432512pt;}
._20{width:807.741133pt;}
._11{width:984.679288pt;}
._12{width:2353.858933pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fse{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:14.008270pt;}
.y63{bottom:28.346667pt;}
.y4{bottom:86.333337pt;}
.y152{bottom:90.389333pt;}
.y34{bottom:93.018667pt;}
.y62{bottom:97.818667pt;}
.y124{bottom:99.061333pt;}
.y17c{bottom:99.178667pt;}
.y151{bottom:107.125333pt;}
.y33{bottom:108.920000pt;}
.yf6{bottom:109.949333pt;}
.y98{bottom:112.020000pt;}
.y17b{bottom:114.521333pt;}
.y61{bottom:114.556000pt;}
.y123{bottom:115.798667pt;}
.y17a{bottom:118.861333pt;}
.y1f{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.yf5{bottom:126.686667pt;}
.y97{bottom:128.757333pt;}
.y60{bottom:131.293333pt;}
.y122{bottom:132.536000pt;}
.y179{bottom:137.657333pt;}
.y150{bottom:139.804000pt;}
.y31{bottom:140.720000pt;}
.yf4{bottom:143.424000pt;}
.y96{bottom:145.494667pt;}
.y5f{bottom:148.030667pt;}
.y14f{bottom:156.541333pt;}
.y30{bottom:156.621333pt;}
.yc6{bottom:159.416000pt;}
.yf3{bottom:160.161333pt;}
.y95{bottom:162.232000pt;}
.y5e{bottom:164.768000pt;}
.y178{bottom:167.545333pt;}
.y2f{bottom:172.521333pt;}
.y121{bottom:172.946667pt;}
.y14e{bottom:173.278667pt;}
.y16{bottom:175.052000pt;}
.yc5{bottom:176.153333pt;}
.yf2{bottom:176.898667pt;}
.y94{bottom:178.969333pt;}
.y5d{bottom:181.505333pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y2e{bottom:188.421333pt;}
.y177{bottom:191.137333pt;}
.yc4{bottom:192.890667pt;}
.yf1{bottom:193.636000pt;}
.y120{bottom:194.226667pt;}
.y93{bottom:195.706667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y5c{bottom:198.242667pt;}
.y2d{bottom:204.322667pt;}
.y14d{bottom:205.956000pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y11f{bottom:208.838667pt;}
.yc3{bottom:209.628000pt;}
.y92{bottom:212.444000pt;}
.y176{bottom:214.728000pt;}
.y5b{bottom:214.980000pt;}
.y11e{bottom:223.450667pt;}
.yc2{bottom:226.365333pt;}
.y91{bottom:229.181333pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y5a{bottom:231.717333pt;}
.y14c{bottom:233.320000pt;}
.yf0{bottom:234.046667pt;}
.y11d{bottom:238.062667pt;}
.y175{bottom:238.320000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.yc1{bottom:243.102667pt;}
.y90{bottom:245.918667pt;}
.y59{bottom:248.453333pt;}
.yef{bottom:248.658667pt;}
.y14b{bottom:250.057333pt;}
.y11c{bottom:252.674667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y174{bottom:253.941333pt;}
.y8f{bottom:262.656000pt;}
.yee{bottom:263.270667pt;}
.yc0{bottom:263.824000pt;}
.y58{bottom:265.190667pt;}
.y14a{bottom:266.794667pt;}
.y2c{bottom:266.804000pt;}
.y11b{bottom:273.953333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.yed{bottom:277.882667pt;}
.y8e{bottom:279.393333pt;}
.y57{bottom:281.928000pt;}
.y2b{bottom:282.705333pt;}
.y149{bottom:283.532000pt;}
.y173{bottom:285.502667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.yec{bottom:292.494667pt;}
.ybf{bottom:293.712000pt;}
.y11a{bottom:295.233333pt;}
.y8d{bottom:296.129333pt;}
.y2a{bottom:298.605333pt;}
.y56{bottom:298.665333pt;}
.y148{bottom:300.269333pt;}
.y172{bottom:302.240000pt;}
.yd{bottom:309.452000pt;}
.y119{bottom:309.845333pt;}
.ybe{bottom:310.449333pt;}
.y8c{bottom:312.866667pt;}
.yeb{bottom:313.773333pt;}
.y29{bottom:314.505333pt;}
.y55{bottom:315.402667pt;}
.y147{bottom:317.006667pt;}
.y171{bottom:318.977333pt;}
.y118{bottom:324.457333pt;}
.ybd{bottom:327.186667pt;}
.yea{bottom:328.385333pt;}
.y146{bottom:329.161333pt;}
.y8b{bottom:329.604000pt;}
.y54{bottom:332.140000pt;}
.y145{bottom:333.744000pt;}
.y1a7{bottom:334.829333pt;}
.y170{bottom:335.714667pt;}
.y28{bottom:338.376000pt;}
.yc{bottom:343.809333pt;}
.ybc{bottom:343.924000pt;}
.y117{bottom:345.737333pt;}
.y8a{bottom:346.341333pt;}
.y53{bottom:348.877333pt;}
.ye9{bottom:349.665333pt;}
.y1a6{bottom:350.172000pt;}
.y144{bottom:350.480000pt;}
.y16f{bottom:352.452000pt;}
.y27{bottom:354.277333pt;}
.ybb{bottom:360.661333pt;}
.yb{bottom:362.706666pt;}
.y89{bottom:363.078667pt;}
.ye8{bottom:364.277333pt;}
.y1a5{bottom:365.513333pt;}
.y52{bottom:365.614667pt;}
.y116{bottom:367.016000pt;}
.y143{bottom:367.217333pt;}
.y16e{bottom:369.189333pt;}
.y26{bottom:370.177333pt;}
.yba{bottom:377.398667pt;}
.ye7{bottom:378.889333pt;}
.y142{bottom:379.373333pt;}
.y88{bottom:379.816000pt;}
.y1a4{bottom:380.856000pt;}
.y115{bottom:381.628000pt;}
.y51{bottom:382.352000pt;}
.y141{bottom:383.954667pt;}
.y16d{bottom:385.926667pt;}
.ye6{bottom:393.501333pt;}
.yb9{bottom:394.136000pt;}
.y25{bottom:395.376000pt;}
.y1a3{bottom:396.198667pt;}
.y114{bottom:396.240000pt;}
.y87{bottom:396.553333pt;}
.y140{bottom:397.550667pt;}
.y50{bottom:399.089333pt;}
.y13f{bottom:402.133333pt;}
.y16c{bottom:402.664000pt;}
.ye5{bottom:408.113333pt;}
.y113{bottom:410.852000pt;}
.yb8{bottom:410.873333pt;}
.y24{bottom:411.276000pt;}
.y1a2{bottom:411.541333pt;}
.y86{bottom:413.290667pt;}
.y4f{bottom:415.826667pt;}
.y16b{bottom:419.401333pt;}
.y112{bottom:425.464000pt;}
.y1a1{bottom:426.884000pt;}
.yb7{bottom:427.610667pt;}
.ye4{bottom:429.392000pt;}
.y85{bottom:430.028000pt;}
.y4e{bottom:432.564000pt;}
.y13e{bottom:434.810667pt;}
.y23{bottom:435.146667pt;}
.y16a{bottom:436.138667pt;}
.y111{bottom:440.076000pt;}
.y1a0{bottom:442.226667pt;}
.ye3{bottom:444.004000pt;}
.yb6{bottom:444.348000pt;}
.y84{bottom:446.765333pt;}
.y4d{bottom:449.301333pt;}
.y22{bottom:451.048000pt;}
.y13d{bottom:451.548000pt;}
.y169{bottom:452.876000pt;}
.y19f{bottom:457.569333pt;}
.yb5{bottom:461.085333pt;}
.y110{bottom:461.356000pt;}
.ya{bottom:462.990669pt;}
.y83{bottom:463.502667pt;}
.y4c{bottom:466.038667pt;}
.y21{bottom:466.948000pt;}
.y13c{bottom:468.285333pt;}
.y168{bottom:469.613333pt;}
.ye2{bottom:472.110667pt;}
.y19e{bottom:472.912000pt;}
.yb3{bottom:477.822667pt;}
.y9{bottom:478.990666pt;}
.y82{bottom:480.240000pt;}
.y10f{bottom:482.634667pt;}
.yb4{bottom:482.644000pt;}
.y4b{bottom:482.776000pt;}
.y20{bottom:482.848000pt;}
.y167{bottom:486.350667pt;}
.y19d{bottom:488.254667pt;}
.y8{bottom:494.990666pt;}
.yb2{bottom:496.180000pt;}
.y10e{bottom:497.246667pt;}
.y4a{bottom:499.513333pt;}
.y81{bottom:500.962667pt;}
.y166{bottom:503.088000pt;}
.y19c{bottom:503.596000pt;}
.ye1{bottom:505.092000pt;}
.y10d{bottom:511.858667pt;}
.yb1{bottom:512.917333pt;}
.y49{bottom:516.250667pt;}
.y13b{bottom:517.700000pt;}
.y19b{bottom:518.938667pt;}
.y165{bottom:519.825333pt;}
.ye0{bottom:521.829333pt;}
.yb0{bottom:529.654667pt;}
.y80{bottom:530.850667pt;}
.y48{bottom:532.988000pt;}
.y19a{bottom:534.281333pt;}
.y13a{bottom:534.437333pt;}
.y164{bottom:536.562667pt;}
.y10c{bottom:539.965333pt;}
.yaf{bottom:546.392000pt;}
.y7f{bottom:547.588000pt;}
.y199{bottom:549.624000pt;}
.ydf{bottom:551.737333pt;}
.y163{bottom:553.300000pt;}
.y47{bottom:553.710667pt;}
.yae{bottom:563.129333pt;}
.y7e{bottom:564.325333pt;}
.y198{bottom:564.966667pt;}
.y139{bottom:567.114667pt;}
.yde{bottom:568.474667pt;}
.y162{bottom:570.037333pt;}
.y10b{bottom:572.946667pt;}
.y7{bottom:573.786667pt;}
.yad{bottom:579.866667pt;}
.y197{bottom:580.309333pt;}
.y7d{bottom:581.062667pt;}
.y138{bottom:583.852000pt;}
.y161{bottom:586.774667pt;}
.y10a{bottom:589.684000pt;}
.y6{bottom:592.685334pt;}
.y196{bottom:595.652000pt;}
.yac{bottom:596.604000pt;}
.y7c{bottom:597.800000pt;}
.ydc{bottom:599.212000pt;}
.y137{bottom:600.589333pt;}
.y160{bottom:603.512000pt;}
.ydd{bottom:604.034667pt;}
.y109{bottom:606.421333pt;}
.y195{bottom:610.994667pt;}
.yab{bottom:613.341333pt;}
.y7b{bottom:614.537333pt;}
.y136{bottom:617.186667pt;}
.y135{bottom:617.326667pt;}
.y46{bottom:619.793333pt;}
.y15f{bottom:620.249333pt;}
.ydb{bottom:621.993333pt;}
.y108{bottom:623.158667pt;}
.y194{bottom:626.336000pt;}
.yaa{bottom:630.078667pt;}
.y7a{bottom:631.274667pt;}
.y134{bottom:633.924000pt;}
.y133{bottom:634.064000pt;}
.y15e{bottom:636.986667pt;}
.y193{bottom:641.678667pt;}
.y5{bottom:645.598667pt;}
.y79{bottom:648.012000pt;}
.y132{bottom:650.661333pt;}
.ya9{bottom:650.801333pt;}
.y45{bottom:653.028000pt;}
.y107{bottom:653.066667pt;}
.y15d{bottom:653.724000pt;}
.y192{bottom:657.021333pt;}
.yda{bottom:659.614667pt;}
.y78{bottom:664.749333pt;}
.y3{bottom:668.977329pt;}
.y106{bottom:669.804000pt;}
.y15c{bottom:670.461333pt;}
.y191{bottom:672.364000pt;}
.yd9{bottom:674.226667pt;}
.ya8{bottom:680.689333pt;}
.y77{bottom:681.485333pt;}
.y131{bottom:683.478667pt;}
.y44{bottom:686.264000pt;}
.y190{bottom:687.706667pt;}
.yd8{bottom:688.838667pt;}
.y15b{bottom:691.182667pt;}
.ya7{bottom:697.426667pt;}
.y76{bottom:698.222667pt;}
.y130{bottom:700.216000pt;}
.y105{bottom:700.541333pt;}
.y18f{bottom:703.049333pt;}
.yd7{bottom:703.450667pt;}
.y43{bottom:703.558667pt;}
.ya6{bottom:714.164000pt;}
.y75{bottom:714.960000pt;}
.y104{bottom:717.278667pt;}
.yd6{bottom:718.062667pt;}
.y18e{bottom:718.392000pt;}
.y42{bottom:720.853333pt;}
.y12f{bottom:720.938667pt;}
.y15a{bottom:721.070667pt;}
.ya5{bottom:730.901333pt;}
.y74{bottom:731.697333pt;}
.y18d{bottom:733.734667pt;}
.y103{bottom:734.016000pt;}
.y159{bottom:737.808000pt;}
.y41{bottom:738.149333pt;}
.yd5{bottom:739.342667pt;}
.ya4{bottom:747.638667pt;}
.y73{bottom:748.434667pt;}
.y18c{bottom:749.077333pt;}
.y102{bottom:750.753333pt;}
.y12e{bottom:750.826667pt;}
.y158{bottom:754.545333pt;}
.y40{bottom:755.444000pt;}
.yd4{bottom:760.621333pt;}
.ya3{bottom:764.376000pt;}
.y18b{bottom:764.418667pt;}
.y72{bottom:765.172000pt;}
.y101{bottom:767.490667pt;}
.y12d{bottom:767.564000pt;}
.y157{bottom:771.282667pt;}
.y3f{bottom:772.740000pt;}
.yd3{bottom:775.233333pt;}
.y18a{bottom:779.761333pt;}
.ya2{bottom:781.113333pt;}
.y2{bottom:781.661334pt;}
.y71{bottom:781.909333pt;}
.y100{bottom:784.228000pt;}
.y156{bottom:788.020000pt;}
.yd2{bottom:789.845333pt;}
.y3e{bottom:790.034667pt;}
.y189{bottom:795.104000pt;}
.ya1{bottom:797.850667pt;}
.y70{bottom:798.646667pt;}
.y12c{bottom:800.241333pt;}
.yff{bottom:800.965333pt;}
.y155{bottom:804.757333pt;}
.y188{bottom:810.446667pt;}
.yd1{bottom:811.125333pt;}
.ya0{bottom:814.448000pt;}
.y9f{bottom:814.586667pt;}
.y6f{bottom:815.384000pt;}
.y12b{bottom:816.978667pt;}
.yfe{bottom:817.702667pt;}
.y154{bottom:821.494667pt;}
.y3d{bottom:824.333333pt;}
.yd0{bottom:825.737333pt;}
.y187{bottom:825.789333pt;}
.y9e{bottom:831.324000pt;}
.y6e{bottom:832.121333pt;}
.y12a{bottom:833.716000pt;}
.yfd{bottom:834.440000pt;}
.y153{bottom:838.232000pt;}
.y3c{bottom:838.678667pt;}
.ycf{bottom:840.349333pt;}
.y186{bottom:841.132000pt;}
.y9d{bottom:848.061333pt;}
.y6d{bottom:848.858667pt;}
.y129{bottom:850.453333pt;}
.yfc{bottom:851.177333pt;}
.yce{bottom:854.960000pt;}
.y185{bottom:856.474667pt;}
.y3b{bottom:856.882667pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:865.596000pt;}
.y128{bottom:867.190667pt;}
.yfb{bottom:867.914667pt;}
.y9c{bottom:868.784000pt;}
.ycd{bottom:869.572000pt;}
.y3a{bottom:871.229333pt;}
.y184{bottom:871.817333pt;}
.y6b{bottom:882.333333pt;}
.y127{bottom:883.928000pt;}
.ycc{bottom:884.184000pt;}
.yfa{bottom:884.652000pt;}
.y183{bottom:891.144000pt;}
.y9b{bottom:898.672000pt;}
.y6a{bottom:899.070667pt;}
.ycb{bottom:905.464000pt;}
.y39{bottom:910.941333pt;}
.yf9{bottom:914.560000pt;}
.y9a{bottom:915.409333pt;}
.y69{bottom:915.808000pt;}
.y126{bottom:916.605333pt;}
.y182{bottom:921.032000pt;}
.yca{bottom:926.744000pt;}
.yf8{bottom:931.297333pt;}
.y68{bottom:932.545333pt;}
.y125{bottom:933.342667pt;}
.y99{bottom:936.132000pt;}
.y181{bottom:936.374667pt;}
.yc9{bottom:941.356000pt;}
.y38{bottom:946.425333pt;}
.y67{bottom:949.282667pt;}
.y180{bottom:951.717333pt;}
.yc8{bottom:955.966667pt;}
.yf7{bottom:962.034667pt;}
.y66{bottom:966.020000pt;}
.y17f{bottom:967.060000pt;}
.y37{bottom:971.530667pt;}
.y17e{bottom:982.402667pt;}
.y65{bottom:982.757333pt;}
.yc7{bottom:984.073333pt;}
.y17d{bottom:986.742667pt;}
.y35{bottom:1010.186667pt;}
.y64{bottom:1038.548000pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h18{height:29.397999pt;}
.h1b{height:29.599908pt;}
.h11{height:30.945242pt;}
.h16{height:31.157778pt;}
.h12{height:34.430976pt;}
.h13{height:34.813542pt;}
.h19{height:35.052646pt;}
.h1d{height:37.372000pt;}
.h14{height:38.256384pt;}
.h15{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h17{height:41.524400pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.365611pt;}
.h1a{height:48.885242pt;}
.h1c{height:48.890575pt;}
.h2{height:48.960000pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.hc{height:83.992000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:139.321730pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x73{left:76.346667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x77{left:200.137333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x78{left:232.421333pt;}
.x74{left:246.425333pt;}
.xa{left:250.204000pt;}
.x2b{left:251.253333pt;}
.x7e{left:258.200000pt;}
.x4e{left:261.014667pt;}
.x2c{left:264.537333pt;}
.x7f{left:265.654667pt;}
.x9{left:273.906667pt;}
.x51{left:276.877333pt;}
.x80{left:282.448000pt;}
.x39{left:285.540000pt;}
.x5d{left:289.304000pt;}
.x3a{left:291.669333pt;}
.x7b{left:292.608000pt;}
.x5e{left:294.161333pt;}
.x4d{left:296.189333pt;}
.x21{left:298.981333pt;}
.x22{left:312.265333pt;}
.x64{left:313.480000pt;}
.x55{left:318.190667pt;}
.x50{left:322.381333pt;}
.x5c{left:323.926667pt;}
.x34{left:326.508000pt;}
.x1b{left:333.802667pt;}
.x71{left:337.000000pt;}
.x1c{left:340.444000pt;}
.x46{left:341.468000pt;}
.x47{left:350.922667pt;}
.x58{left:358.025333pt;}
.x65{left:367.774667pt;}
.x59{left:370.544000pt;}
.x6c{left:371.886667pt;}
.x2d{left:373.606667pt;}
.xd{left:374.537333pt;}
.x48{left:377.564000pt;}
.x5a{left:379.544000pt;}
.xe{left:381.180000pt;}
.x5b{left:382.950667pt;}
.x6d{left:384.598667pt;}
.x2e{left:386.890667pt;}
.x53{left:387.905333pt;}
.x49{left:393.145333pt;}
.x70{left:400.318667pt;}
.x3{left:404.408000pt;}
.x4b{left:411.380000pt;}
.x56{left:413.060000pt;}
.x4c{left:414.416000pt;}
.x35{left:417.426667pt;}
.x62{left:424.120000pt;}
.x36{left:433.781333pt;}
.x3f{left:467.821333pt;}
.x27{left:474.008000pt;}
.x63{left:484.057333pt;}
.x28{left:487.290667pt;}
.x40{left:490.721333pt;}
.x66{left:495.888000pt;}
.x67{left:502.750667pt;}
.x4f{left:504.282667pt;}
.x54{left:507.138667pt;}
.x68{left:508.286667pt;}
.x4a{left:509.774667pt;}
.x2f{left:515.084000pt;}
.x17{left:516.777333pt;}
.x75{left:518.313333pt;}
.x11{left:520.648000pt;}
.x18{left:523.418667pt;}
.x23{left:526.809333pt;}
.x69{left:528.346667pt;}
.x6a{left:535.210667pt;}
.x81{left:538.082667pt;}
.x12{left:539.458667pt;}
.x32{left:541.508000pt;}
.x24{left:543.357333pt;}
.x30{left:545.306667pt;}
.x5f{left:546.468000pt;}
.x76{left:549.612000pt;}
.x6e{left:551.974667pt;}
.x38{left:553.768000pt;}
.x25{left:556.641333pt;}
.x6f{left:561.814667pt;}
.x13{left:565.696000pt;}
.x79{left:575.273333pt;}
.x33{left:576.794667pt;}
.x72{left:581.373333pt;}
.x52{left:582.860000pt;}
.x3b{left:586.905333pt;}
.x1d{left:588.260000pt;}
.x26{left:592.393333pt;}
.x60{left:596.442667pt;}
.x15{left:599.228000pt;}
.x1e{left:601.544000pt;}
.x3c{left:602.480000pt;}
.x16{left:605.869333pt;}
.x7a{left:607.557333pt;}
.x41{left:611.597333pt;}
.x57{left:613.736000pt;}
.xb{left:616.985333pt;}
.x7c{left:621.058667pt;}
.xc{left:623.628000pt;}
.x87{left:626.428000pt;}
.x42{left:639.094667pt;}
.x88{left:644.441333pt;}
.x7d{left:651.885333pt;}
.x85{left:653.045333pt;}
.x43{left:656.529333pt;}
.x44{left:662.296000pt;}
.x61{left:666.464000pt;}
.x86{left:676.956000pt;}
.x45{left:684.849333pt;}
.x89{left:690.093333pt;}
.x37{left:693.341333pt;}
.x82{left:694.248000pt;}
.x19{left:697.554667pt;}
.xf{left:700.033333pt;}
.x1a{left:704.196000pt;}
.x10{left:706.674667pt;}
.x6b{left:709.590667pt;}
.x1f{left:712.385333pt;}
.x84{left:720.236000pt;}
.x83{left:723.762667pt;}
.x20{left:725.669333pt;}
.x29{left:728.082667pt;}
.x3d{left:731.717333pt;}
.x31{left:738.893333pt;}
.x14{left:740.133333pt;}
.x2a{left:741.365333pt;}
.x3e{left:743.973333pt;}
}




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