
    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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6a2caa54a88923c606eb92f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_e4f3cd0a0a5d96b88e455e3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_6c874939ab8299707722b85c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_3f4735e1e03d01974d521a84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_bae146e36c8514bf1bd6c75e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d2a4be9c615ac6cb5dd3e1ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_eed341487f1afcf1fb82ae6d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.663000;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_2509d3c4620608ec75089aa9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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_0b8397ed429e7fef049f4a51.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_501233530d07ac79e8195ea7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e8bf22a87bd59a5425123a2f.woff2')format("woff");}.fff{font-family:fff;line-height:0.190000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.mf{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);}
.m12{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);}
.m18{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);}
.m26{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);}
.m9{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);}
.m14{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);}
.mb{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);}
.m13{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);}
.m8{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);}
.m25{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);}
.m1f{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);}
.m1b{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);}
.m24{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);}
.m19{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);}
.m22{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);}
.me{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);}
.m10{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);}
.m6{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);}
.md{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);}
.m3{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);}
.m1c{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);}
.m5{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);}
.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);}
.m1a{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.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);}
.m21{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);}
.m23{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);}
.m1e{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);}
.m1d{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);}
.m11{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);}
.m16{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);}
.m4{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);}
.ma{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);}
.m2{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);}
.mc{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);}
.v7{vertical-align:-38.550000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-5.670000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.312000px;}
.v9{vertical-align:13.404000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:37.488000px;}
.v5{vertical-align:41.706000px;}
.v4{vertical-align:45.942000px;}
.lsd{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000566px;}
.ls23{letter-spacing:0.000741px;}
.ls20{letter-spacing:0.001036px;}
.ls1f{letter-spacing:0.001526px;}
.ls21{letter-spacing:0.001746px;}
.ls6{letter-spacing:0.001831px;}
.ls1b{letter-spacing:0.001876px;}
.ls1e{letter-spacing:0.001902px;}
.ls24{letter-spacing:0.002074px;}
.ls22{letter-spacing:0.002544px;}
.ls1c{letter-spacing:0.003752px;}
.ls10{letter-spacing:0.004905px;}
.ls13{letter-spacing:0.059776px;}
.lse{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls5{letter-spacing:10.461300px;}
.ls17{letter-spacing:11.951700px;}
.lsc{letter-spacing:11.954850px;}
.ls28{letter-spacing:13.201975px;}
.lsb{letter-spacing:13.265992px;}
.lsa{letter-spacing:13.395035px;}
.ls1d{letter-spacing:13.448400px;}
.ls25{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.490159px;}
.ls1a{letter-spacing:14.700551px;}
.ls12{letter-spacing:14.910159px;}
.ls2{letter-spacing:14.944200px;}
.ls29{letter-spacing:15.079812px;}
.ls9{letter-spacing:16.853741px;}
.lsf{letter-spacing:17.423965px;}
.ls3{letter-spacing:17.935200px;}
.ls11{letter-spacing:20.112200px;}
.ls0{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls14{letter-spacing:135.645746px;}
.ls15{letter-spacing:147.603746px;}
.ls16{letter-spacing:159.555746px;}
.ls19{letter-spacing:294.154090px;}
.ls18{letter-spacing:307.606090px;}
.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;}
}
.ws4{word-spacing:-14.943900px;}
.ws71{word-spacing:-13.449600px;}
.ws32{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws51{word-spacing:-3.048556px;}
.ws99{word-spacing:-2.851315px;}
.ws82{word-spacing:-2.510575px;}
.ws9e{word-spacing:-2.420928px;}
.wsa0{word-spacing:-2.313331px;}
.ws9f{word-spacing:-2.205734px;}
.ws45{word-spacing:-2.151922px;}
.ws4e{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws9a{word-spacing:-1.882944px;}
.ws4f{word-spacing:-1.554166px;}
.ws8f{word-spacing:-1.434614px;}
.ws6{word-spacing:-1.322630px;}
.ws2e{word-spacing:-1.315063px;}
.ws17{word-spacing:-1.291162px;}
.ws8c{word-spacing:-1.195512px;}
.ws90{word-spacing:-1.135736px;}
.ws50{word-spacing:-1.016185px;}
.wsb8{word-spacing:-0.860774px;}
.ws53{word-spacing:-0.836858px;}
.ws81{word-spacing:-0.777083px;}
.ws92{word-spacing:-0.597756px;}
.ws94{word-spacing:-0.537980px;}
.ws83{word-spacing:-0.478205px;}
.ws88{word-spacing:-0.418429px;}
.ws2d{word-spacing:-0.358654px;}
.wsac{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.ws76{word-spacing:-0.268992px;}
.ws3c{word-spacing:-0.239102px;}
.ws1b{word-spacing:-0.215194px;}
.ws40{word-spacing:-0.179327px;}
.ws98{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws21{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws59{word-spacing:-0.047821px;}
.wsaa{word-spacing:-0.027965px;}
.wsa1{word-spacing:-0.026621px;}
.wsa4{word-spacing:-0.026179px;}
.wsa2{word-spacing:-0.026112px;}
.wsba{word-spacing:-0.023750px;}
.wsbd{word-spacing:-0.007459px;}
.ws1{word-spacing:-0.003925px;}
.ws5{word-spacing:-0.001192px;}
.wsa{word-spacing:-0.000802px;}
.ws0{word-spacing:0.000000px;}
.wsb5{word-spacing:0.000806px;}
.wsa3{word-spacing:0.001978px;}
.ws97{word-spacing:0.053798px;}
.ws54{word-spacing:0.059776px;}
.ws9d{word-spacing:0.107597px;}
.ws30{word-spacing:0.119551px;}
.ws6b{word-spacing:0.161395px;}
.ws2a{word-spacing:0.179327px;}
.wsc{word-spacing:0.209214px;}
.ws19{word-spacing:0.215194px;}
.ws43{word-spacing:0.239102px;}
.wse{word-spacing:0.292900px;}
.ws1d{word-spacing:0.322790px;}
.ws4a{word-spacing:0.358654px;}
.wsa7{word-spacing:0.376589px;}
.ws8d{word-spacing:0.418429px;}
.ws1c{word-spacing:0.484186px;}
.ws8e{word-spacing:0.597756px;}
.ws4c{word-spacing:0.657532px;}
.ws3f{word-spacing:0.777083px;}
.wsb0{word-spacing:0.860774px;}
.wsb3{word-spacing:1.022170px;}
.ws47{word-spacing:1.075961px;}
.ws9b{word-spacing:1.129766px;}
.ws2c{word-spacing:1.135736px;}
.wsaf{word-spacing:1.183565px;}
.ws4b{word-spacing:1.195512px;}
.wsbe{word-spacing:1.237363px;}
.ws96{word-spacing:1.255288px;}
.wsb2{word-spacing:1.344960px;}
.ws26{word-spacing:1.434614px;}
.ws44{word-spacing:1.673717px;}
.ws8a{word-spacing:1.733492px;}
.ws3b{word-spacing:1.853044px;}
.ws38{word-spacing:1.972595px;}
.wsd{word-spacing:2.008454px;}
.ws36{word-spacing:2.151922px;}
.ws3e{word-spacing:2.211697px;}
.ws49{word-spacing:2.271473px;}
.ws80{word-spacing:2.331248px;}
.ws3a{word-spacing:2.450800px;}
.ws9{word-spacing:2.510568px;}
.ws55{word-spacing:2.510575px;}
.ws27{word-spacing:2.570351px;}
.ws95{word-spacing:2.749678px;}
.ws37{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws48{word-spacing:3.048556px;}
.ws7f{word-spacing:3.108331px;}
.wsb7{word-spacing:3.174106px;}
.wsa9{word-spacing:3.219706px;}
.wsb4{word-spacing:3.224131px;}
.ws9c{word-spacing:3.224822px;}
.wsb6{word-spacing:3.226253px;}
.wsae{word-spacing:3.227904px;}
.wsb9{word-spacing:3.281702px;}
.ws3d{word-spacing:3.347434px;}
.ws1f{word-spacing:3.389299px;}
.ws93{word-spacing:3.407209px;}
.ws85{word-spacing:3.466985px;}
.wsbc{word-spacing:3.496896px;}
.wsbb{word-spacing:3.518640px;}
.ws41{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws35{word-spacing:3.706087px;}
.ws46{word-spacing:3.765863px;}
.ws22{word-spacing:3.765888px;}
.wsad{word-spacing:3.819686px;}
.ws52{word-spacing:3.945190px;}
.ws18{word-spacing:3.981082px;}
.ws70{word-spacing:4.034880px;}
.ws91{word-spacing:4.064741px;}
.ws4d{word-spacing:4.184292px;}
.ws1e{word-spacing:4.312424px;}
.ws6f{word-spacing:4.357670px;}
.ws87{word-spacing:4.483170px;}
.wsa8{word-spacing:4.788058px;}
.ws20{word-spacing:5.110848px;}
.ws58{word-spacing:5.140702px;}
.ws2b{word-spacing:5.320028px;}
.ws34{word-spacing:5.618906px;}
.ws33{word-spacing:5.678682px;}
.ws56{word-spacing:5.798233px;}
.ws14{word-spacing:6.067206px;}
.ws15{word-spacing:6.150892px;}
.ws89{word-spacing:6.336214px;}
.wsb1{word-spacing:6.348211px;}
.ws24{word-spacing:6.455765px;}
.ws31{word-spacing:6.754643px;}
.ws29{word-spacing:6.874194px;}
.ws84{word-spacing:6.993745px;}
.ws28{word-spacing:7.352399px;}
.ws86{word-spacing:7.412174px;}
.wsa6{word-spacing:7.424179px;}
.wsa5{word-spacing:7.434750px;}
.ws57{word-spacing:7.770828px;}
.ws7e{word-spacing:8.069706px;}
.ws39{word-spacing:8.308808px;}
.ws12{word-spacing:8.661460px;}
.ws8b{word-spacing:9.265218px;}
.ws42{word-spacing:14.645022px;}
.ws8{word-spacing:15.483541px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.ws11{word-spacing:17.699504px;}
.ws13{word-spacing:27.448877px;}
.wsab{word-spacing:48.392400px;}
.ws5f{word-spacing:70.583206px;}
.ws68{word-spacing:82.538356px;}
.ws5b{word-spacing:124.477022px;}
.ws5d{word-spacing:134.662810px;}
.ws5a{word-spacing:143.229004px;}
.ws61{word-spacing:146.617960px;}
.ws5e{word-spacing:153.169382px;}
.ws66{word-spacing:158.573110px;}
.ws7b{word-spacing:163.009152px;}
.ws73{word-spacing:169.787750px;}
.ws6a{word-spacing:170.528260px;}
.ws7a{word-spacing:207.879888px;}
.ws74{word-spacing:210.413011px;}
.ws7c{word-spacing:233.216064px;}
.ws67{word-spacing:259.168500px;}
.ws72{word-spacing:268.776806px;}
.ws62{word-spacing:271.120800px;}
.ws65{word-spacing:276.643028px;}
.ws69{word-spacing:278.655958px;}
.ws63{word-spacing:289.077740px;}
.ws75{word-spacing:290.027174px;}
.ws5c{word-spacing:295.512451px;}
.ws64{word-spacing:310.433536px;}
.ws60{word-spacing:327.572906px;}
.ws79{word-spacing:391.168166px;}
.ws77{word-spacing:404.617766px;}
.ws78{word-spacing:418.067366px;}
.ws6c{word-spacing:419.627520px;}
.ws6d{word-spacing:520.768512px;}
.ws7d{word-spacing:540.028339px;}
.ws6e{word-spacing:547.667712px;}
._3{margin-left:-6.635092px;}
._9{margin-left:-5.260266px;}
._a{margin-left:-3.538724px;}
._4{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._5{width:1.091170px;}
._2{width:3.002279px;}
._29{width:4.423394px;}
._0{width:10.165172px;}
._14{width:11.955150px;}
._6{width:12.972863px;}
._43{width:14.866232px;}
._c{width:16.516109px;}
._b{width:17.807270px;}
._1b{width:18.829314px;}
._f{width:19.905408px;}
._1c{width:21.041011px;}
._17{width:22.057196px;}
._11{width:23.598425px;}
._1a{width:24.781000px;}
._7{width:25.946136px;}
._d{width:27.329587px;}
._10{width:28.405555px;}
._18{width:30.186678px;}
._e{width:31.579661px;}
._8{width:32.637384px;}
._12{width:35.002627px;}
._41{width:38.136833px;}
._13{width:39.332345px;}
._40{width:41.424491px;}
._19{width:43.393786px;}
._44{width:61.868160px;}
._42{width:88.767360px;}
._1d{width:102.814290px;}
._21{width:108.434728px;}
._20{width:136.192444px;}
._1e{width:152.093761px;}
._3f{width:176.566349px;}
._3c{width:181.880413px;}
._22{width:187.985864px;}
._39{width:190.015949px;}
._2b{width:201.247844px;}
._2c{width:205.671283px;}
._1f{width:223.610199px;}
._3d{width:228.685021px;}
._3e{width:233.216064px;}
._2f{width:243.760550px;}
._3b{width:246.665664px;}
._30{width:283.033382px;}
._3a{width:287.486672px;}
._31{width:307.995840px;}
._33{width:361.148659px;}
._2e{width:368.572838px;}
._2d{width:382.076237px;}
._2a{width:383.992590px;}
._26{width:400.206298px;}
._34{width:418.067366px;}
._15{width:419.405000px;}
._32{width:431.516966px;}
._23{width:437.542387px;}
._35{width:451.307329px;}
._24{width:495.537062px;}
._28{width:502.680272px;}
._25{width:524.857190px;}
._38{width:543.571585px;}
._27{width:561.117312px;}
._37{width:632.280618px;}
._36{width:638.587008px;}
._16{width:2055.535301px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.yb{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y4f{bottom:31.890000px;}
.y2{bottom:37.114269px;}
.y115{bottom:88.993500px;}
.y16d{bottom:93.381000px;}
.y26{bottom:102.823500px;}
.yb4{bottom:104.005500px;}
.y143{bottom:106.695000px;}
.y4e{bottom:107.104500px;}
.y84{bottom:107.125500px;}
.y114{bottom:107.823000px;}
.y16c{bottom:110.641500px;}
.y25{bottom:120.711000px;}
.yb3{bottom:122.835000px;}
.y142{bottom:125.524500px;}
.y4d{bottom:125.934000px;}
.y83{bottom:125.955000px;}
.y113{bottom:126.652500px;}
.y16b{bottom:127.902000px;}
.ye5{bottom:134.316000px;}
.y24{bottom:138.600000px;}
.yb2{bottom:141.664500px;}
.y141{bottom:144.354000px;}
.y4c{bottom:144.763500px;}
.y82{bottom:144.784500px;}
.y16a{bottom:145.161000px;}
.y112{bottom:145.482000px;}
.ye4{bottom:153.145500px;}
.y23{bottom:156.487500px;}
.yb1{bottom:160.494000px;}
.y169{bottom:162.421500px;}
.y140{bottom:163.183500px;}
.y4b{bottom:163.593000px;}
.y81{bottom:163.614000px;}
.y111{bottom:164.311500px;}
.ye3{bottom:171.975000px;}
.y22{bottom:174.375000px;}
.y168{bottom:179.682000px;}
.y13f{bottom:182.013000px;}
.y4a{bottom:182.422500px;}
.y80{bottom:182.443500px;}
.yb0{bottom:183.807000px;}
.y110{bottom:187.624500px;}
.ye2{bottom:190.804500px;}
.y21{bottom:192.264000px;}
.y167{bottom:196.942500px;}
.y13e{bottom:200.842500px;}
.y49{bottom:201.252000px;}
.y7f{bottom:201.273000px;}
.ye1{bottom:209.634000px;}
.y20{bottom:210.151500px;}
.y166{bottom:214.203000px;}
.yaf{bottom:217.431000px;}
.y13d{bottom:219.672000px;}
.y48{bottom:220.081500px;}
.y10f{bottom:221.248500px;}
.y7e{bottom:224.586000px;}
.y1f{bottom:228.039000px;}
.ye0{bottom:228.463500px;}
.y165{bottom:231.463500px;}
.yae{bottom:236.260500px;}
.y13c{bottom:238.501500px;}
.y47{bottom:238.911000px;}
.y10e{bottom:240.078000px;}
.y164{bottom:248.724000px;}
.yad{bottom:255.090000px;}
.y13b{bottom:257.331000px;}
.y46{bottom:257.740500px;}
.y7d{bottom:258.210000px;}
.y10d{bottom:258.907500px;}
.y163{bottom:265.984500px;}
.ydf{bottom:270.606000px;}
.yac{bottom:273.919500px;}
.y13a{bottom:276.160500px;}
.y45{bottom:276.570000px;}
.y10c{bottom:277.737000px;}
.y7c{bottom:281.521500px;}
.y162{bottom:283.243500px;}
.yab{bottom:292.749000px;}
.yde{bottom:293.352000px;}
.y139{bottom:294.990000px;}
.y44{bottom:295.399500px;}
.y161{bottom:300.504000px;}
.y7b{bottom:301.696500px;}
.y1e{bottom:307.299000px;}
.ydd{bottom:309.790500px;}
.yaa{bottom:311.578500px;}
.y138{bottom:313.819500px;}
.y43{bottom:314.229000px;}
.y160{bottom:322.248000px;}
.y10b{bottom:322.870500px;}
.y1d{bottom:325.186500px;}
.ydc{bottom:326.229000px;}
.ya9{bottom:330.408000px;}
.y137{bottom:332.649000px;}
.y42{bottom:333.058500px;}
.y7a{bottom:335.320500px;}
.y10a{bottom:339.309000px;}
.ydb{bottom:342.667500px;}
.y1c{bottom:343.074000px;}
.ya8{bottom:349.237500px;}
.y136{bottom:351.478500px;}
.y41{bottom:351.888000px;}
.y79{bottom:354.150000px;}
.y109{bottom:355.746000px;}
.y15f{bottom:355.872000px;}
.y1b{bottom:360.963000px;}
.yda{bottom:366.309000px;}
.ya7{bottom:368.065500px;}
.y135{bottom:370.308000px;}
.y40{bottom:370.717500px;}
.y108{bottom:372.184500px;}
.y78{bottom:372.979500px;}
.y15e{bottom:382.413000px;}
.ya6{bottom:386.895000px;}
.y107{bottom:388.623000px;}
.y134{bottom:389.137500px;}
.y3f{bottom:389.547000px;}
.y77{bottom:391.809000px;}
.yd9{bottom:397.927500px;}
.y1a{bottom:399.024000px;}
.y15d{bottom:399.987000px;}
.y106{bottom:405.061500px;}
.ya5{bottom:405.724500px;}
.y133{bottom:407.967000px;}
.y3e{bottom:408.376500px;}
.y76{bottom:410.638500px;}
.y19{bottom:416.913000px;}
.yd8{bottom:417.160500px;}
.ya4{bottom:424.554000px;}
.y15c{bottom:426.526500px;}
.y132{bottom:426.796500px;}
.y3d{bottom:427.206000px;}
.y105{bottom:428.703000px;}
.y75{bottom:429.468000px;}
.y18{bottom:434.800500px;}
.y104{bottom:442.857000px;}
.ya3{bottom:443.383500px;}
.y15b{bottom:444.102000px;}
.y131{bottom:445.626000px;}
.y74{bottom:448.297500px;}
.y3c{bottom:450.517500px;}
.ya2{bottom:462.213000px;}
.y130{bottom:464.454000px;}
.y190{bottom:466.024500px;}
.yd7{bottom:466.372500px;}
.y73{bottom:467.127000px;}
.y17{bottom:470.622000px;}
.y15a{bottom:470.641500px;}
.yd6{bottom:475.102500px;}
.y12f{bottom:483.283500px;}
.y103{bottom:483.963000px;}
.ya1{bottom:485.526000px;}
.y72{bottom:485.956500px;}
.y16{bottom:488.509500px;}
.y159{bottom:497.182500px;}
.y18f{bottom:500.544000px;}
.y12e{bottom:502.113000px;}
.yd5{bottom:504.687000px;}
.y71{bottom:504.786000px;}
.y15{bottom:506.397000px;}
.yd4{bottom:513.418500px;}
.y158{bottom:514.756500px;}
.y18e{bottom:517.804500px;}
.ya0{bottom:519.150000px;}
.y102{bottom:520.738500px;}
.y12d{bottom:520.942500px;}
.y3b{bottom:522.165000px;}
.y70{bottom:523.615500px;}
.y157{bottom:532.330500px;}
.y18d{bottom:535.065000px;}
.y9f{bottom:537.979500px;}
.y101{bottom:539.568000px;}
.y12c{bottom:539.772000px;}
.y3a{bottom:541.621500px;}
.y14{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.yd3{bottom:543.001500px;}
.yd2{bottom:551.733000px;}
.y18c{bottom:552.325500px;}
.ycc{bottom:553.896000px;}
.yce{bottom:554.079000px;}
.y9e{bottom:556.809000px;}
.y100{bottom:558.397500px;}
.y12b{bottom:558.601500px;}
.y156{bottom:558.871500px;}
.y13{bottom:560.106000px;}
.y6e{bottom:561.274500px;}
.y18b{bottom:569.586000px;}
.y9d{bottom:575.638500px;}
.yff{bottom:577.227000px;}
.y12a{bottom:577.431000px;}
.y12{bottom:577.993500px;}
.y39{bottom:579.012000px;}
.y6d{bottom:580.104000px;}
.yd1{bottom:581.317500px;}
.y155{bottom:585.411000px;}
.y18a{bottom:586.846500px;}
.yd0{bottom:588.807000px;}
.y9c{bottom:594.468000px;}
.y11{bottom:595.882500px;}
.yfe{bottom:596.056500px;}
.y129{bottom:596.260500px;}
.y38{bottom:598.468500px;}
.y6c{bottom:598.932000px;}
.y154{bottom:602.986500px;}
.y189{bottom:604.107000px;}
.y9b{bottom:613.297500px;}
.y10{bottom:613.770000px;}
.yfd{bottom:614.886000px;}
.y128{bottom:615.090000px;}
.y6b{bottom:617.761500px;}
.y37{bottom:617.925000px;}
.ycf{bottom:619.632000px;}
.y153{bottom:620.560500px;}
.y188{bottom:621.366000px;}
.ycd{bottom:627.304500px;}
.yf{bottom:631.657500px;}
.yfc{bottom:633.715500px;}
.y127{bottom:633.919500px;}
.y6a{bottom:636.591000px;}
.y9a{bottom:636.610500px;}
.y36{bottom:637.383000px;}
.y152{bottom:638.134500px;}
.y187{bottom:638.626500px;}
.ye{bottom:649.546500px;}
.y126{bottom:652.749000px;}
.y69{bottom:655.420500px;}
.y151{bottom:655.708500px;}
.y186{bottom:655.887000px;}
.y35{bottom:656.839500px;}
.ycb{bottom:657.948000px;}
.yca{bottom:666.678000px;}
.yd{bottom:667.434000px;}
.y99{bottom:670.234500px;}
.y125{bottom:671.578500px;}
.y185{bottom:673.147500px;}
.y150{bottom:673.282500px;}
.y68{bottom:674.250000px;}
.yfb{bottom:675.528000px;}
.y34{bottom:676.296000px;}
.y98{bottom:689.064000px;}
.ya{bottom:689.805055px;}
.y124{bottom:690.408000px;}
.y67{bottom:693.079500px;}
.y33{bottom:695.754000px;}
.yc9{bottom:696.262500px;}
.yfa{bottom:698.275500px;}
.yc8{bottom:703.752000px;}
.y184{bottom:707.668500px;}
.y97{bottom:707.892000px;}
.y14f{bottom:708.789000px;}
.y123{bottom:709.237500px;}
.y66{bottom:711.909000px;}
.yf9{bottom:714.714000px;}
.y32{bottom:715.210500px;}
.y183{bottom:724.929000px;}
.yc2{bottom:726.583500px;}
.y96{bottom:726.721500px;}
.yc4{bottom:726.766500px;}
.y14e{bottom:727.618500px;}
.y122{bottom:728.067000px;}
.y65{bottom:730.738500px;}
.yf8{bottom:731.152500px;}
.yc7{bottom:734.577000px;}
.y31{bottom:734.668500px;}
.y182{bottom:742.189500px;}
.yc6{bottom:743.308500px;}
.y95{bottom:745.551000px;}
.y14d{bottom:746.448000px;}
.y121{bottom:746.896500px;}
.yf7{bottom:747.591000px;}
.y64{bottom:749.568000px;}
.y30{bottom:754.125000px;}
.y181{bottom:759.450000px;}
.yf6{bottom:764.029500px;}
.y14c{bottom:765.277500px;}
.y120{bottom:765.726000px;}
.y63{bottom:768.397500px;}
.y94{bottom:768.864000px;}
.yc5{bottom:772.893000px;}
.y2f{bottom:773.581500px;}
.y180{bottom:776.709000px;}
.yc3{bottom:781.623000px;}
.y14b{bottom:784.107000px;}
.y11f{bottom:784.555500px;}
.y62{bottom:787.227000px;}
.yf5{bottom:787.669500px;}
.y2e{bottom:793.039500px;}
.y17f{bottom:793.969500px;}
.y93{bottom:802.488000px;}
.y14a{bottom:802.936500px;}
.y11e{bottom:803.385000px;}
.y61{bottom:806.056500px;}
.yc1{bottom:811.207500px;}
.y17e{bottom:811.230000px;}
.y2d{bottom:812.496000px;}
.yc0{bottom:818.878500px;}
.yf4{bottom:819.289500px;}
.y92{bottom:821.317500px;}
.y149{bottom:821.766000px;}
.y11d{bottom:822.214500px;}
.y60{bottom:824.886000px;}
.y17d{bottom:828.490500px;}
.y2c{bottom:831.952500px;}
.yf3{bottom:838.522500px;}
.y91{bottom:840.147000px;}
.y148{bottom:840.595500px;}
.ybc{bottom:840.654000px;}
.ybe{bottom:840.756000px;}
.y11c{bottom:841.044000px;}
.y5f{bottom:843.715500px;}
.y17c{bottom:845.751000px;}
.ybf{bottom:849.522000px;}
.ybd{bottom:857.194500px;}
.y90{bottom:858.976500px;}
.y147{bottom:859.425000px;}
.y11b{bottom:859.873500px;}
.y5e{bottom:862.545000px;}
.y17b{bottom:863.011500px;}
.y2b{bottom:870.538500px;}
.yf2{bottom:875.298000px;}
.y8f{bottom:877.806000px;}
.y146{bottom:878.254500px;}
.y11a{bottom:878.703000px;}
.y17a{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.y2a{bottom:886.678500px;}
.ybb{bottom:887.838000px;}
.yf1{bottom:894.127500px;}
.yba{bottom:896.959500px;}
.y145{bottom:897.084000px;}
.y119{bottom:897.532500px;}
.y5c{bottom:900.204000px;}
.y8e{bottom:901.119000px;}
.yb9{bottom:906.994500px;}
.y29{bottom:907.158000px;}
.y178{bottom:914.791500px;}
.y179{bottom:914.793000px;}
.y118{bottom:916.362000px;}
.y28{bottom:918.957000px;}
.y5b{bottom:919.033500px;}
.y144{bottom:920.397000px;}
.y177{bottom:932.052000px;}
.y8d{bottom:934.743000px;}
.y117{bottom:935.191500px;}
.yb8{bottom:935.745000px;}
.yf0{bottom:935.941500px;}
.y5a{bottom:937.863000px;}
.y27{bottom:939.436500px;}
.y176{bottom:949.312500px;}
.y8c{bottom:953.572500px;}
.y116{bottom:954.021000px;}
.y59{bottom:956.692500px;}
.yef{bottom:958.687500px;}
.yee{bottom:965.754000px;}
.y175{bottom:966.573000px;}
.y8b{bottom:972.402000px;}
.yb7{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.y9{bottom:979.630500px;}
.yea{bottom:982.192500px;}
.y174{bottom:983.833500px;}
.yed{bottom:991.564500px;}
.yb6{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.y8a{bottom:995.713500px;}
.y8{bottom:998.460000px;}
.yeb{bottom:998.631000px;}
.y173{bottom:1001.094000px;}
.yec{bottom:1008.003000px;}
.yb5{bottom:1010.508000px;}
.y56{bottom:1013.181000px;}
.y172{bottom:1018.354500px;}
.y89{bottom:1029.337500px;}
.ye9{bottom:1031.644500px;}
.y55{bottom:1032.010500px;}
.y171{bottom:1035.615000px;}
.y7{bottom:1041.199500px;}
.y88{bottom:1048.167000px;}
.y54{bottom:1050.840000px;}
.y170{bottom:1052.875500px;}
.ye8{bottom:1055.284500px;}
.y87{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y16f{bottom:1070.134500px;}
.y86{bottom:1085.826000px;}
.ye7{bottom:1086.904500px;}
.y16e{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y5{bottom:1097.688000px;}
.y85{bottom:1104.655500px;}
.ye6{bottom:1106.137500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.h15{height:27.855430px;}
.hb{height:30.461558px;}
.h16{height:30.582721px;}
.hc{height:30.712615px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h17{height:34.574294px;}
.he{height:34.813397px;}
.h14{height:35.100320px;}
.h1f{height:37.605082px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h3{height:39.402747px;}
.h11{height:39.488026px;}
.h4{height:41.001535px;}
.h12{height:43.217759px;}
.h13{height:43.516637px;}
.h5{height:43.875290px;}
.h1b{height:44.125397px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.h1a{height:76.806320px;}
.h1e{height:76.840243px;}
.h1d{height:76.976026px;}
.h6{height:77.792486px;}
.h18{height:81.042320px;}
.h19{height:81.048320px;}
.h1c{height:81.774320px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:59.014071px;}
.x5d{left:86.272500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x45{left:259.863000px;}
.x3e{left:263.535000px;}
.x50{left:265.705500px;}
.x39{left:267.223500px;}
.x5{left:271.221000px;}
.x44{left:281.058000px;}
.x9{left:282.786000px;}
.x4b{left:290.614500px;}
.x4f{left:291.858000px;}
.x35{left:294.217500px;}
.x41{left:301.693500px;}
.x46{left:306.070500px;}
.x18{left:308.016000px;}
.x7{left:309.250500px;}
.x43{left:311.979000px;}
.x1c{left:316.864500px;}
.x8{left:321.207000px;}
.x19{left:322.960500px;}
.x1d{left:331.807500px;}
.x2e{left:336.354000px;}
.x53{left:345.093000px;}
.x24{left:348.628500px;}
.x4c{left:356.604000px;}
.x26{left:357.780000px;}
.x54{left:360.036000px;}
.x25{left:363.573000px;}
.x3f{left:366.745500px;}
.x27{left:372.724500px;}
.x3a{left:378.019500px;}
.x40{left:386.632500px;}
.x5a{left:392.040000px;}
.x3b{left:395.563500px;}
.x59{left:399.352500px;}
.xa{left:405.046500px;}
.xb{left:412.518000px;}
.x3c{left:414.679500px;}
.x36{left:415.689000px;}
.x3d{left:420.016500px;}
.x2a{left:424.336500px;}
.x5c{left:429.363000px;}
.x2c{left:435.214500px;}
.x2b{left:439.281000px;}
.x2d{left:450.157500px;}
.x42{left:457.207500px;}
.xc{left:460.504500px;}
.xd{left:467.976000px;}
.xe{left:471.786000px;}
.xf{left:479.259000px;}
.x28{left:487.639500px;}
.x5b{left:490.362000px;}
.x48{left:491.370000px;}
.x29{left:502.582500px;}
.x47{left:529.354500px;}
.x38{left:531.481500px;}
.x49{left:538.206000px;}
.x20{left:541.096500px;}
.x4a{left:549.040500px;}
.x51{left:550.533000px;}
.x4d{left:551.844000px;}
.x57{left:554.503500px;}
.x21{left:556.039500px;}
.x58{left:569.446500px;}
.x34{left:574.402500px;}
.x2f{left:579.052500px;}
.x32{left:582.940500px;}
.x30{left:587.670000px;}
.x10{left:595.704000px;}
.x11{left:603.175500px;}
.x12{left:606.987000px;}
.x13{left:614.458500px;}
.x4e{left:628.075500px;}
.x64{left:633.256500px;}
.x65{left:640.167000px;}
.x5e{left:641.430000px;}
.x5f{left:648.339000px;}
.x62{left:666.184500px;}
.x52{left:668.443500px;}
.x33{left:675.787500px;}
.x37{left:683.557500px;}
.x14{left:686.913000px;}
.x63{left:693.084000px;}
.x15{left:694.384500px;}
.x60{left:744.021000px;}
.x1e{left:748.195500px;}
.x22{left:754.204500px;}
.x1f{left:763.138500px;}
.x55{left:767.641500px;}
.x23{left:769.147500px;}
.x61{left:770.920500px;}
.x56{left:782.584500px;}
.x31{left:786.433500px;}
.x66{left:789.271500px;}
.x16{left:795.307500px;}
.x17{left:802.779000px;}
.x67{left:816.171000px;}
.x1a{left:817.698000px;}
.x1b{left:832.642500px;}
@media print{
.v7{vertical-align:-34.266667pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-5.040000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.277333pt;}
.v9{vertical-align:11.914667pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:33.322667pt;}
.v5{vertical-align:37.072000pt;}
.v4{vertical-align:40.837333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000503pt;}
.ls23{letter-spacing:0.000659pt;}
.ls20{letter-spacing:0.000921pt;}
.ls1f{letter-spacing:0.001357pt;}
.ls21{letter-spacing:0.001552pt;}
.ls6{letter-spacing:0.001628pt;}
.ls1b{letter-spacing:0.001668pt;}
.ls1e{letter-spacing:0.001691pt;}
.ls24{letter-spacing:0.001843pt;}
.ls22{letter-spacing:0.002262pt;}
.ls1c{letter-spacing:0.003335pt;}
.ls10{letter-spacing:0.004360pt;}
.ls13{letter-spacing:0.053134pt;}
.lse{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls5{letter-spacing:9.298933pt;}
.ls17{letter-spacing:10.623733pt;}
.lsc{letter-spacing:10.626533pt;}
.ls28{letter-spacing:11.735089pt;}
.lsb{letter-spacing:11.791993pt;}
.lsa{letter-spacing:11.906697pt;}
.ls1d{letter-spacing:11.954133pt;}
.ls25{letter-spacing:11.959467pt;}
.ls26{letter-spacing:11.991252pt;}
.ls1a{letter-spacing:13.067157pt;}
.ls12{letter-spacing:13.253475pt;}
.ls2{letter-spacing:13.283733pt;}
.ls29{letter-spacing:13.404277pt;}
.ls9{letter-spacing:14.981103pt;}
.lsf{letter-spacing:15.487969pt;}
.ls3{letter-spacing:15.942400pt;}
.ls11{letter-spacing:17.877511pt;}
.ls0{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls14{letter-spacing:120.573997pt;}
.ls15{letter-spacing:131.203330pt;}
.ls16{letter-spacing:141.827330pt;}
.ls19{letter-spacing:261.470302pt;}
.ls18{letter-spacing:273.427635pt;}
.ws4{word-spacing:-13.283467pt;}
.ws71{word-spacing:-11.955200pt;}
.ws32{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws51{word-spacing:-2.709827pt;}
.ws99{word-spacing:-2.534502pt;}
.ws82{word-spacing:-2.231622pt;}
.ws9e{word-spacing:-2.151936pt;}
.wsa0{word-spacing:-2.056294pt;}
.ws9f{word-spacing:-1.960653pt;}
.ws45{word-spacing:-1.912819pt;}
.ws4e{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws9a{word-spacing:-1.673728pt;}
.ws4f{word-spacing:-1.381481pt;}
.ws8f{word-spacing:-1.275213pt;}
.ws6{word-spacing:-1.175671pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws17{word-spacing:-1.147699pt;}
.ws8c{word-spacing:-1.062677pt;}
.ws90{word-spacing:-1.009543pt;}
.ws50{word-spacing:-0.903276pt;}
.wsb8{word-spacing:-0.765133pt;}
.ws53{word-spacing:-0.743874pt;}
.ws81{word-spacing:-0.690740pt;}
.ws92{word-spacing:-0.531339pt;}
.ws94{word-spacing:-0.478205pt;}
.ws83{word-spacing:-0.425071pt;}
.ws88{word-spacing:-0.371937pt;}
.ws2d{word-spacing:-0.318803pt;}
.wsac{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws76{word-spacing:-0.239104pt;}
.ws3c{word-spacing:-0.212535pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws40{word-spacing:-0.159402pt;}
.ws98{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws21{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws59{word-spacing:-0.042507pt;}
.wsaa{word-spacing:-0.024858pt;}
.wsa1{word-spacing:-0.023663pt;}
.wsa4{word-spacing:-0.023270pt;}
.wsa2{word-spacing:-0.023211pt;}
.wsba{word-spacing:-0.021111pt;}
.wsbd{word-spacing:-0.006630pt;}
.ws1{word-spacing:-0.003489pt;}
.ws5{word-spacing:-0.001059pt;}
.wsa{word-spacing:-0.000713pt;}
.ws0{word-spacing:0.000000pt;}
.wsb5{word-spacing:0.000717pt;}
.wsa3{word-spacing:0.001758pt;}
.ws97{word-spacing:0.047821pt;}
.ws54{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.095642pt;}
.ws30{word-spacing:0.106268pt;}
.ws6b{word-spacing:0.143462pt;}
.ws2a{word-spacing:0.159402pt;}
.wsc{word-spacing:0.185968pt;}
.ws19{word-spacing:0.191283pt;}
.ws43{word-spacing:0.212535pt;}
.wse{word-spacing:0.260355pt;}
.ws1d{word-spacing:0.286925pt;}
.ws4a{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.334746pt;}
.ws8d{word-spacing:0.371937pt;}
.ws1c{word-spacing:0.430387pt;}
.ws8e{word-spacing:0.531339pt;}
.ws4c{word-spacing:0.584473pt;}
.ws3f{word-spacing:0.690740pt;}
.wsb0{word-spacing:0.765133pt;}
.wsb3{word-spacing:0.908595pt;}
.ws47{word-spacing:0.956410pt;}
.ws9b{word-spacing:1.004237pt;}
.ws2c{word-spacing:1.009543pt;}
.wsaf{word-spacing:1.052058pt;}
.ws4b{word-spacing:1.062677pt;}
.wsbe{word-spacing:1.099878pt;}
.ws96{word-spacing:1.115811pt;}
.wsb2{word-spacing:1.195520pt;}
.ws26{word-spacing:1.275213pt;}
.ws44{word-spacing:1.487748pt;}
.ws8a{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.647150pt;}
.ws38{word-spacing:1.753418pt;}
.wsd{word-spacing:1.785293pt;}
.ws36{word-spacing:1.912819pt;}
.ws3e{word-spacing:1.965953pt;}
.ws49{word-spacing:2.019087pt;}
.ws80{word-spacing:2.072221pt;}
.ws3a{word-spacing:2.178489pt;}
.ws9{word-spacing:2.231616pt;}
.ws55{word-spacing:2.231622pt;}
.ws27{word-spacing:2.284756pt;}
.ws95{word-spacing:2.444158pt;}
.ws37{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws48{word-spacing:2.709827pt;}
.ws7f{word-spacing:2.762961pt;}
.wsb7{word-spacing:2.821427pt;}
.wsa9{word-spacing:2.861961pt;}
.wsb4{word-spacing:2.865894pt;}
.ws9c{word-spacing:2.866509pt;}
.wsb6{word-spacing:2.867780pt;}
.wsae{word-spacing:2.869248pt;}
.wsb9{word-spacing:2.917069pt;}
.ws3d{word-spacing:2.975497pt;}
.ws1f{word-spacing:3.012710pt;}
.ws93{word-spacing:3.028630pt;}
.ws85{word-spacing:3.081764pt;}
.wsbc{word-spacing:3.108352pt;}
.wsbb{word-spacing:3.127680pt;}
.ws41{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws35{word-spacing:3.294300pt;}
.ws46{word-spacing:3.347434pt;}
.ws22{word-spacing:3.347456pt;}
.wsad{word-spacing:3.395277pt;}
.ws52{word-spacing:3.506835pt;}
.ws18{word-spacing:3.538739pt;}
.ws70{word-spacing:3.586560pt;}
.ws91{word-spacing:3.613103pt;}
.ws4d{word-spacing:3.719371pt;}
.ws1e{word-spacing:3.833265pt;}
.ws6f{word-spacing:3.873485pt;}
.ws87{word-spacing:3.985040pt;}
.wsa8{word-spacing:4.256051pt;}
.ws20{word-spacing:4.542976pt;}
.ws58{word-spacing:4.569513pt;}
.ws2b{word-spacing:4.728914pt;}
.ws34{word-spacing:4.994583pt;}
.ws33{word-spacing:5.047717pt;}
.ws56{word-spacing:5.153985pt;}
.ws14{word-spacing:5.393072pt;}
.ws15{word-spacing:5.467459pt;}
.ws89{word-spacing:5.632190pt;}
.wsb1{word-spacing:5.642854pt;}
.ws24{word-spacing:5.738458pt;}
.ws31{word-spacing:6.004127pt;}
.ws29{word-spacing:6.110395pt;}
.ws84{word-spacing:6.216662pt;}
.ws28{word-spacing:6.535466pt;}
.ws86{word-spacing:6.588599pt;}
.wsa6{word-spacing:6.599270pt;}
.wsa5{word-spacing:6.608667pt;}
.ws57{word-spacing:6.907403pt;}
.ws7e{word-spacing:7.173072pt;}
.ws39{word-spacing:7.385607pt;}
.ws12{word-spacing:7.699075pt;}
.ws8b{word-spacing:8.235749pt;}
.ws42{word-spacing:13.017797pt;}
.ws8{word-spacing:13.763148pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.ws11{word-spacing:15.732893pt;}
.ws13{word-spacing:24.399002pt;}
.wsab{word-spacing:43.015467pt;}
.ws5f{word-spacing:62.740627pt;}
.ws68{word-spacing:73.367427pt;}
.ws5b{word-spacing:110.646242pt;}
.ws5d{word-spacing:119.700275pt;}
.ws5a{word-spacing:127.314670pt;}
.ws61{word-spacing:130.327075pt;}
.ws5e{word-spacing:136.150562pt;}
.ws66{word-spacing:140.953875pt;}
.ws7b{word-spacing:144.897024pt;}
.ws73{word-spacing:150.922445pt;}
.ws6a{word-spacing:151.580675pt;}
.ws7a{word-spacing:184.782123pt;}
.ws74{word-spacing:187.033788pt;}
.ws7c{word-spacing:207.303168pt;}
.ws67{word-spacing:230.372000pt;}
.ws72{word-spacing:238.912717pt;}
.ws62{word-spacing:240.996267pt;}
.ws65{word-spacing:245.904914pt;}
.ws69{word-spacing:247.694185pt;}
.ws63{word-spacing:256.957991pt;}
.ws75{word-spacing:257.801933pt;}
.ws5c{word-spacing:262.677734pt;}
.ws64{word-spacing:275.940921pt;}
.ws60{word-spacing:291.175916pt;}
.ws79{word-spacing:347.705037pt;}
.ws77{word-spacing:359.660237pt;}
.ws78{word-spacing:371.615437pt;}
.ws6c{word-spacing:373.002240pt;}
.ws6d{word-spacing:462.905344pt;}
.ws7d{word-spacing:480.025190pt;}
.ws6e{word-spacing:486.815744pt;}
._3{margin-left:-5.897859pt;}
._9{margin-left:-4.675792pt;}
._a{margin-left:-3.145533pt;}
._4{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._5{width:0.969929pt;}
._2{width:2.668692pt;}
._29{width:3.931906pt;}
._0{width:9.035708pt;}
._14{width:10.626800pt;}
._6{width:11.531434pt;}
._43{width:13.214429pt;}
._c{width:14.680986pt;}
._b{width:15.828685pt;}
._1b{width:16.737168pt;}
._f{width:17.693696pt;}
._1c{width:18.703121pt;}
._17{width:19.606397pt;}
._11{width:20.976378pt;}
._1a{width:22.027555pt;}
._7{width:23.063232pt;}
._d{width:24.292966pt;}
._10{width:25.249382pt;}
._18{width:26.832603pt;}
._e{width:28.070810pt;}
._8{width:29.011008pt;}
._12{width:31.113447pt;}
._41{width:33.899407pt;}
._13{width:34.962084pt;}
._40{width:36.821770pt;}
._19{width:38.572254pt;}
._44{width:54.993920pt;}
._42{width:78.904320pt;}
._1d{width:91.390480pt;}
._21{width:96.386425pt;}
._20{width:121.059950pt;}
._1e{width:135.194454pt;}
._3f{width:156.947866pt;}
._3c{width:161.671478pt;}
._22{width:167.098546pt;}
._39{width:168.903066pt;}
._2b{width:178.886973pt;}
._2c{width:182.818918pt;}
._1f{width:198.764621pt;}
._3d{width:203.275574pt;}
._3e{width:207.303168pt;}
._2f{width:216.676045pt;}
._3b{width:219.258368pt;}
._30{width:251.585229pt;}
._3a{width:255.543709pt;}
._31{width:273.774080pt;}
._33{width:321.021030pt;}
._2e{width:327.620301pt;}
._2d{width:339.623322pt;}
._2a{width:341.326747pt;}
._26{width:355.738931pt;}
._34{width:371.615437pt;}
._15{width:372.804445pt;}
._32{width:383.570637pt;}
._23{width:388.926566pt;}
._35{width:401.162070pt;}
._24{width:440.477389pt;}
._28{width:446.826909pt;}
._25{width:466.539725pt;}
._38{width:483.174742pt;}
._27{width:498.770944pt;}
._37{width:562.027216pt;}
._36{width:567.632896pt;}
._16{width:1827.142490pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.yb{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y4f{bottom:28.346667pt;}
.y2{bottom:32.990462pt;}
.y115{bottom:79.105333pt;}
.y16d{bottom:83.005333pt;}
.y26{bottom:91.398667pt;}
.yb4{bottom:92.449333pt;}
.y143{bottom:94.840000pt;}
.y4e{bottom:95.204000pt;}
.y84{bottom:95.222667pt;}
.y114{bottom:95.842667pt;}
.y16c{bottom:98.348000pt;}
.y25{bottom:107.298667pt;}
.yb3{bottom:109.186667pt;}
.y142{bottom:111.577333pt;}
.y4d{bottom:111.941333pt;}
.y83{bottom:111.960000pt;}
.y113{bottom:112.580000pt;}
.y16b{bottom:113.690667pt;}
.ye5{bottom:119.392000pt;}
.y24{bottom:123.200000pt;}
.yb2{bottom:125.924000pt;}
.y141{bottom:128.314667pt;}
.y4c{bottom:128.678667pt;}
.y82{bottom:128.697333pt;}
.y16a{bottom:129.032000pt;}
.y112{bottom:129.317333pt;}
.ye4{bottom:136.129333pt;}
.y23{bottom:139.100000pt;}
.yb1{bottom:142.661333pt;}
.y169{bottom:144.374667pt;}
.y140{bottom:145.052000pt;}
.y4b{bottom:145.416000pt;}
.y81{bottom:145.434667pt;}
.y111{bottom:146.054667pt;}
.ye3{bottom:152.866667pt;}
.y22{bottom:155.000000pt;}
.y168{bottom:159.717333pt;}
.y13f{bottom:161.789333pt;}
.y4a{bottom:162.153333pt;}
.y80{bottom:162.172000pt;}
.yb0{bottom:163.384000pt;}
.y110{bottom:166.777333pt;}
.ye2{bottom:169.604000pt;}
.y21{bottom:170.901333pt;}
.y167{bottom:175.060000pt;}
.y13e{bottom:178.526667pt;}
.y49{bottom:178.890667pt;}
.y7f{bottom:178.909333pt;}
.ye1{bottom:186.341333pt;}
.y20{bottom:186.801333pt;}
.y166{bottom:190.402667pt;}
.yaf{bottom:193.272000pt;}
.y13d{bottom:195.264000pt;}
.y48{bottom:195.628000pt;}
.y10f{bottom:196.665333pt;}
.y7e{bottom:199.632000pt;}
.y1f{bottom:202.701333pt;}
.ye0{bottom:203.078667pt;}
.y165{bottom:205.745333pt;}
.yae{bottom:210.009333pt;}
.y13c{bottom:212.001333pt;}
.y47{bottom:212.365333pt;}
.y10e{bottom:213.402667pt;}
.y164{bottom:221.088000pt;}
.yad{bottom:226.746667pt;}
.y13b{bottom:228.738667pt;}
.y46{bottom:229.102667pt;}
.y7d{bottom:229.520000pt;}
.y10d{bottom:230.140000pt;}
.y163{bottom:236.430667pt;}
.ydf{bottom:240.538667pt;}
.yac{bottom:243.484000pt;}
.y13a{bottom:245.476000pt;}
.y45{bottom:245.840000pt;}
.y10c{bottom:246.877333pt;}
.y7c{bottom:250.241333pt;}
.y162{bottom:251.772000pt;}
.yab{bottom:260.221333pt;}
.yde{bottom:260.757333pt;}
.y139{bottom:262.213333pt;}
.y44{bottom:262.577333pt;}
.y161{bottom:267.114667pt;}
.y7b{bottom:268.174667pt;}
.y1e{bottom:273.154667pt;}
.ydd{bottom:275.369333pt;}
.yaa{bottom:276.958667pt;}
.y138{bottom:278.950667pt;}
.y43{bottom:279.314667pt;}
.y160{bottom:286.442667pt;}
.y10b{bottom:286.996000pt;}
.y1d{bottom:289.054667pt;}
.ydc{bottom:289.981333pt;}
.ya9{bottom:293.696000pt;}
.y137{bottom:295.688000pt;}
.y42{bottom:296.052000pt;}
.y7a{bottom:298.062667pt;}
.y10a{bottom:301.608000pt;}
.ydb{bottom:304.593333pt;}
.y1c{bottom:304.954667pt;}
.ya8{bottom:310.433333pt;}
.y136{bottom:312.425333pt;}
.y41{bottom:312.789333pt;}
.y79{bottom:314.800000pt;}
.y109{bottom:316.218667pt;}
.y15f{bottom:316.330667pt;}
.y1b{bottom:320.856000pt;}
.yda{bottom:325.608000pt;}
.ya7{bottom:327.169333pt;}
.y135{bottom:329.162667pt;}
.y40{bottom:329.526667pt;}
.y108{bottom:330.830667pt;}
.y78{bottom:331.537333pt;}
.y15e{bottom:339.922667pt;}
.ya6{bottom:343.906667pt;}
.y107{bottom:345.442667pt;}
.y134{bottom:345.900000pt;}
.y3f{bottom:346.264000pt;}
.y77{bottom:348.274667pt;}
.yd9{bottom:353.713333pt;}
.y1a{bottom:354.688000pt;}
.y15d{bottom:355.544000pt;}
.y106{bottom:360.054667pt;}
.ya5{bottom:360.644000pt;}
.y133{bottom:362.637333pt;}
.y3e{bottom:363.001333pt;}
.y76{bottom:365.012000pt;}
.y19{bottom:370.589333pt;}
.yd8{bottom:370.809333pt;}
.ya4{bottom:377.381333pt;}
.y15c{bottom:379.134667pt;}
.y132{bottom:379.374667pt;}
.y3d{bottom:379.738667pt;}
.y105{bottom:381.069333pt;}
.y75{bottom:381.749333pt;}
.y18{bottom:386.489333pt;}
.y104{bottom:393.650667pt;}
.ya3{bottom:394.118667pt;}
.y15b{bottom:394.757333pt;}
.y131{bottom:396.112000pt;}
.y74{bottom:398.486667pt;}
.y3c{bottom:400.460000pt;}
.ya2{bottom:410.856000pt;}
.y130{bottom:412.848000pt;}
.y190{bottom:414.244000pt;}
.yd7{bottom:414.553333pt;}
.y73{bottom:415.224000pt;}
.y17{bottom:418.330667pt;}
.y15a{bottom:418.348000pt;}
.yd6{bottom:422.313333pt;}
.y12f{bottom:429.585333pt;}
.y103{bottom:430.189333pt;}
.ya1{bottom:431.578667pt;}
.y72{bottom:431.961333pt;}
.y16{bottom:434.230667pt;}
.y159{bottom:441.940000pt;}
.y18f{bottom:444.928000pt;}
.y12e{bottom:446.322667pt;}
.yd5{bottom:448.610667pt;}
.y71{bottom:448.698667pt;}
.y15{bottom:450.130667pt;}
.yd4{bottom:456.372000pt;}
.y158{bottom:457.561333pt;}
.y18e{bottom:460.270667pt;}
.ya0{bottom:461.466667pt;}
.y102{bottom:462.878667pt;}
.y12d{bottom:463.060000pt;}
.y3b{bottom:464.146667pt;}
.y70{bottom:465.436000pt;}
.y157{bottom:473.182667pt;}
.y18d{bottom:475.613333pt;}
.y9f{bottom:478.204000pt;}
.y101{bottom:479.616000pt;}
.y12c{bottom:479.797333pt;}
.y3a{bottom:481.441333pt;}
.y14{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.yd3{bottom:482.668000pt;}
.yd2{bottom:490.429333pt;}
.y18c{bottom:490.956000pt;}
.ycc{bottom:492.352000pt;}
.yce{bottom:492.514667pt;}
.y9e{bottom:494.941333pt;}
.y100{bottom:496.353333pt;}
.y12b{bottom:496.534667pt;}
.y156{bottom:496.774667pt;}
.y13{bottom:497.872000pt;}
.y6e{bottom:498.910667pt;}
.y18b{bottom:506.298667pt;}
.y9d{bottom:511.678667pt;}
.yff{bottom:513.090667pt;}
.y12a{bottom:513.272000pt;}
.y12{bottom:513.772000pt;}
.y39{bottom:514.677333pt;}
.y6d{bottom:515.648000pt;}
.yd1{bottom:516.726667pt;}
.y155{bottom:520.365333pt;}
.y18a{bottom:521.641333pt;}
.yd0{bottom:523.384000pt;}
.y9c{bottom:528.416000pt;}
.y11{bottom:529.673333pt;}
.yfe{bottom:529.828000pt;}
.y129{bottom:530.009333pt;}
.y38{bottom:531.972000pt;}
.y6c{bottom:532.384000pt;}
.y154{bottom:535.988000pt;}
.y189{bottom:536.984000pt;}
.y9b{bottom:545.153333pt;}
.y10{bottom:545.573333pt;}
.yfd{bottom:546.565333pt;}
.y128{bottom:546.746667pt;}
.y6b{bottom:549.121333pt;}
.y37{bottom:549.266667pt;}
.ycf{bottom:550.784000pt;}
.y153{bottom:551.609333pt;}
.y188{bottom:552.325333pt;}
.ycd{bottom:557.604000pt;}
.yf{bottom:561.473333pt;}
.yfc{bottom:563.302667pt;}
.y127{bottom:563.484000pt;}
.y6a{bottom:565.858667pt;}
.y9a{bottom:565.876000pt;}
.y36{bottom:566.562667pt;}
.y152{bottom:567.230667pt;}
.y187{bottom:567.668000pt;}
.ye{bottom:577.374667pt;}
.y126{bottom:580.221333pt;}
.y69{bottom:582.596000pt;}
.y151{bottom:582.852000pt;}
.y186{bottom:583.010667pt;}
.y35{bottom:583.857333pt;}
.ycb{bottom:584.842667pt;}
.yca{bottom:592.602667pt;}
.yd{bottom:593.274667pt;}
.y99{bottom:595.764000pt;}
.y125{bottom:596.958667pt;}
.y185{bottom:598.353333pt;}
.y150{bottom:598.473333pt;}
.y68{bottom:599.333333pt;}
.yfb{bottom:600.469333pt;}
.y34{bottom:601.152000pt;}
.y98{bottom:612.501333pt;}
.ya{bottom:613.160048pt;}
.y124{bottom:613.696000pt;}
.y67{bottom:616.070667pt;}
.y33{bottom:618.448000pt;}
.yc9{bottom:618.900000pt;}
.yfa{bottom:620.689333pt;}
.yc8{bottom:625.557333pt;}
.y184{bottom:629.038667pt;}
.y97{bottom:629.237333pt;}
.y14f{bottom:630.034667pt;}
.y123{bottom:630.433333pt;}
.y66{bottom:632.808000pt;}
.yf9{bottom:635.301333pt;}
.y32{bottom:635.742667pt;}
.y183{bottom:644.381333pt;}
.yc2{bottom:645.852000pt;}
.y96{bottom:645.974667pt;}
.yc4{bottom:646.014667pt;}
.y14e{bottom:646.772000pt;}
.y122{bottom:647.170667pt;}
.y65{bottom:649.545333pt;}
.yf8{bottom:649.913333pt;}
.yc7{bottom:652.957333pt;}
.y31{bottom:653.038667pt;}
.y182{bottom:659.724000pt;}
.yc6{bottom:660.718667pt;}
.y95{bottom:662.712000pt;}
.y14d{bottom:663.509333pt;}
.y121{bottom:663.908000pt;}
.yf7{bottom:664.525333pt;}
.y64{bottom:666.282667pt;}
.y30{bottom:670.333333pt;}
.y181{bottom:675.066667pt;}
.yf6{bottom:679.137333pt;}
.y14c{bottom:680.246667pt;}
.y120{bottom:680.645333pt;}
.y63{bottom:683.020000pt;}
.y94{bottom:683.434667pt;}
.yc5{bottom:687.016000pt;}
.y2f{bottom:687.628000pt;}
.y180{bottom:690.408000pt;}
.yc3{bottom:694.776000pt;}
.y14b{bottom:696.984000pt;}
.y11f{bottom:697.382667pt;}
.y62{bottom:699.757333pt;}
.yf5{bottom:700.150667pt;}
.y2e{bottom:704.924000pt;}
.y17f{bottom:705.750667pt;}
.y93{bottom:713.322667pt;}
.y14a{bottom:713.721333pt;}
.y11e{bottom:714.120000pt;}
.y61{bottom:716.494667pt;}
.yc1{bottom:721.073333pt;}
.y17e{bottom:721.093333pt;}
.y2d{bottom:722.218667pt;}
.yc0{bottom:727.892000pt;}
.yf4{bottom:728.257333pt;}
.y92{bottom:730.060000pt;}
.y149{bottom:730.458667pt;}
.y11d{bottom:730.857333pt;}
.y60{bottom:733.232000pt;}
.y17d{bottom:736.436000pt;}
.y2c{bottom:739.513333pt;}
.yf3{bottom:745.353333pt;}
.y91{bottom:746.797333pt;}
.y148{bottom:747.196000pt;}
.ybc{bottom:747.248000pt;}
.ybe{bottom:747.338667pt;}
.y11c{bottom:747.594667pt;}
.y5f{bottom:749.969333pt;}
.y17c{bottom:751.778667pt;}
.ybf{bottom:755.130667pt;}
.ybd{bottom:761.950667pt;}
.y90{bottom:763.534667pt;}
.y147{bottom:763.933333pt;}
.y11b{bottom:764.332000pt;}
.y5e{bottom:766.706667pt;}
.y17b{bottom:767.121333pt;}
.y2b{bottom:773.812000pt;}
.yf2{bottom:778.042667pt;}
.y8f{bottom:780.272000pt;}
.y146{bottom:780.670667pt;}
.y11a{bottom:781.069333pt;}
.y17a{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.y2a{bottom:788.158667pt;}
.ybb{bottom:789.189333pt;}
.yf1{bottom:794.780000pt;}
.yba{bottom:797.297333pt;}
.y145{bottom:797.408000pt;}
.y119{bottom:797.806667pt;}
.y5c{bottom:800.181333pt;}
.y8e{bottom:800.994667pt;}
.yb9{bottom:806.217333pt;}
.y29{bottom:806.362667pt;}
.y178{bottom:813.148000pt;}
.y179{bottom:813.149333pt;}
.y118{bottom:814.544000pt;}
.y28{bottom:816.850667pt;}
.y5b{bottom:816.918667pt;}
.y144{bottom:818.130667pt;}
.y177{bottom:828.490667pt;}
.y8d{bottom:830.882667pt;}
.y117{bottom:831.281333pt;}
.yb8{bottom:831.773333pt;}
.yf0{bottom:831.948000pt;}
.y5a{bottom:833.656000pt;}
.y27{bottom:835.054667pt;}
.y176{bottom:843.833333pt;}
.y8c{bottom:847.620000pt;}
.y116{bottom:848.018667pt;}
.y59{bottom:850.393333pt;}
.yef{bottom:852.166667pt;}
.yee{bottom:858.448000pt;}
.y175{bottom:859.176000pt;}
.y8b{bottom:864.357333pt;}
.yb7{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.y9{bottom:870.782667pt;}
.yea{bottom:873.060000pt;}
.y174{bottom:874.518667pt;}
.yed{bottom:881.390667pt;}
.yb6{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.y8a{bottom:885.078667pt;}
.y8{bottom:887.520000pt;}
.yeb{bottom:887.672000pt;}
.y173{bottom:889.861333pt;}
.yec{bottom:896.002667pt;}
.yb5{bottom:898.229333pt;}
.y56{bottom:900.605333pt;}
.y172{bottom:905.204000pt;}
.y89{bottom:914.966667pt;}
.ye9{bottom:917.017333pt;}
.y55{bottom:917.342667pt;}
.y171{bottom:920.546667pt;}
.y7{bottom:925.510667pt;}
.y88{bottom:931.704000pt;}
.y54{bottom:934.080000pt;}
.y170{bottom:935.889333pt;}
.ye8{bottom:938.030667pt;}
.y87{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y16f{bottom:951.230667pt;}
.y86{bottom:965.178667pt;}
.ye7{bottom:966.137333pt;}
.y16e{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y5{bottom:975.722667pt;}
.y85{bottom:981.916000pt;}
.ye6{bottom:983.233333pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.h15{height:24.760382pt;}
.hb{height:27.076941pt;}
.h16{height:27.184641pt;}
.hc{height:27.300102pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h17{height:30.732706pt;}
.he{height:30.945242pt;}
.h14{height:31.200285pt;}
.h1f{height:33.426739pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h3{height:35.024664pt;}
.h11{height:35.100467pt;}
.h4{height:36.445809pt;}
.h12{height:38.415786pt;}
.h13{height:38.681455pt;}
.h5{height:39.000258pt;}
.h1b{height:39.222575pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.h1a{height:68.272285pt;}
.h1e{height:68.302438pt;}
.h1d{height:68.423134pt;}
.h6{height:69.148877pt;}
.h18{height:72.037618pt;}
.h19{height:72.042951pt;}
.h1c{height:72.688285pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:52.456952pt;}
.x5d{left:76.686667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x45{left:230.989333pt;}
.x3e{left:234.253333pt;}
.x50{left:236.182667pt;}
.x39{left:237.532000pt;}
.x5{left:241.085333pt;}
.x44{left:249.829333pt;}
.x9{left:251.365333pt;}
.x4b{left:258.324000pt;}
.x4f{left:259.429333pt;}
.x35{left:261.526667pt;}
.x41{left:268.172000pt;}
.x46{left:272.062667pt;}
.x18{left:273.792000pt;}
.x7{left:274.889333pt;}
.x43{left:277.314667pt;}
.x1c{left:281.657333pt;}
.x8{left:285.517333pt;}
.x19{left:287.076000pt;}
.x1d{left:294.940000pt;}
.x2e{left:298.981333pt;}
.x53{left:306.749333pt;}
.x24{left:309.892000pt;}
.x4c{left:316.981333pt;}
.x26{left:318.026667pt;}
.x54{left:320.032000pt;}
.x25{left:323.176000pt;}
.x3f{left:325.996000pt;}
.x27{left:331.310667pt;}
.x3a{left:336.017333pt;}
.x40{left:343.673333pt;}
.x5a{left:348.480000pt;}
.x3b{left:351.612000pt;}
.x59{left:354.980000pt;}
.xa{left:360.041333pt;}
.xb{left:366.682667pt;}
.x3c{left:368.604000pt;}
.x36{left:369.501333pt;}
.x3d{left:373.348000pt;}
.x2a{left:377.188000pt;}
.x5c{left:381.656000pt;}
.x2c{left:386.857333pt;}
.x2b{left:390.472000pt;}
.x2d{left:400.140000pt;}
.x42{left:406.406667pt;}
.xc{left:409.337333pt;}
.xd{left:415.978667pt;}
.xe{left:419.365333pt;}
.xf{left:426.008000pt;}
.x28{left:433.457333pt;}
.x5b{left:435.877333pt;}
.x48{left:436.773333pt;}
.x29{left:446.740000pt;}
.x47{left:470.537333pt;}
.x38{left:472.428000pt;}
.x49{left:478.405333pt;}
.x20{left:480.974667pt;}
.x4a{left:488.036000pt;}
.x51{left:489.362667pt;}
.x4d{left:490.528000pt;}
.x57{left:492.892000pt;}
.x21{left:494.257333pt;}
.x58{left:506.174667pt;}
.x34{left:510.580000pt;}
.x2f{left:514.713333pt;}
.x32{left:518.169333pt;}
.x30{left:522.373333pt;}
.x10{left:529.514667pt;}
.x11{left:536.156000pt;}
.x12{left:539.544000pt;}
.x13{left:546.185333pt;}
.x4e{left:558.289333pt;}
.x64{left:562.894667pt;}
.x65{left:569.037333pt;}
.x5e{left:570.160000pt;}
.x5f{left:576.301333pt;}
.x62{left:592.164000pt;}
.x52{left:594.172000pt;}
.x33{left:600.700000pt;}
.x37{left:607.606667pt;}
.x14{left:610.589333pt;}
.x63{left:616.074667pt;}
.x15{left:617.230667pt;}
.x60{left:661.352000pt;}
.x1e{left:665.062667pt;}
.x22{left:670.404000pt;}
.x1f{left:678.345333pt;}
.x55{left:682.348000pt;}
.x23{left:683.686667pt;}
.x61{left:685.262667pt;}
.x56{left:695.630667pt;}
.x31{left:699.052000pt;}
.x66{left:701.574667pt;}
.x16{left:706.940000pt;}
.x17{left:713.581333pt;}
.x67{left:725.485333pt;}
.x1a{left:726.842667pt;}
.x1b{left:740.126667pt;}
}




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