
    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_48f2d47ad41ae06a0f3b7346.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_464c5c8826f2aaeecf6b2b8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_380a069048c02f4b68d6215b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_daee1d4805368eb6ccc1bc02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725725;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_0790253c7197e10e445a1505.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_ccbec3d1744a9a84ccdaa200.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_64296b5e5b4a5cb522ae4bcc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.718000;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_8dbc06728b2b28586bd6c075.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_efa1243be1f80dcfa0506e9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ef7b54a5b83971e175b76ee9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.427000;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_7b9543734488c3bd0b197692.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688000;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_33b109c7f06431f67efd34ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664000;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_5f16664b9a82d6acbf28c0a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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_18394e560d8b21312fc54f90.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.688000;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_cf6a6289597b40283583f327.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_554dcd6b42fa9efa7f4a8258.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.451000;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:ff11;src:url('chunks/assets/font_ef7b54a5b83971e175b76ee9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.427000;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:ff12;src:url('chunks/assets/font_05b40340dd237ec37f42237e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677000;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:ff13;src:url('chunks/assets/font_39ac5062bc6d4a72a8cd6e95.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940918;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:ff14;src:url('chunks/assets/font_d9c07e45bd1fed1ac5079d82.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688000;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:ff15;src:url('chunks/assets/font_7d7b8a67d7bb11f1b9f4711a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.106000;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:ff16;src:url('chunks/assets/font_5567654b145bab9ff6cf95aa.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.684000;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:ff17;src:url('chunks/assets/font_df0ba7a438d6433d0dec743e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940918;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:ff18;src:url('chunks/assets/font_d9c07e45bd1fed1ac5079d82.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.688000;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:ff19;src:url('chunks/assets/font_7d7b8a67d7bb11f1b9f4711a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.106000;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:ff1a;src:url('chunks/assets/font_59ffb742395fc813f9a429f7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.684000;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:ff1b;src:url('chunks/assets/font_f7d680c7cdc9b76f8f6e3f6b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940918;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:ff1c;src:url('chunks/assets/font_d548979745fcde232ac173d7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.899000;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:ff1d;src:url('chunks/assets/font_df95ec3f3e193e0c1c2ea90e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.676000;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:ff1e;src:url('chunks/assets/font_9398d912be4f0f85e6c72ac5.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2f7b47169f7daa34246a8d7a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.688000;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:ff20;src:url('chunks/assets/font_8ed9ecc0f7b4cda95c559c78.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.049000;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:ff21;src:url('chunks/assets/font_c2156bfae61a5ae5131a6d81.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.664000;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:ff22;src:url('chunks/assets/font_be2070a564d9a7c3f9fb6d48.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.899000;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:ff23;src:url('chunks/assets/font_9054697256ca05197a458676.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_ba21cb6326acf36401190fa4.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.889000;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:ff25;src:url('chunks/assets/font_948265aae2713c400789ac54.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.441000;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:ff26;src:url('chunks/assets/font_81333423b2f7e2163e9af7fb.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.940918;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:ff27;src:url('chunks/assets/font_162d9c6acea5a61d5c09d82f.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.910000;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:ff28;src:url('chunks/assets/font_79f3c56c71f1f0e25e409376.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.451000;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:ff29;src:url('chunks/assets/font_73b836240ec3d17f72e6b88e.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_bd11bbfd738def2b1ecd0250.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.940918;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:ff2b;src:url('chunks/assets/font_0bcd2660d0e85360637d0363.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.899000;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:ff2c;src:url('chunks/assets/font_6a0a99b7daf566b716f05287.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.684000;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:ff2d;src:url('chunks/assets/font_8f1140d9e30017ae8d6e0179.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.899000;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:ff2e;src:url('chunks/assets/font_ff9bbd1c0e53411e6881f0af.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.522000;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:ff2f;src:url('chunks/assets/font_69308cc09cf970fa30a7c267.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.650000;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:ff30;src:url('chunks/assets/font_ac8cbe9d68c2e3393a38d9fc.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.636000;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:ff31;src:url('chunks/assets/font_de436302d823a7d8fa128901.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.940918;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:ff32;src:url('chunks/assets/font_91a01861dec2fb913ff440a9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.453000;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:ff33;src:url('chunks/assets/font_464032555eb33cf30794bac9.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.664000;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:ff34;src:url('chunks/assets/font_49b362aa0938a6c8ed38cb79.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.308000;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:ff35;src:url('chunks/assets/font_bae6766dbc6770b8b1b098dd.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.940918;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:ff36;src:url('chunks/assets/font_edc79e9080809d8a376076e9.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.154000;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:ff37;src:url('chunks/assets/font_71a5294e65fd63fbd6e96eae.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.442000;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:ff38;src:url('chunks/assets/font_f71eaab2df65601d9b4aa673.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.867000;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:ff39;src:url('chunks/assets/font_3d57a4d0301467ed9a324a5d.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.940918;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:ff3a;src:url('chunks/assets/font_23297503b3a51cb8dfa589a3.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.910000;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:ff3b;src:url('chunks/assets/font_48c9df69be64c6053a69834e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.673000;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:ff3c;src:url('chunks/assets/font_7eb018d9a031dfb90f02423f.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_89e9ad9142be45952da0e21a.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.940918;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:ff3e;src:url('chunks/assets/font_9edccf12573a5a1cfc23844b.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.910000;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:ff3f;src:url('chunks/assets/font_a7f792c2e1b2c6e90eeaa379.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_121b0661382f4abe308204c7.woff2')format("woff");}.ff40{font-family:ff40;line-height:2.222000;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:ff41;src:url('chunks/assets/font_d46667eaf1911ef8f506b641.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.867000;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:ff42;src:url('chunks/assets/font_7a3c9ccfb17a8bfa8a246364.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.684000;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:ff43;src:url('chunks/assets/font_b91b8240d05e95c5274fc524.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910000;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:ff44;src:url('chunks/assets/font_12f9f5146ffc91c7ddc38ef9.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.940918;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:ff45;src:url('chunks/assets/font_9d0daae2c3efe78c8a6b4634.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.672000;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:ff46;src:url('chunks/assets/font_7dae3e7a0123badabff9e1f8.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.940918;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:ff47;src:url('chunks/assets/font_55334c2cc7836c21ca25b22b.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.910000;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:ff48;src:url('chunks/assets/font_7eb018d9a031dfb90f02423f.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_6c7a8a786b0e4089129d5756.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.522000;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:ff4a;src:url('chunks/assets/font_db120790e32450b0fb3de9a8.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.664000;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:ff4b;src:url('chunks/assets/font_47346bfcac27e9d3aacd5f25.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.758789;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:ff4c;src:url('chunks/assets/font_6a74dba794ca14793cc0eca9.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.940918;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:ff4d;src:url('chunks/assets/font_55334c2cc7836c21ca25b22b.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.910000;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:ff4e;src:url('chunks/assets/font_7eb018d9a031dfb90f02423f.woff2')format("woff");}.ff4e{font-family:ff4e;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:ff4f;src:url('chunks/assets/font_db120790e32450b0fb3de9a8.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.664000;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;}
.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);}
.v1{vertical-align:-95.208000px;}
.v13{vertical-align:-39.468000px;}
.vc{vertical-align:-37.869707px;}
.v4{vertical-align:-33.988631px;}
.v7{vertical-align:-32.292000px;}
.v2{vertical-align:-29.415600px;}
.ve{vertical-align:-4.606200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:32.292000px;}
.v19{vertical-align:39.824199px;}
.vb{vertical-align:62.164800px;}
.v9{vertical-align:88.840800px;}
.v6{vertical-align:97.575455px;}
.v1b{vertical-align:98.712000px;}
.v5{vertical-align:101.819997px;}
.v3{vertical-align:102.859360px;}
.vf{vertical-align:107.881592px;}
.v1a{vertical-align:135.638530px;}
.va{vertical-align:145.584000px;}
.vd{vertical-align:185.479200px;}
.v10{vertical-align:203.945449px;}
.v14{vertical-align:252.104493px;}
.v18{vertical-align:295.604771px;}
.v17{vertical-align:361.214806px;}
.v11{vertical-align:405.085679px;}
.v12{vertical-align:512.967270px;}
.v16{vertical-align:608.737518px;}
.v15{vertical-align:674.347552px;}
.ls58{letter-spacing:-66.810000px;}
.ls59{letter-spacing:-19.380000px;}
.ls1d{letter-spacing:-17.861021px;}
.ls3{letter-spacing:-17.826600px;}
.ls2{letter-spacing:-10.200000px;}
.ls1{letter-spacing:-9.486000px;}
.ls4{letter-spacing:-0.044400px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.015460px;}
.ls1b{letter-spacing:0.033948px;}
.ls38{letter-spacing:0.037154px;}
.ls4d{letter-spacing:0.037278px;}
.ls14{letter-spacing:0.038709px;}
.ls53{letter-spacing:0.048000px;}
.ls30{letter-spacing:0.049232px;}
.ls1c{letter-spacing:0.060254px;}
.ls13{letter-spacing:0.066178px;}
.ls12{letter-spacing:0.069762px;}
.ls2f{letter-spacing:0.102415px;}
.ls24{letter-spacing:0.110694px;}
.ls2e{letter-spacing:0.114380px;}
.ls44{letter-spacing:0.115412px;}
.ls31{letter-spacing:0.115798px;}
.ls57{letter-spacing:0.119552px;}
.ls28{letter-spacing:0.132120px;}
.ls4e{letter-spacing:0.132694px;}
.ls20{letter-spacing:0.133470px;}
.ls23{letter-spacing:0.135079px;}
.ls18{letter-spacing:0.136637px;}
.ls42{letter-spacing:0.140358px;}
.ls40{letter-spacing:0.142050px;}
.ls35{letter-spacing:0.142525px;}
.ls2a{letter-spacing:0.148656px;}
.ls51{letter-spacing:0.164274px;}
.ls3d{letter-spacing:0.166996px;}
.lsc{letter-spacing:0.167072px;}
.ls32{letter-spacing:0.167554px;}
.ls49{letter-spacing:0.175857px;}
.ls55{letter-spacing:0.203896px;}
.ls22{letter-spacing:0.215203px;}
.ls3f{letter-spacing:0.226310px;}
.ls34{letter-spacing:0.227066px;}
.ls25{letter-spacing:0.240534px;}
.ls41{letter-spacing:0.252948px;}
.ls48{letter-spacing:0.280171px;}
.ls56{letter-spacing:12.021104px;}
.ls21{letter-spacing:12.707282px;}
.ls3e{letter-spacing:13.307532px;}
.ls3c{letter-spacing:13.342554px;}
.ls33{letter-spacing:13.351998px;}
.ls45{letter-spacing:13.369193px;}
.ls4f{letter-spacing:14.304381px;}
.ls29{letter-spacing:14.977467px;}
.ls4c{letter-spacing:16.518001px;}
.ls43{letter-spacing:24.143395px;}
.ls54{letter-spacing:25.878457px;}
.ls47{letter-spacing:35.559161px;}
.ls50{letter-spacing:44.266617px;}
.ls16{letter-spacing:47.815488px;}
.ls19{letter-spacing:47.829207px;}
.ls17{letter-spacing:47.974220px;}
.ls1a{letter-spacing:47.981132px;}
.ls10{letter-spacing:52.516614px;}
.ls11{letter-spacing:52.698544px;}
.lse{letter-spacing:54.801092px;}
.lsf{letter-spacing:54.990936px;}
.ls3a{letter-spacing:57.588704px;}
.ls15{letter-spacing:59.940620px;}
.lsb{letter-spacing:63.089917px;}
.ls8{letter-spacing:69.398901px;}
.ls26{letter-spacing:70.131599px;}
.ls37{letter-spacing:73.921937px;}
.lsd{letter-spacing:75.427024px;}
.lsa{letter-spacing:79.182358px;}
.ls36{letter-spacing:83.359974px;}
.ls4b{letter-spacing:91.262009px;}
.ls4a{letter-spacing:91.563286px;}
.ls7{letter-spacing:96.482232px;}
.ls39{letter-spacing:118.080342px;}
.ls3b{letter-spacing:118.106980px;}
.ls6{letter-spacing:156.657600px;}
.ls2c{letter-spacing:156.657780px;}
.ls5{letter-spacing:156.658200px;}
.ls1f{letter-spacing:169.359600px;}
.ls1e{letter-spacing:169.360200px;}
.ls27{letter-spacing:202.907760px;}
.ls46{letter-spacing:213.312000px;}
.ls52{letter-spacing:219.360000px;}
.ls2d{letter-spacing:225.408000px;}
.ls2b{letter-spacing:397.516360px;}
.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;}
}
.wsd{word-spacing:-143.533747px;}
.ws2{word-spacing:-131.580000px;}
.ws22{word-spacing:-122.400000px;}
.ws0{word-spacing:-122.369400px;}
.wsa{word-spacing:-80.093894px;}
.ws4{word-spacing:-80.064000px;}
.ws21{word-spacing:-74.970000px;}
.wsf{word-spacing:-70.383962px;}
.wse{word-spacing:-66.720000px;}
.ws3{word-spacing:-61.716000px;}
.ws1c{word-spacing:-14.569768px;}
.ws11{word-spacing:-0.445969px;}
.ws1b{word-spacing:-0.398081px;}
.ws1f{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.266274px;}
.ws6{word-spacing:-0.249149px;}
.ws8{word-spacing:-0.246632px;}
.ws9{word-spacing:-0.236350px;}
.ws7{word-spacing:-0.226499px;}
.ws1d{word-spacing:-0.222925px;}
.wsb{word-spacing:-0.215193px;}
.ws1{word-spacing:0.000000px;}
.ws20{word-spacing:39.332503px;}
.ws1e{word-spacing:54.046143px;}
.ws12{word-spacing:79.208400px;}
.ws1a{word-spacing:128.189149px;}
.ws10{word-spacing:128.432039px;}
.ws15{word-spacing:144.303600px;}
.wsc{word-spacing:172.355391px;}
.ws13{word-spacing:1709.524800px;}
.ws14{word-spacing:1857.273600px;}
.ws16{word-spacing:2664.253200px;}
.ws17{word-spacing:2672.355600px;}
.ws18{word-spacing:3189.094800px;}
.ws5{word-spacing:5974.651800px;}
._20{margin-left:-2917.348800px;}
._21{margin-left:-2880.774000px;}
._1f{margin-left:-2092.810800px;}
._24{margin-left:-161.081553px;}
._23{margin-left:-147.436174px;}
._22{margin-left:-33.787800px;}
._12{margin-left:-31.635000px;}
._13{margin-left:-28.771200px;}
._15{margin-left:-26.716200px;}
._7{margin-left:-23.172000px;}
._1b{margin-left:-22.037400px;}
._b{margin-left:-20.002200px;}
._4{margin-left:-18.432000px;}
._d{margin-left:-17.015400px;}
._18{margin-left:-15.562200px;}
._16{margin-left:-13.614600px;}
._1a{margin-left:-12.189000px;}
._5{margin-left:-10.416000px;}
._6{margin-left:-8.556000px;}
._8{margin-left:-7.200000px;}
._1{margin-left:-6.096000px;}
._3{margin-left:-4.608000px;}
._0{margin-left:-3.120000px;}
._2{margin-left:-1.152000px;}
._14{width:1.011600px;}
._17{width:3.770400px;}
._a{width:5.616600px;}
._10{width:7.315200px;}
._e{width:9.174600px;}
._27{width:10.176000px;}
._19{width:15.108000px;}
._f{width:16.182000px;}
._c{width:18.261600px;}
._11{width:20.160000px;}
._25{width:24.110765px;}
._26{width:55.830000px;}
._9{width:182.706060px;}
._1e{width:1363.313400px;}
._1d{width:1703.176800px;}
._1c{width:3092.920200px;}
._28{width:4439.191200px;}
.fc9{color:rgb(255,157,53);}
.fc6{color:transparent;}
.fc4{color:rgb(24,103,154);}
.fc3{color:rgb(76,137,69);}
.fc8{color:rgb(166,170,169);}
.fc7{color:rgb(52,165,218);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(196,28,45);}
.fc1{color:rgb(131,135,135);}
.fc0{color:rgb(36,137,191);}
.fs9{font-size:0.000007px;}
.fs17{font-size:0.000008px;}
.fs2b{font-size:150.000000px;}
.fs13{font-size:150.635160px;}
.fsd{font-size:158.549573px;}
.fs11{font-size:165.445316px;}
.fs2a{font-size:167.372400px;}
.fsf{font-size:172.642204px;}
.fsb{font-size:174.404510px;}
.fs16{font-size:176.653953px;}
.fs1a{font-size:180.000000px;}
.fs1f{font-size:184.109640px;}
.fs23{font-size:185.771230px;}
.fs21{font-size:186.391972px;}
.fs1{font-size:192.000000px;}
.fs19{font-size:208.118960px;}
.fs3{font-size:210.000000px;}
.fs12{font-size:215.193024px;}
.fs5{font-size:216.000000px;}
.fs1d{font-size:220.354680px;}
.fs6{font-size:222.000000px;}
.fs24{font-size:222.450349px;}
.fsc{font-size:226.499325px;}
.fs28{font-size:229.983653px;}
.fs8{font-size:233.100000px;}
.fs10{font-size:236.350384px;}
.fs29{font-size:239.103360px;}
.fs0{font-size:240.000000px;}
.fse{font-size:246.631649px;}
.fsa{font-size:249.149228px;}
.fs14{font-size:252.000000px;}
.fs15{font-size:252.362717px;}
.fs26{font-size:258.000000px;}
.fs1e{font-size:263.013696px;}
.fs22{font-size:265.387395px;}
.fs20{font-size:266.274169px;}
.fs25{font-size:270.900000px;}
.fs1c{font-size:282.000000px;}
.fs7{font-size:288.000000px;}
.fs18{font-size:297.312714px;}
.fs27{font-size:328.547982px;}
.fs1b{font-size:378.000000px;}
.fs2{font-size:474.300000px;}
.fs4{font-size:510.000000px;}
.y68{bottom:-48.074160px;}
.y0{bottom:0.000000px;}
.ye6{bottom:1.775135px;}
.y46{bottom:1.886744px;}
.y41{bottom:1.968179px;}
.y3b{bottom:1.988112px;}
.ydd{bottom:12.852315px;}
.y4c{bottom:15.632400px;}
.ycb{bottom:16.023000px;}
.y3e{bottom:18.858485px;}
.y79{bottom:19.345374px;}
.yf3{bottom:19.908450px;}
.y57{bottom:21.011802px;}
.yc8{bottom:21.250500px;}
.yd4{bottom:21.898200px;}
.yd7{bottom:22.169880px;}
.yd9{bottom:22.170330px;}
.yea{bottom:27.355536px;}
.y85{bottom:28.206300px;}
.y13{bottom:28.901730px;}
.y2{bottom:28.901805px;}
.y33{bottom:28.989750px;}
.yde{bottom:30.686631px;}
.y81{bottom:31.837395px;}
.ye5{bottom:44.656920px;}
.y4b{bottom:52.536000px;}
.y45{bottom:59.309172px;}
.yd3{bottom:59.399989px;}
.y40{bottom:61.889130px;}
.y3a{bottom:62.520876px;}
.y56{bottom:69.659984px;}
.yd6{bottom:73.500016px;}
.yf2{bottom:77.999992px;}
.ydf{bottom:81.179452px;}
.y84{bottom:83.556300px;}
.y4d{bottom:88.932000px;}
.y65{bottom:89.127600px;}
.ydc{bottom:91.135502px;}
.y1c{bottom:92.301270px;}
.ye9{bottom:107.178552px;}
.yf6{bottom:111.542310px;}
.y78{bottom:120.616793px;}
.y4a{bottom:129.600000px;}
.y83{bottom:138.906300px;}
.y80{bottom:142.694205px;}
.ye8{bottom:154.127850px;}
.y9a{bottom:162.430950px;}
.y69{bottom:165.916800px;}
.y32{bottom:167.607450px;}
.y44{bottom:173.141400px;}
.y96{bottom:174.764550px;}
.y43{bottom:175.499850px;}
.yf5{bottom:180.306450px;}
.ye7{bottom:182.665050px;}
.yd0{bottom:183.238145px;}
.y77{bottom:186.517215px;}
.y7e{bottom:195.601050px;}
.ydb{bottom:199.786986px;}
.y70{bottom:208.970700px;}
.y99{bottom:219.130950px;}
.y16{bottom:223.062900px;}
.y6{bottom:224.442900px;}
.y2c{bottom:224.458650px;}
.y25{bottom:228.074100px;}
.y22{bottom:228.149400px;}
.y7d{bottom:252.301050px;}
.yc7{bottom:267.872250px;}
.y3f{bottom:292.986150px;}
.y42{bottom:299.099850px;}
.y8f{bottom:305.464650px;}
.y5{bottom:306.942900px;}
.yb5{bottom:308.543700px;}
.ycc{bottom:309.725550px;}
.y50{bottom:311.632650px;}
.y53{bottom:324.406800px;}
.y12{bottom:336.024600px;}
.y64{bottom:336.157350px;}
.y92{bottom:336.823800px;}
.ya7{bottom:336.962700px;}
.yd8{bottom:337.452600px;}
.ye4{bottom:351.874050px;}
.ye3{bottom:353.999400px;}
.y98{bottom:355.605600px;}
.y8e{bottom:362.164650px;}
.ybe{bottom:364.374600px;}
.yb4{bottom:365.243700px;}
.ycf{bottom:366.591000px;}
.y2b{bottom:380.158650px;}
.y5b{bottom:381.195750px;}
.ycd{bottom:385.968150px;}
.y7b{bottom:388.902300px;}
.yef{bottom:391.107900px;}
.y11{bottom:392.724600px;}
.ya6{bottom:393.662700px;}
.y24{bottom:409.200450px;}
.yc9{bottom:412.626600px;}
.ybd{bottom:421.074600px;}
.y34{bottom:429.590250px;}
.y7{bottom:439.849950px;}
.ya5{bottom:450.362700px;}
.y52{bottom:454.006800px;}
.y4e{bottom:461.486550px;}
.y2f{bottom:468.417900px;}
.y76{bottom:473.232000px;}
.y91{bottom:486.435000px;}
.y8d{bottom:493.718550px;}
.yd1{bottom:496.724781px;}
.yca{bottom:496.775400px;}
.yd5{bottom:500.384550px;}
.yee{bottom:512.697000px;}
.ya4{bottom:514.416600px;}
.y1{bottom:514.592100px;}
.y10{bottom:516.924600px;}
.ye2{bottom:516.931350px;}
.y2a{bottom:535.858650px;}
.ybc{bottom:545.274600px;}
.y6d{bottom:546.086550px;}
.y4f{bottom:546.309900px;}
.yae{bottom:551.117700px;}
.y1d{bottom:551.566350px;}
.y63{bottom:554.124600px;}
.y94{bottom:566.001900px;}
.yb3{bottom:568.395150px;}
.y6e{bottom:582.502650px;}
.yed{bottom:582.807900px;}
.y7c{bottom:590.412450px;}
.yac{bottom:602.430750px;}
.y3d{bottom:603.616050px;}
.y90{bottom:610.168950px;}
.y62{bottom:610.824600px;}
.y3c{bottom:615.040650px;}
.y2e{bottom:616.500000px;}
.y8c{bottom:617.918550px;}
.y21{bottom:629.883450px;}
.ya3{bottom:631.262700px;}
.ye1{bottom:632.458050px;}
.y48{bottom:635.724600px;}
.yf{bottom:641.124600px;}
.y5a{bottom:653.502000px;}
.y15{bottom:653.990400px;}
.yab{bottom:659.130750px;}
.ybb{bottom:669.474600px;}
.y61{bottom:674.878500px;}
.y4{bottom:682.119450px;}
.yd2{bottom:683.378100px;}
.y20{bottom:686.583450px;}
.ya2{bottom:687.962700px;}
.y29{bottom:691.558650px;}
.yb2{bottom:692.595150px;}
.ye0{bottom:694.558050px;}
.yc6{bottom:696.419700px;}
.ye{bottom:697.824600px;}
.y71{bottom:700.493850px;}
.yec{bottom:704.397000px;}
.y59{bottom:708.852000px;}
.yaa{bottom:715.830750px;}
.y8b{bottom:742.118550px;}
.ya1{bottom:744.662700px;}
.y6c{bottom:749.593650px;}
.y55{bottom:750.703650px;}
.ybf{bottom:753.070800px;}
.yc5{bottom:758.519700px;}
.y75{bottom:763.462800px;}
.y58{bottom:764.202000px;}
.yeb{bottom:774.507900px;}
.yc0{bottom:789.702900px;}
.y60{bottom:791.724600px;}
.yba{bottom:793.674600px;}
.y3{bottom:798.007350px;}
.ya0{bottom:808.716600px;}
.yb1{bottom:816.795150px;}
.y74{bottom:820.162800px;}
.yd{bottom:822.024600px;}
.y17{bottom:823.900800px;}
.y1f{bottom:824.581200px;}
.yc4{bottom:828.630600px;}
.y39{bottom:830.106750px;}
.y38{bottom:836.852250px;}
.y28{bottom:847.258650px;}
.yb9{bottom:850.374600px;}
.y5f{bottom:855.778500px;}
.y8a{bottom:858.964650px;}
.y49{bottom:874.587600px;}
.yc{bottom:878.724600px;}
.yda{bottom:899.790750px;}
.y89{bottom:915.664650px;}
.y82{bottom:921.671250px;}
.y9f{bottom:925.562700px;}
.yf4{bottom:938.671350px;}
.y93{bottom:939.711150px;}
.yb0{bottom:940.995150px;}
.yc3{bottom:950.219700px;}
.y6b{bottom:953.100750px;}
.y5e{bottom:972.624600px;}
.yb8{bottom:974.574600px;}
.y88{bottom:979.718550px;}
.y67{bottom:982.113150px;}
.yf1{bottom:982.153050px;}
.y9e{bottom:989.616600px;}
.yb{bottom:1002.924600px;}
.y27{bottom:1002.958650px;}
.yc2{bottom:1020.330600px;}
.yb7{bottom:1031.274600px;}
.y5d{bottom:1036.678500px;}
.y37{bottom:1037.561700px;}
.ya9{bottom:1047.929100px;}
.yaf{bottom:1057.841250px;}
.ya{bottom:1059.624600px;}
.y54{bottom:1076.148750px;}
.yad{bottom:1076.279100px;}
.y1b{bottom:1081.499700px;}
.y14{bottom:1084.917900px;}
.y87{bottom:1096.564650px;}
.y31{bottom:1100.655750px;}
.y9c{bottom:1102.387200px;}
.y19{bottom:1104.164250px;}
.ya8{bottom:1104.629100px;}
.y9d{bottom:1113.816600px;}
.y36{bottom:1131.761700px;}
.y73{bottom:1139.329350px;}
.yc1{bottom:1149.930600px;}
.y26{bottom:1151.304750px;}
.y1e{bottom:1157.276850px;}
.y30{bottom:1157.355750px;}
.yf7{bottom:1158.201000px;}
.y9b{bottom:1159.087200px;}
.y7a{bottom:1159.379850px;}
.y86{bottom:1160.618550px;}
.y18{bottom:1160.864250px;}
.y6a{bottom:1167.679350px;}
.yf0{bottom:1167.689100px;}
.y51{bottom:1188.094050px;}
.yce{bottom:1195.112100px;}
.y95{bottom:1195.247250px;}
.y72{bottom:1196.029350px;}
.y23{bottom:1199.530950px;}
.y6f{bottom:1206.114750px;}
.y47{bottom:1206.499950px;}
.y97{bottom:1209.778200px;}
.y1a{bottom:1209.814950px;}
.y66{bottom:1211.521800px;}
.y35{bottom:1218.607800px;}
.y7f{bottom:1222.672050px;}
.y5c{bottom:1223.024100px;}
.y2d{bottom:1223.031150px;}
.y8{bottom:1363.365300px;}
.yb6{bottom:1370.865300px;}
.y9{bottom:1491.208050px;}
.hf{height:0.000005px;}
.h3d{height:0.000006px;}
.h39{height:44.656905px;}
.h29{height:48.613500px;}
.h14{height:59.309175px;}
.h2d{height:59.400000px;}
.h12{height:61.889130px;}
.he{height:62.520885px;}
.h27{height:64.425000px;}
.h1c{height:69.660000px;}
.h2f{height:73.500000px;}
.h3f{height:78.000000px;}
.h24{height:92.234940px;}
.hd{height:94.530390px;}
.h2c{height:97.396768px;}
.h3c{height:107.178525px;}
.h41{height:113.400000px;}
.h2e{height:116.252054px;}
.h35{height:123.352096px;}
.h2a{height:124.362000px;}
.h16{height:129.600000px;}
.h25{height:136.080000px;}
.h2{height:145.152000px;}
.h19{height:146.976835px;}
.h3a{height:147.039681px;}
.h6{height:155.355469px;}
.h4{height:158.760000px;}
.h1e{height:162.000000px;}
.h18{height:162.186546px;}
.h7{height:166.500000px;}
.h28{height:166.698000px;}
.hb{height:167.365800px;}
.h11{height:169.874494px;}
.h1a{height:180.000000px;}
.h1b{height:180.936000px;}
.h1{height:181.440000px;}
.h30{height:184.794273px;}
.h20{height:186.517200px;}
.h1d{height:189.272038px;}
.h3b{height:194.506200px;}
.h37{height:199.040546px;}
.h31{height:199.705627px;}
.h32{height:199.786950px;}
.h26{height:202.878150px;}
.h23{height:206.335024px;}
.h15{height:207.431145px;}
.h40{height:209.847274px;}
.h8{height:216.000000px;}
.h13{height:216.454420px;}
.h10{height:218.663954px;}
.h38{height:238.864745px;}
.h21{height:246.072581px;}
.h33{height:252.104493px;}
.ha{height:276.000000px;}
.h3e{height:288.347676px;}
.h17{height:292.560835px;}
.h3{height:346.713300px;}
.h1f{height:351.979200px;}
.h5{height:372.810000px;}
.h36{height:418.956868px;}
.hc{height:520.500000px;}
.h22{height:651.158260px;}
.h2b{height:692.973900px;}
.h9{height:706.500000px;}
.h34{height:732.089614px;}
.h0{height:1620.000000px;}
.w16{width:22.328460px;}
.w10{width:35.641500px;}
.wf{width:46.375500px;}
.wb{width:66.565530px;}
.w13{width:86.863635px;}
.w12{width:112.199985px;}
.w14{width:147.000000px;}
.w7{width:167.100600px;}
.w8{width:183.858450px;}
.w18{width:216.000000px;}
.w5{width:256.335600px;}
.wd{width:284.910000px;}
.w4{width:337.218900px;}
.w6{width:352.390500px;}
.wa{width:354.632700px;}
.wc{width:559.551750px;}
.w17{width:585.359550px;}
.w9{width:675.001500px;}
.w2{width:1054.500000px;}
.w3{width:1083.000000px;}
.w11{width:1100.507100px;}
.we{width:1300.438800px;}
.w1{width:1317.000000px;}
.w15{width:1318.595700px;}
.w0{width:2880.000000px;}
.x71{left:-2.754000px;}
.x10{left:-1.593000px;}
.x0{left:0.000000px;}
.x22{left:1.469113px;}
.x28{left:3.196800px;}
.x42{left:6.088482px;}
.x1e{left:15.765000px;}
.x41{left:26.985877px;}
.x49{left:30.814650px;}
.x2{left:39.246525px;}
.x48{left:43.879650px;}
.x33{left:98.786160px;}
.x2e{left:111.430095px;}
.xa{left:124.344585px;}
.x53{left:126.587355px;}
.x8{left:148.500000px;}
.x60{left:150.306450px;}
.x61{left:151.325550px;}
.x36{left:152.450400px;}
.x13{left:153.672150px;}
.x6e{left:155.586900px;}
.x14{left:156.913500px;}
.x1c{left:158.882400px;}
.x52{left:160.775550px;}
.x1f{left:162.264900px;}
.x45{left:165.775200px;}
.x17{left:167.995800px;}
.x18{left:175.274700px;}
.x34{left:176.713350px;}
.x55{left:180.274200px;}
.x54{left:184.399800px;}
.x4f{left:185.657100px;}
.x2d{left:188.113800px;}
.xb{left:207.594600px;}
.x4b{left:211.742250px;}
.x58{left:215.446650px;}
.x19{left:251.022900px;}
.x4c{left:269.554800px;}
.x67{left:275.879245px;}
.x4d{left:286.742250px;}
.x43{left:298.510266px;}
.x20{left:312.264900px;}
.x68{left:346.190932px;}
.x29{left:388.351800px;}
.x12{left:430.690950px;}
.x4a{left:440.560800px;}
.x44{left:444.224700px;}
.x62{left:456.580267px;}
.x3{left:474.781050px;}
.x37{left:485.527950px;}
.x69{left:496.324165px;}
.x3d{left:502.077150px;}
.x50{left:520.168950px;}
.x5{left:525.600000px;}
.x6a{left:566.635853px;}
.x56{left:570.898500px;}
.x2b{left:572.535000px;}
.x2a{left:586.369800px;}
.x74{left:616.558200px;}
.x70{left:627.853950px;}
.x23{left:795.447300px;}
.x47{left:810.252450px;}
.x30{left:823.369500px;}
.x2f{left:824.766900px;}
.x21{left:843.474750px;}
.x4{left:859.556850px;}
.x4e{left:881.742600px;}
.x51{left:938.390100px;}
.x5f{left:962.234400px;}
.x25{left:1016.523750px;}
.x26{left:1018.770600px;}
.x38{left:1063.789800px;}
.x1{left:1084.620000px;}
.x7{left:1157.865000px;}
.x57{left:1184.435850px;}
.x31{left:1226.879700px;}
.x6{left:1264.380000px;}
.x6b{left:1267.961302px;}
.x66{left:1272.981300px;}
.x5a{left:1303.745250px;}
.x5d{left:1309.773600px;}
.x65{left:1366.500000px;}
.x63{left:1383.900000px;}
.x64{left:1396.568250px;}
.x3e{left:1406.717250px;}
.x59{left:1411.374000px;}
.x5c{left:1416.692550px;}
.x27{left:1426.657950px;}
.x24{left:1435.036800px;}
.x72{left:1471.075650px;}
.x5b{left:1519.434000px;}
.x5e{left:1523.331000px;}
.x3c{left:1552.791000px;}
.xd{left:1561.407000px;}
.xf{left:1563.000000px;}
.x46{left:1572.277500px;}
.x3f{left:1596.877500px;}
.x6c{left:1598.593500px;}
.x39{left:1760.844000px;}
.xc{left:1794.774000px;}
.x1b{left:1797.000000px;}
.xe{left:1824.451500px;}
.x11{left:1825.500000px;}
.x40{left:1861.462500px;}
.x2c{left:2126.533500px;}
.x3b{left:2129.644500px;}
.x6f{left:2159.694000px;}
.x6d{left:2168.808000px;}
.x73{left:2175.063000px;}
.x3a{left:2208.321000px;}
.x32{left:2353.152000px;}
.x16{left:2358.070500px;}
.x35{left:2496.309000px;}
.x1d{left:2517.045000px;}
.x15{left:2610.970500px;}
.x1a{left:2731.081500px;}
.x9{left:2757.000000px;}
@media print{
.v1{vertical-align:-84.629333pt;}
.v13{vertical-align:-35.082667pt;}
.vc{vertical-align:-33.661962pt;}
.v4{vertical-align:-30.212116pt;}
.v7{vertical-align:-28.704000pt;}
.v2{vertical-align:-26.147200pt;}
.ve{vertical-align:-4.094400pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:28.704000pt;}
.v19{vertical-align:35.399288pt;}
.vb{vertical-align:55.257600pt;}
.v9{vertical-align:78.969600pt;}
.v6{vertical-align:86.733738pt;}
.v1b{vertical-align:87.744000pt;}
.v5{vertical-align:90.506664pt;}
.v3{vertical-align:91.430542pt;}
.vf{vertical-align:95.894748pt;}
.v1a{vertical-align:120.567583pt;}
.va{vertical-align:129.408000pt;}
.vd{vertical-align:164.870400pt;}
.v10{vertical-align:181.284844pt;}
.v14{vertical-align:224.092882pt;}
.v18{vertical-align:262.759797pt;}
.v17{vertical-align:321.079827pt;}
.v11{vertical-align:360.076159pt;}
.v12{vertical-align:455.970907pt;}
.v16{vertical-align:541.100016pt;}
.v15{vertical-align:599.420046pt;}
.ls58{letter-spacing:-59.386667pt;}
.ls59{letter-spacing:-17.226667pt;}
.ls1d{letter-spacing:-15.876463pt;}
.ls3{letter-spacing:-15.845867pt;}
.ls2{letter-spacing:-9.066667pt;}
.ls1{letter-spacing:-8.432000pt;}
.ls4{letter-spacing:-0.039467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.013742pt;}
.ls1b{letter-spacing:0.030176pt;}
.ls38{letter-spacing:0.033026pt;}
.ls4d{letter-spacing:0.033136pt;}
.ls14{letter-spacing:0.034408pt;}
.ls53{letter-spacing:0.042667pt;}
.ls30{letter-spacing:0.043762pt;}
.ls1c{letter-spacing:0.053559pt;}
.ls13{letter-spacing:0.058825pt;}
.ls12{letter-spacing:0.062010pt;}
.ls2f{letter-spacing:0.091035pt;}
.ls24{letter-spacing:0.098395pt;}
.ls2e{letter-spacing:0.101671pt;}
.ls44{letter-spacing:0.102588pt;}
.ls31{letter-spacing:0.102931pt;}
.ls57{letter-spacing:0.106268pt;}
.ls28{letter-spacing:0.117440pt;}
.ls4e{letter-spacing:0.117950pt;}
.ls20{letter-spacing:0.118640pt;}
.ls23{letter-spacing:0.120070pt;}
.ls18{letter-spacing:0.121455pt;}
.ls42{letter-spacing:0.124763pt;}
.ls40{letter-spacing:0.126267pt;}
.ls35{letter-spacing:0.126689pt;}
.ls2a{letter-spacing:0.132139pt;}
.ls51{letter-spacing:0.146021pt;}
.ls3d{letter-spacing:0.148441pt;}
.lsc{letter-spacing:0.148509pt;}
.ls32{letter-spacing:0.148937pt;}
.ls49{letter-spacing:0.156317pt;}
.ls55{letter-spacing:0.181241pt;}
.ls22{letter-spacing:0.191292pt;}
.ls3f{letter-spacing:0.201165pt;}
.ls34{letter-spacing:0.201837pt;}
.ls25{letter-spacing:0.213808pt;}
.ls41{letter-spacing:0.224843pt;}
.ls48{letter-spacing:0.249041pt;}
.ls56{letter-spacing:10.685426pt;}
.ls21{letter-spacing:11.295361pt;}
.ls3e{letter-spacing:11.828917pt;}
.ls3c{letter-spacing:11.860048pt;}
.ls33{letter-spacing:11.868443pt;}
.ls45{letter-spacing:11.883727pt;}
.ls4f{letter-spacing:12.715005pt;}
.ls29{letter-spacing:13.313304pt;}
.ls4c{letter-spacing:14.682668pt;}
.ls43{letter-spacing:21.460796pt;}
.ls54{letter-spacing:23.003073pt;}
.ls47{letter-spacing:31.608143pt;}
.ls50{letter-spacing:39.348104pt;}
.ls16{letter-spacing:42.502656pt;}
.ls19{letter-spacing:42.514850pt;}
.ls17{letter-spacing:42.643751pt;}
.ls1a{letter-spacing:42.649895pt;}
.ls10{letter-spacing:46.681434pt;}
.ls11{letter-spacing:46.843150pt;}
.lse{letter-spacing:48.712082pt;}
.lsf{letter-spacing:48.880832pt;}
.ls3a{letter-spacing:51.189959pt;}
.ls15{letter-spacing:53.280551pt;}
.lsb{letter-spacing:56.079926pt;}
.ls8{letter-spacing:61.687912pt;}
.ls26{letter-spacing:62.339199pt;}
.ls37{letter-spacing:65.708388pt;}
.lsd{letter-spacing:67.046243pt;}
.lsa{letter-spacing:70.384318pt;}
.ls36{letter-spacing:74.097755pt;}
.ls4b{letter-spacing:81.121786pt;}
.ls4a{letter-spacing:81.389587pt;}
.ls7{letter-spacing:85.761984pt;}
.ls39{letter-spacing:104.960304pt;}
.ls3b{letter-spacing:104.983983pt;}
.ls6{letter-spacing:139.251200pt;}
.ls2c{letter-spacing:139.251360pt;}
.ls5{letter-spacing:139.251733pt;}
.ls1f{letter-spacing:150.541867pt;}
.ls1e{letter-spacing:150.542400pt;}
.ls27{letter-spacing:180.362453pt;}
.ls46{letter-spacing:189.610667pt;}
.ls52{letter-spacing:194.986667pt;}
.ls2d{letter-spacing:200.362667pt;}
.ls2b{letter-spacing:353.347875pt;}
.wsd{word-spacing:-127.585553pt;}
.ws2{word-spacing:-116.960000pt;}
.ws22{word-spacing:-108.800000pt;}
.ws0{word-spacing:-108.772800pt;}
.wsa{word-spacing:-71.194572pt;}
.ws4{word-spacing:-71.168000pt;}
.ws21{word-spacing:-66.640000pt;}
.wsf{word-spacing:-62.563522pt;}
.wse{word-spacing:-59.306667pt;}
.ws3{word-spacing:-54.858667pt;}
.ws1c{word-spacing:-12.950905pt;}
.ws11{word-spacing:-0.396417pt;}
.ws1b{word-spacing:-0.353850pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.236688pt;}
.ws6{word-spacing:-0.221466pt;}
.ws8{word-spacing:-0.219228pt;}
.ws9{word-spacing:-0.210089pt;}
.ws7{word-spacing:-0.201333pt;}
.ws1d{word-spacing:-0.198156pt;}
.wsb{word-spacing:-0.191283pt;}
.ws1{word-spacing:0.000000pt;}
.ws20{word-spacing:34.962225pt;}
.ws1e{word-spacing:48.041016pt;}
.ws12{word-spacing:70.407467pt;}
.ws1a{word-spacing:113.945911pt;}
.ws10{word-spacing:114.161812pt;}
.ws15{word-spacing:128.269867pt;}
.wsc{word-spacing:153.204792pt;}
.ws13{word-spacing:1519.577600pt;}
.ws14{word-spacing:1650.909867pt;}
.ws16{word-spacing:2368.225067pt;}
.ws17{word-spacing:2375.427200pt;}
.ws18{word-spacing:2834.750933pt;}
.ws5{word-spacing:5310.801600pt;}
._20{margin-left:-2593.198933pt;}
._21{margin-left:-2560.688000pt;}
._1f{margin-left:-1860.276267pt;}
._24{margin-left:-143.183602pt;}
._23{margin-left:-131.054377pt;}
._22{margin-left:-30.033600pt;}
._12{margin-left:-28.120000pt;}
._13{margin-left:-25.574400pt;}
._15{margin-left:-23.747733pt;}
._7{margin-left:-20.597333pt;}
._1b{margin-left:-19.588800pt;}
._b{margin-left:-17.779733pt;}
._4{margin-left:-16.384000pt;}
._d{margin-left:-15.124800pt;}
._18{margin-left:-13.833067pt;}
._16{margin-left:-12.101867pt;}
._1a{margin-left:-10.834667pt;}
._5{margin-left:-9.258667pt;}
._6{margin-left:-7.605333pt;}
._8{margin-left:-6.400000pt;}
._1{margin-left:-5.418667pt;}
._3{margin-left:-4.096000pt;}
._0{margin-left:-2.773333pt;}
._2{margin-left:-1.024000pt;}
._14{width:0.899200pt;}
._17{width:3.351467pt;}
._a{width:4.992533pt;}
._10{width:6.502400pt;}
._e{width:8.155200pt;}
._27{width:9.045333pt;}
._19{width:13.429333pt;}
._f{width:14.384000pt;}
._c{width:16.232533pt;}
._11{width:17.920000pt;}
._25{width:21.431791pt;}
._26{width:49.626667pt;}
._9{width:162.405387pt;}
._1e{width:1211.834133pt;}
._1d{width:1513.934933pt;}
._1c{width:2749.262400pt;}
._28{width:3945.947733pt;}
.fs9{font-size:0.000006pt;}
.fs17{font-size:0.000007pt;}
.fs2b{font-size:133.333333pt;}
.fs13{font-size:133.897920pt;}
.fsd{font-size:140.932954pt;}
.fs11{font-size:147.062503pt;}
.fs2a{font-size:148.775467pt;}
.fsf{font-size:153.459737pt;}
.fsb{font-size:155.026231pt;}
.fs16{font-size:157.025736pt;}
.fs1a{font-size:160.000000pt;}
.fs1f{font-size:163.653013pt;}
.fs23{font-size:165.129982pt;}
.fs21{font-size:165.681753pt;}
.fs1{font-size:170.666667pt;}
.fs19{font-size:184.994631pt;}
.fs3{font-size:186.666667pt;}
.fs12{font-size:191.282688pt;}
.fs5{font-size:192.000000pt;}
.fs1d{font-size:195.870826pt;}
.fs6{font-size:197.333333pt;}
.fs24{font-size:197.733644pt;}
.fsc{font-size:201.332734pt;}
.fs28{font-size:204.429914pt;}
.fs8{font-size:207.200000pt;}
.fs10{font-size:210.089230pt;}
.fs29{font-size:212.536320pt;}
.fs0{font-size:213.333333pt;}
.fse{font-size:219.228132pt;}
.fsa{font-size:221.465980pt;}
.fs14{font-size:224.000000pt;}
.fs15{font-size:224.322415pt;}
.fs26{font-size:229.333333pt;}
.fs1e{font-size:233.789952pt;}
.fs22{font-size:235.899906pt;}
.fs20{font-size:236.688150pt;}
.fs25{font-size:240.800000pt;}
.fs1c{font-size:250.666667pt;}
.fs7{font-size:256.000000pt;}
.fs18{font-size:264.277968pt;}
.fs27{font-size:292.042650pt;}
.fs1b{font-size:336.000000pt;}
.fs2{font-size:421.600000pt;}
.fs4{font-size:453.333333pt;}
.y68{bottom:-42.732587pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:1.577897pt;}
.y46{bottom:1.677106pt;}
.y41{bottom:1.749493pt;}
.y3b{bottom:1.767210pt;}
.ydd{bottom:11.424280pt;}
.y4c{bottom:13.895467pt;}
.ycb{bottom:14.242667pt;}
.y3e{bottom:16.763097pt;}
.y79{bottom:17.195888pt;}
.yf3{bottom:17.696400pt;}
.y57{bottom:18.677157pt;}
.yc8{bottom:18.889333pt;}
.yd4{bottom:19.465067pt;}
.yd7{bottom:19.706560pt;}
.yd9{bottom:19.706960pt;}
.yea{bottom:24.316032pt;}
.y85{bottom:25.072267pt;}
.y13{bottom:25.690427pt;}
.y2{bottom:25.690493pt;}
.y33{bottom:25.768667pt;}
.yde{bottom:27.277005pt;}
.y81{bottom:28.299907pt;}
.ye5{bottom:39.695040pt;}
.y4b{bottom:46.698667pt;}
.y45{bottom:52.719264pt;}
.yd3{bottom:52.799990pt;}
.y40{bottom:55.012560pt;}
.y3a{bottom:55.574112pt;}
.y56{bottom:61.919986pt;}
.yd6{bottom:65.333347pt;}
.yf2{bottom:69.333326pt;}
.ydf{bottom:72.159513pt;}
.y84{bottom:74.272267pt;}
.y4d{bottom:79.050667pt;}
.y65{bottom:79.224533pt;}
.ydc{bottom:81.009335pt;}
.y1c{bottom:82.045573pt;}
.ye9{bottom:95.269824pt;}
.yf6{bottom:99.148720pt;}
.y78{bottom:107.214927pt;}
.y4a{bottom:115.200000pt;}
.y83{bottom:123.472267pt;}
.y80{bottom:126.839293pt;}
.ye8{bottom:137.002533pt;}
.y9a{bottom:144.383067pt;}
.y69{bottom:147.481600pt;}
.y32{bottom:148.984400pt;}
.y44{bottom:153.903467pt;}
.y96{bottom:155.346267pt;}
.y43{bottom:155.999867pt;}
.yf5{bottom:160.272400pt;}
.ye7{bottom:162.368933pt;}
.yd0{bottom:162.878351pt;}
.y77{bottom:165.793080pt;}
.y7e{bottom:173.867600pt;}
.ydb{bottom:177.588432pt;}
.y70{bottom:185.751733pt;}
.y99{bottom:194.783067pt;}
.y16{bottom:198.278133pt;}
.y6{bottom:199.504800pt;}
.y2c{bottom:199.518800pt;}
.y25{bottom:202.732533pt;}
.y22{bottom:202.799467pt;}
.y7d{bottom:224.267600pt;}
.yc7{bottom:238.108667pt;}
.y3f{bottom:260.432133pt;}
.y42{bottom:265.866533pt;}
.y8f{bottom:271.524133pt;}
.y5{bottom:272.838133pt;}
.yb5{bottom:274.261067pt;}
.ycc{bottom:275.311600pt;}
.y50{bottom:277.006800pt;}
.y53{bottom:288.361600pt;}
.y12{bottom:298.688533pt;}
.y64{bottom:298.806533pt;}
.y92{bottom:299.398933pt;}
.ya7{bottom:299.522400pt;}
.yd8{bottom:299.957867pt;}
.ye4{bottom:312.776933pt;}
.ye3{bottom:314.666133pt;}
.y98{bottom:316.093867pt;}
.y8e{bottom:321.924133pt;}
.ybe{bottom:323.888533pt;}
.yb4{bottom:324.661067pt;}
.ycf{bottom:325.858667pt;}
.y2b{bottom:337.918800pt;}
.y5b{bottom:338.840667pt;}
.ycd{bottom:343.082800pt;}
.y7b{bottom:345.690933pt;}
.yef{bottom:347.651467pt;}
.y11{bottom:349.088533pt;}
.ya6{bottom:349.922400pt;}
.y24{bottom:363.733733pt;}
.yc9{bottom:366.779200pt;}
.ybd{bottom:374.288533pt;}
.y34{bottom:381.858000pt;}
.y7{bottom:390.977733pt;}
.ya5{bottom:400.322400pt;}
.y52{bottom:403.561600pt;}
.y4e{bottom:410.210267pt;}
.y2f{bottom:416.371467pt;}
.y76{bottom:420.650667pt;}
.y91{bottom:432.386667pt;}
.y8d{bottom:438.860933pt;}
.yd1{bottom:441.533139pt;}
.yca{bottom:441.578133pt;}
.yd5{bottom:444.786267pt;}
.yee{bottom:455.730667pt;}
.ya4{bottom:457.259200pt;}
.y1{bottom:457.415200pt;}
.y10{bottom:459.488533pt;}
.ye2{bottom:459.494533pt;}
.y2a{bottom:476.318800pt;}
.ybc{bottom:484.688533pt;}
.y6d{bottom:485.410267pt;}
.y4f{bottom:485.608800pt;}
.yae{bottom:489.882400pt;}
.y1d{bottom:490.281200pt;}
.y63{bottom:492.555200pt;}
.y94{bottom:503.112800pt;}
.yb3{bottom:505.240133pt;}
.y6e{bottom:517.780133pt;}
.yed{bottom:518.051467pt;}
.y7c{bottom:524.811067pt;}
.yac{bottom:535.494000pt;}
.y3d{bottom:536.547600pt;}
.y90{bottom:542.372400pt;}
.y62{bottom:542.955200pt;}
.y3c{bottom:546.702800pt;}
.y2e{bottom:548.000000pt;}
.y8c{bottom:549.260933pt;}
.y21{bottom:559.896400pt;}
.ya3{bottom:561.122400pt;}
.ye1{bottom:562.184933pt;}
.y48{bottom:565.088533pt;}
.yf{bottom:569.888533pt;}
.y5a{bottom:580.890667pt;}
.y15{bottom:581.324800pt;}
.yab{bottom:585.894000pt;}
.ybb{bottom:595.088533pt;}
.y61{bottom:599.892000pt;}
.y4{bottom:606.328400pt;}
.yd2{bottom:607.447200pt;}
.y20{bottom:610.296400pt;}
.ya2{bottom:611.522400pt;}
.y29{bottom:614.718800pt;}
.yb2{bottom:615.640133pt;}
.ye0{bottom:617.384933pt;}
.yc6{bottom:619.039733pt;}
.ye{bottom:620.288533pt;}
.y71{bottom:622.661200pt;}
.yec{bottom:626.130667pt;}
.y59{bottom:630.090667pt;}
.yaa{bottom:636.294000pt;}
.y8b{bottom:659.660933pt;}
.ya1{bottom:661.922400pt;}
.y6c{bottom:666.305467pt;}
.y55{bottom:667.292133pt;}
.ybf{bottom:669.396267pt;}
.yc5{bottom:674.239733pt;}
.y75{bottom:678.633600pt;}
.y58{bottom:679.290667pt;}
.yeb{bottom:688.451467pt;}
.yc0{bottom:701.958133pt;}
.y60{bottom:703.755200pt;}
.yba{bottom:705.488533pt;}
.y3{bottom:709.339867pt;}
.ya0{bottom:718.859200pt;}
.yb1{bottom:726.040133pt;}
.y74{bottom:729.033600pt;}
.yd{bottom:730.688533pt;}
.y17{bottom:732.356267pt;}
.y1f{bottom:732.961067pt;}
.yc4{bottom:736.560533pt;}
.y39{bottom:737.872667pt;}
.y38{bottom:743.868667pt;}
.y28{bottom:753.118800pt;}
.yb9{bottom:755.888533pt;}
.y5f{bottom:760.692000pt;}
.y8a{bottom:763.524133pt;}
.y49{bottom:777.411200pt;}
.yc{bottom:781.088533pt;}
.yda{bottom:799.814000pt;}
.y89{bottom:813.924133pt;}
.y82{bottom:819.263333pt;}
.y9f{bottom:822.722400pt;}
.yf4{bottom:834.374533pt;}
.y93{bottom:835.298800pt;}
.yb0{bottom:836.440133pt;}
.yc3{bottom:844.639733pt;}
.y6b{bottom:847.200667pt;}
.y5e{bottom:864.555200pt;}
.yb8{bottom:866.288533pt;}
.y88{bottom:870.860933pt;}
.y67{bottom:872.989467pt;}
.yf1{bottom:873.024933pt;}
.y9e{bottom:879.659200pt;}
.yb{bottom:891.488533pt;}
.y27{bottom:891.518800pt;}
.yc2{bottom:906.960533pt;}
.yb7{bottom:916.688533pt;}
.y5d{bottom:921.492000pt;}
.y37{bottom:922.277067pt;}
.ya9{bottom:931.492533pt;}
.yaf{bottom:940.303333pt;}
.ya{bottom:941.888533pt;}
.y54{bottom:956.576667pt;}
.yad{bottom:956.692533pt;}
.y1b{bottom:961.333067pt;}
.y14{bottom:964.371467pt;}
.y87{bottom:974.724133pt;}
.y31{bottom:978.360667pt;}
.y9c{bottom:979.899733pt;}
.y19{bottom:981.479333pt;}
.ya8{bottom:981.892533pt;}
.y9d{bottom:990.059200pt;}
.y36{bottom:1006.010400pt;}
.y73{bottom:1012.737200pt;}
.yc1{bottom:1022.160533pt;}
.y26{bottom:1023.382000pt;}
.y1e{bottom:1028.690533pt;}
.y30{bottom:1028.760667pt;}
.yf7{bottom:1029.512000pt;}
.y9b{bottom:1030.299733pt;}
.y7a{bottom:1030.559867pt;}
.y86{bottom:1031.660933pt;}
.y18{bottom:1031.879333pt;}
.y6a{bottom:1037.937200pt;}
.yf0{bottom:1037.945867pt;}
.y51{bottom:1056.083600pt;}
.yce{bottom:1062.321867pt;}
.y95{bottom:1062.442000pt;}
.y72{bottom:1063.137200pt;}
.y23{bottom:1066.249733pt;}
.y6f{bottom:1072.102000pt;}
.y47{bottom:1072.444400pt;}
.y97{bottom:1075.358400pt;}
.y1a{bottom:1075.391067pt;}
.y66{bottom:1076.908267pt;}
.y35{bottom:1083.206933pt;}
.y7f{bottom:1086.819600pt;}
.y5c{bottom:1087.132533pt;}
.y2d{bottom:1087.138800pt;}
.y8{bottom:1211.880267pt;}
.yb6{bottom:1218.546933pt;}
.y9{bottom:1325.518267pt;}
.hf{height:0.000004pt;}
.h3d{height:0.000006pt;}
.h39{height:39.695027pt;}
.h29{height:43.212000pt;}
.h14{height:52.719267pt;}
.h2d{height:52.800000pt;}
.h12{height:55.012560pt;}
.he{height:55.574120pt;}
.h27{height:57.266667pt;}
.h1c{height:61.920000pt;}
.h2f{height:65.333333pt;}
.h3f{height:69.333333pt;}
.h24{height:81.986613pt;}
.hd{height:84.027013pt;}
.h2c{height:86.574905pt;}
.h3c{height:95.269800pt;}
.h41{height:100.800000pt;}
.h2e{height:103.335159pt;}
.h35{height:109.646308pt;}
.h2a{height:110.544000pt;}
.h16{height:115.200000pt;}
.h25{height:120.960000pt;}
.h2{height:129.024000pt;}
.h19{height:130.646076pt;}
.h3a{height:130.701938pt;}
.h6{height:138.093750pt;}
.h4{height:141.120000pt;}
.h1e{height:144.000000pt;}
.h18{height:144.165819pt;}
.h7{height:148.000000pt;}
.h28{height:148.176000pt;}
.hb{height:148.769600pt;}
.h11{height:150.999550pt;}
.h1a{height:160.000000pt;}
.h1b{height:160.832000pt;}
.h1{height:161.280000pt;}
.h30{height:164.261576pt;}
.h20{height:165.793067pt;}
.h1d{height:168.241812pt;}
.h3b{height:172.894400pt;}
.h37{height:176.924930pt;}
.h31{height:177.516113pt;}
.h32{height:177.588400pt;}
.h26{height:180.336133pt;}
.h23{height:183.408910pt;}
.h15{height:184.383240pt;}
.h40{height:186.530910pt;}
.h8{height:192.000000pt;}
.h13{height:192.403929pt;}
.h10{height:194.367959pt;}
.h38{height:212.324217pt;}
.h21{height:218.731183pt;}
.h33{height:224.092882pt;}
.ha{height:245.333333pt;}
.h3e{height:256.309045pt;}
.h17{height:260.054076pt;}
.h3{height:308.189600pt;}
.h1f{height:312.870400pt;}
.h5{height:331.386667pt;}
.h36{height:372.406105pt;}
.hc{height:462.666667pt;}
.h22{height:578.807342pt;}
.h2b{height:615.976800pt;}
.h9{height:628.000000pt;}
.h34{height:650.746323pt;}
.h0{height:1440.000000pt;}
.w16{width:19.847520pt;}
.w10{width:31.681333pt;}
.wf{width:41.222667pt;}
.wb{width:59.169360pt;}
.w13{width:77.212120pt;}
.w12{width:99.733320pt;}
.w14{width:130.666667pt;}
.w7{width:148.533867pt;}
.w8{width:163.429733pt;}
.w18{width:192.000000pt;}
.w5{width:227.853867pt;}
.wd{width:253.253333pt;}
.w4{width:299.750133pt;}
.w6{width:313.236000pt;}
.wa{width:315.229067pt;}
.wc{width:497.379333pt;}
.w17{width:520.319600pt;}
.w9{width:600.001333pt;}
.w2{width:937.333333pt;}
.w3{width:962.666667pt;}
.w11{width:978.228533pt;}
.we{width:1155.945600pt;}
.w1{width:1170.666667pt;}
.w15{width:1172.085067pt;}
.w0{width:2560.000000pt;}
.x71{left:-2.448000pt;}
.x10{left:-1.416000pt;}
.x0{left:0.000000pt;}
.x22{left:1.305878pt;}
.x28{left:2.841600pt;}
.x42{left:5.411984pt;}
.x1e{left:14.013333pt;}
.x41{left:23.987447pt;}
.x49{left:27.390800pt;}
.x2{left:34.885800pt;}
.x48{left:39.004133pt;}
.x33{left:87.809920pt;}
.x2e{left:99.048973pt;}
.xa{left:110.528520pt;}
.x53{left:112.522093pt;}
.x8{left:132.000000pt;}
.x60{left:133.605733pt;}
.x61{left:134.511600pt;}
.x36{left:135.511467pt;}
.x13{left:136.597467pt;}
.x6e{left:138.299467pt;}
.x14{left:139.478667pt;}
.x1c{left:141.228800pt;}
.x52{left:142.911600pt;}
.x1f{left:144.235467pt;}
.x45{left:147.355733pt;}
.x17{left:149.329600pt;}
.x18{left:155.799733pt;}
.x34{left:157.078533pt;}
.x55{left:160.243733pt;}
.x54{left:163.910933pt;}
.x4f{left:165.028533pt;}
.x2d{left:167.212267pt;}
.xb{left:184.528533pt;}
.x4b{left:188.215333pt;}
.x58{left:191.508133pt;}
.x19{left:223.131467pt;}
.x4c{left:239.604267pt;}
.x67{left:245.225995pt;}
.x4d{left:254.882000pt;}
.x43{left:265.342458pt;}
.x20{left:277.568800pt;}
.x68{left:307.725273pt;}
.x29{left:345.201600pt;}
.x12{left:382.836400pt;}
.x4a{left:391.609600pt;}
.x44{left:394.866400pt;}
.x62{left:405.849126pt;}
.x3{left:422.027600pt;}
.x37{left:431.580400pt;}
.x69{left:441.177036pt;}
.x3d{left:446.290800pt;}
.x50{left:462.372400pt;}
.x5{left:467.200000pt;}
.x6a{left:503.676313pt;}
.x56{left:507.465333pt;}
.x2b{left:508.920000pt;}
.x2a{left:521.217600pt;}
.x74{left:548.051733pt;}
.x70{left:558.092400pt;}
.x23{left:707.064267pt;}
.x47{left:720.224400pt;}
.x30{left:731.884000pt;}
.x2f{left:733.126133pt;}
.x21{left:749.755333pt;}
.x4{left:764.050533pt;}
.x4e{left:783.771200pt;}
.x51{left:834.124533pt;}
.x5f{left:855.319467pt;}
.x25{left:903.576667pt;}
.x26{left:905.573867pt;}
.x38{left:945.590933pt;}
.x1{left:964.106667pt;}
.x7{left:1029.213333pt;}
.x57{left:1052.831867pt;}
.x31{left:1090.559733pt;}
.x6{left:1123.893333pt;}
.x6b{left:1127.076713pt;}
.x66{left:1131.538933pt;}
.x5a{left:1158.884667pt;}
.x5d{left:1164.243200pt;}
.x65{left:1214.666667pt;}
.x63{left:1230.133333pt;}
.x64{left:1241.394000pt;}
.x3e{left:1250.415333pt;}
.x59{left:1254.554667pt;}
.x5c{left:1259.282267pt;}
.x27{left:1268.140400pt;}
.x24{left:1275.588267pt;}
.x72{left:1307.622800pt;}
.x5b{left:1350.608000pt;}
.x5e{left:1354.072000pt;}
.x3c{left:1380.258667pt;}
.xd{left:1387.917333pt;}
.xf{left:1389.333333pt;}
.x46{left:1397.580000pt;}
.x3f{left:1419.446667pt;}
.x6c{left:1420.972000pt;}
.x39{left:1565.194667pt;}
.xc{left:1595.354667pt;}
.x1b{left:1597.333333pt;}
.xe{left:1621.734667pt;}
.x11{left:1622.666667pt;}
.x40{left:1654.633333pt;}
.x2c{left:1890.252000pt;}
.x3b{left:1893.017333pt;}
.x6f{left:1919.728000pt;}
.x6d{left:1927.829333pt;}
.x73{left:1933.389333pt;}
.x3a{left:1962.952000pt;}
.x32{left:2091.690667pt;}
.x16{left:2096.062667pt;}
.x35{left:2218.941333pt;}
.x1d{left:2237.373333pt;}
.x15{left:2320.862667pt;}
.x1a{left:2427.628000pt;}
.x9{left:2450.666667pt;}
}




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