
    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_e24b7766e6f585989d0e02fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_1aeb4cfa2fe14447bd707d77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_fc1b20028f0fe792b86491e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_883c5495aaaa3c7766396459.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f66666b926529407dd8ee91.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_51cf8d9f6de78e9d768af0e8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_162f7e97d8f4ac472b1a5090.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.387000;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_df77f71382e15017ad0e6953.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_fc1b20028f0fe792b86491e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_91d565bee7980c1d8a169b42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.701000;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_555dfe699b9140df917b44de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.865000;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_d35ccc27adf317b17e675d6b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_d1d05ed5ec6a52cb21636e03.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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_7f66666b926529407dd8ee91.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_6c8d6478f3474ae8a9e48fbc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_df77f71382e15017ad0e6953.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_51cf8d9f6de78e9d768af0e8.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_162f7e97d8f4ac472b1a5090.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.387000;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_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;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_2694c026041024618d1c39fc.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_113ab96d4ddef1bf33c57fda.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d1d05ed5ec6a52cb21636e03.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.897000;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_7f66666b926529407dd8ee91.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.906000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_51cf8d9f6de78e9d768af0e8.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.906000;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_2694c026041024618d1c39fc.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_113ab96d4ddef1bf33c57fda.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_6c8d6478f3474ae8a9e48fbc.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.948000;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_d494ee44eaacf645ee8dfee7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.764648;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_df77f71382e15017ad0e6953.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.906000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_2694c026041024618d1c39fc.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.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_cb15355c62eb72a9b899038d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.978000;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_40cd769d66e796179a70ea9e.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.906000;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_2694c026041024618d1c39fc.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_113ab96d4ddef1bf33c57fda.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_cb15355c62eb72a9b899038d.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.978000;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_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.906000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_2694c026041024618d1c39fc.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_cb15355c62eb72a9b899038d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.978000;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_40cd769d66e796179a70ea9e.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_e32e9192e3af86b5c18ecd7a.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.906000;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_2694c026041024618d1c39fc.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_61b2b43bf629c8a8ecaeeb1a.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_113ab96d4ddef1bf33c57fda.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_cb15355c62eb72a9b899038d.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.978000;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_d1d05ed5ec6a52cb21636e03.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.897000;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_7f66666b926529407dd8ee91.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.906000;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_6488e261b61946d044f8c7fa.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_51cf8d9f6de78e9d768af0e8.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_6c8d6478f3474ae8a9e48fbc.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.948000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-17.358000px;}
.v3{vertical-align:-8.100576px;}
.v9{vertical-align:-4.576888px;}
.vb{vertical-align:-3.417600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.964000px;}
.v6{vertical-align:11.167200px;}
.v7{vertical-align:13.881000px;}
.va{vertical-align:17.905851px;}
.v1{vertical-align:21.702000px;}
.v8{vertical-align:25.043553px;}
.ls23{letter-spacing:-0.040789px;}
.ls25{letter-spacing:-0.033142px;}
.ls26{letter-spacing:-0.030592px;}
.ls3b{letter-spacing:-0.029164px;}
.ls3a{letter-spacing:-0.028892px;}
.ls3e{letter-spacing:-0.022784px;}
.ls3f{letter-spacing:-0.021873px;}
.ls3d{letter-spacing:-0.016861px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000086px;}
.ls2f{letter-spacing:0.000218px;}
.ls1e{letter-spacing:0.000329px;}
.ls5{letter-spacing:0.021060px;}
.ls10{letter-spacing:0.027342px;}
.lse{letter-spacing:0.028104px;}
.ls30{letter-spacing:0.455100px;}
.ls2e{letter-spacing:0.455700px;}
.ls37{letter-spacing:0.456300px;}
.ls17{letter-spacing:0.636900px;}
.ls16{letter-spacing:0.637500px;}
.ls9{letter-spacing:1.434672px;}
.ls11{letter-spacing:1.614006px;}
.ls31{letter-spacing:1.936674px;}
.ls2b{letter-spacing:2.009298px;}
.ls36{letter-spacing:2.406030px;}
.ls35{letter-spacing:2.427903px;}
.ls1{letter-spacing:2.970924px;}
.ls2d{letter-spacing:2.978489px;}
.ls4{letter-spacing:2.988000px;}
.lsd{letter-spacing:2.989476px;}
.ls2{letter-spacing:3.023628px;}
.ls33{letter-spacing:3.040347px;}
.ls15{letter-spacing:3.108456px;}
.ls28{letter-spacing:3.227760px;}
.ls2c{letter-spacing:3.285793px;}
.ls1b{letter-spacing:3.365142px;}
.ls1a{letter-spacing:3.395734px;}
.ls29{letter-spacing:3.586680px;}
.ls3c{letter-spacing:3.773113px;}
.ls18{letter-spacing:4.252316px;}
.ls8{letter-spacing:4.416000px;}
.ls40{letter-spacing:4.833933px;}
.ls32{letter-spacing:5.058137px;}
.ls24{letter-spacing:5.277092px;}
.ls27{letter-spacing:6.760876px;}
.ls2a{letter-spacing:6.876248px;}
.ls34{letter-spacing:7.371473px;}
.lsc{letter-spacing:7.711362px;}
.lsf{letter-spacing:7.922736px;}
.ls1c{letter-spacing:8.983932px;}
.ls1f{letter-spacing:9.982926px;}
.ls19{letter-spacing:10.310472px;}
.lsb{letter-spacing:10.710000px;}
.ls12{letter-spacing:13.210938px;}
.lsa{letter-spacing:14.730000px;}
.ls14{letter-spacing:14.910000px;}
.ls3{letter-spacing:14.944500px;}
.ls7{letter-spacing:16.618284px;}
.ls22{letter-spacing:17.250000px;}
.ls21{letter-spacing:18.156000px;}
.ls13{letter-spacing:18.924000px;}
.ls39{letter-spacing:18.960000px;}
.ls20{letter-spacing:20.418000px;}
.ls38{letter-spacing:20.454000px;}
.ls6{letter-spacing:23.466792px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws4e{word-spacing:-6.791468px;}
.ws49{word-spacing:-5.315332px;}
.ws72{word-spacing:-4.855806px;}
.ws6c{word-spacing:-3.800455px;}
.ws58{word-spacing:-3.646458px;}
.ws4f{word-spacing:-3.395734px;}
.ws51{word-spacing:-3.281556px;}
.ws30{word-spacing:-3.168234px;}
.ws73{word-spacing:-2.427903px;}
.ws54{word-spacing:-0.068142px;}
.ws5{word-spacing:-0.059778px;}
.ws28{word-spacing:-0.054000px;}
.wsc{word-spacing:-0.053796px;}
.ws31{word-spacing:-0.041844px;}
.ws4b{word-spacing:-0.038240px;}
.ws4d{word-spacing:-0.030592px;}
.ws6b{word-spacing:-0.027341px;}
.ws6e{word-spacing:-0.022784px;}
.ws71{word-spacing:-0.021873px;}
.ws1{word-spacing:0.000000px;}
.ws7f{word-spacing:0.021873px;}
.ws7e{word-spacing:0.022784px;}
.ws67{word-spacing:0.030592px;}
.ws66{word-spacing:0.033142px;}
.ws29{word-spacing:1.344000px;}
.ws25{word-spacing:2.943108px;}
.ws27{word-spacing:2.944584px;}
.ws6{word-spacing:2.977260px;}
.ws70{word-spacing:3.145337px;}
.ws69{word-spacing:3.262154px;}
.ws4c{word-spacing:4.399158px;}
.ws6f{word-spacing:5.569682px;}
.ws6d{word-spacing:5.718884px;}
.ws52{word-spacing:8.285400px;}
.ws4a{word-spacing:8.318542px;}
.ws7d{word-spacing:11.081976px;}
.ws1b{word-spacing:11.477376px;}
.ws1e{word-spacing:11.656710px;}
.ws46{word-spacing:11.836044px;}
.ws24{word-spacing:11.907180px;}
.ws17{word-spacing:12.075156px;}
.wse{word-spacing:12.319284px;}
.ws21{word-spacing:12.553380px;}
.ws7{word-spacing:12.695856px;}
.wsf{word-spacing:12.857244px;}
.ws7c{word-spacing:13.126224px;}
.ws3e{word-spacing:13.151160px;}
.ws1f{word-spacing:13.390272px;}
.ws8{word-spacing:13.395204px;}
.ws53{word-spacing:13.449000px;}
.ws32{word-spacing:13.689162px;}
.ws64{word-spacing:13.748940px;}
.wsb{word-spacing:13.933164px;}
.ws59{word-spacing:14.167386px;}
.ws3b{word-spacing:14.286942px;}
.ws5d{word-spacing:14.406498px;}
.ws26{word-spacing:14.776380px;}
.ws5b{word-spacing:14.824944px;}
.ws4{word-spacing:14.884722px;}
.ws22{word-spacing:15.004278px;}
.ws1d{word-spacing:15.064056px;}
.ws63{word-spacing:15.123834px;}
.ws47{word-spacing:15.183612px;}
.ws7b{word-spacing:15.385656px;}
.ws75{word-spacing:15.493248px;}
.ws3f{word-spacing:15.729168px;}
.ws42{word-spacing:15.841170px;}
.ws2f{word-spacing:15.900948px;}
.ws11{word-spacing:16.031208px;}
.ws20{word-spacing:16.140060px;}
.wsd{word-spacing:16.192596px;}
.ws45{word-spacing:16.319394px;}
.ws3a{word-spacing:16.379172px;}
.ws55{word-spacing:16.498728px;}
.ws16{word-spacing:16.618284px;}
.ws7a{word-spacing:16.622964px;}
.ws65{word-spacing:16.678062px;}
.ws23{word-spacing:16.737840px;}
.ws13{word-spacing:16.838148px;}
.ws12{word-spacing:16.891944px;}
.ws33{word-spacing:16.917174px;}
.ws56{word-spacing:17.216064px;}
.ws5e{word-spacing:17.335620px;}
.ws5f{word-spacing:17.395398px;}
.ws74{word-spacing:17.429904px;}
.ws37{word-spacing:17.574732px;}
.ws36{word-spacing:17.634510px;}
.ws3d{word-spacing:17.694288px;}
.ws5a{word-spacing:17.754066px;}
.ws43{word-spacing:17.933400px;}
.ws78{word-spacing:17.993178px;}
.ws38{word-spacing:18.292068px;}
.ws41{word-spacing:18.351846px;}
.ws3c{word-spacing:18.411624px;}
.ws10{word-spacing:18.613416px;}
.ws76{word-spacing:18.650736px;}
.ws1c{word-spacing:18.770292px;}
.ws2b{word-spacing:18.875334px;}
.ws62{word-spacing:18.889848px;}
.ws60{word-spacing:19.069182px;}
.ws5c{word-spacing:19.248516px;}
.ws15{word-spacing:19.427850px;}
.ws44{word-spacing:19.487628px;}
.ws61{word-spacing:19.607184px;}
.ws2d{word-spacing:19.666962px;}
.ws2e{word-spacing:19.726740px;}
.ws35{word-spacing:19.786518px;}
.ws18{word-spacing:19.965852px;}
.ws19{word-spacing:20.623410px;}
.ws40{word-spacing:21.161412px;}
.ws57{word-spacing:21.340746px;}
.ws50{word-spacing:21.357012px;}
.ws77{word-spacing:21.639636px;}
.ws1a{word-spacing:21.938526px;}
.ws3{word-spacing:22.021500px;}
.wsa{word-spacing:22.432932px;}
.ws34{word-spacing:22.715640px;}
.ws39{word-spacing:22.894974px;}
.ws9{word-spacing:23.684820px;}
.ws79{word-spacing:24.423384px;}
.ws2c{word-spacing:25.226316px;}
.ws68{word-spacing:27.304188px;}
.ws2{word-spacing:29.176500px;}
.ws6a{word-spacing:34.712727px;}
.ws14{word-spacing:35.774550px;}
.ws48{word-spacing:48.549608px;}
.ws2a{word-spacing:510.300000px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.971356px;}
._3{margin-left:-4.284000px;}
._12{margin-left:-3.118824px;}
._1{margin-left:-1.996800px;}
._13{width:2.985264px;}
._6{width:4.034700px;}
._0{width:5.587200px;}
._4{width:13.784472px;}
._7{width:15.224268px;}
._8{width:16.300188px;}
._c{width:17.563206px;}
._e{width:19.075160px;}
._9{width:20.799372px;}
._18{width:22.174320px;}
._b{width:23.313420px;}
._16{width:25.086744px;}
._17{width:26.200912px;}
._a{width:27.220776px;}
._11{width:28.863588px;}
._f{width:30.646098px;}
._1d{width:31.814496px;}
._15{width:32.997456px;}
._d{width:34.671240px;}
._10{width:35.842692px;}
._1c{width:38.521158px;}
._1a{width:39.593856px;}
._1b{width:41.005248px;}
._14{width:42.709728px;}
._19{width:56.228100px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs22{font-size:16.186200px;}
.fs21{font-size:16.860600px;}
.fs1f{font-size:20.232600px;}
.fs19{font-size:21.012000px;}
.fs1c{font-size:21.873000px;}
.fs18{font-size:22.638000px;}
.fs20{font-size:22.784400px;}
.fs1b{font-size:23.638800px;}
.fs1e{font-size:27.341400px;}
.fs16{font-size:28.297800px;}
.fs1a{font-size:28.891800px;}
.fs1d{font-size:29.164200px;}
.fs13{font-size:30.592200px;}
.fs17{font-size:33.141600px;}
.fs10{font-size:34.171200px;}
.fs7{font-size:35.868000px;}
.fsf{font-size:36.242400px;}
.fs15{font-size:38.239800px;}
.fs14{font-size:40.789200px;}
.fs6{font-size:41.844000px;}
.fse{font-size:43.138800px;}
.fsb{font-size:47.820000px;}
.fsc{font-size:48.000000px;}
.fs9{font-size:51.108000px;}
.fsd{font-size:51.775200px;}
.fs8{font-size:53.796000px;}
.fs3{font-size:54.000000px;}
.fs11{font-size:56.784000px;}
.fs5{font-size:59.778000px;}
.fs12{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:68.142000px;}
.fs4{font-size:79.500000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y44{bottom:15.732450px;}
.y72{bottom:23.986500px;}
.y43{bottom:29.232450px;}
.y4c{bottom:49.193550px;}
.y7d{bottom:64.370550px;}
.ya1{bottom:64.372350px;}
.y19{bottom:69.510000px;}
.yd0{bottom:71.546400px;}
.y71{bottom:71.546550px;}
.y7f{bottom:72.311700px;}
.ya3{bottom:72.313500px;}
.y42{bottom:75.888600px;}
.y141{bottom:76.361100px;}
.ycf{bottom:89.479800px;}
.y70{bottom:89.479950px;}
.y41{bottom:90.086100px;}
.y18{bottom:91.590000px;}
.y81{bottom:92.451300px;}
.ya5{bottom:92.452950px;}
.y140{bottom:95.788950px;}
.y13{bottom:99.795000px;}
.y40{bottom:104.282100px;}
.yce{bottom:107.413200px;}
.y6f{bottom:107.413350px;}
.y83{bottom:107.810700px;}
.ya7{bottom:107.812350px;}
.y17{bottom:113.670000px;}
.y13f{bottom:115.216800px;}
.y3f{bottom:124.617450px;}
.ycd{bottom:125.343600px;}
.y6e{bottom:125.344650px;}
.y13e{bottom:134.644650px;}
.y16{bottom:135.750000px;}
.y3e{bottom:142.550850px;}
.ycc{bottom:143.277000px;}
.y6d{bottom:143.278050px;}
.y13d{bottom:154.072500px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y3d{bottom:160.484250px;}
.ycb{bottom:161.210400px;}
.y6c{bottom:161.211450px;}
.y13c{bottom:173.500350px;}
.y3c{bottom:178.417650px;}
.yca{bottom:179.143800px;}
.y6b{bottom:179.144850px;}
.y13b{bottom:192.928200px;}
.y3b{bottom:196.351050px;}
.y6a{bottom:197.074350px;}
.yc9{bottom:197.077200px;}
.y13a{bottom:212.356050px;}
.y3a{bottom:214.284450px;}
.yc8{bottom:215.002650px;}
.y69{bottom:215.007750px;}
.y139{bottom:231.783900px;}
.y39{bottom:232.217850px;}
.yc7{bottom:232.936050px;}
.y68{bottom:232.941150px;}
.y38{bottom:250.151250px;}
.yc6{bottom:250.869450px;}
.y67{bottom:250.874550px;}
.y138{bottom:251.211750px;}
.y37{bottom:268.084350px;}
.yc5{bottom:268.802850px;}
.y66{bottom:268.807950px;}
.y137{bottom:270.639600px;}
.y36{bottom:286.009950px;}
.yc4{bottom:286.736250px;}
.y65{bottom:286.741350px;}
.y136{bottom:301.364100px;}
.y35{bottom:303.943350px;}
.yc3{bottom:304.669650px;}
.y64{bottom:304.674750px;}
.y34{bottom:321.876750px;}
.yc2{bottom:322.603050px;}
.y33{bottom:339.810150px;}
.yc1{bottom:340.536450px;}
.y63{bottom:340.724100px;}
.ya{bottom:344.680500px;}
.y135{bottom:347.887710px;}
.y32{bottom:357.743550px;}
.yc0{bottom:358.469850px;}
.y134{bottom:364.322388px;}
.y31{bottom:375.676950px;}
.ybf{bottom:376.403250px;}
.y133{bottom:380.757066px;}
.yd{bottom:386.490000px;}
.y62{bottom:389.562081px;}
.y30{bottom:393.610350px;}
.ybe{bottom:394.336650px;}
.y9{bottom:395.689500px;}
.y132{bottom:397.191744px;}
.y61{bottom:407.495481px;}
.y2f{bottom:411.543750px;}
.ybd{bottom:412.270050px;}
.y131{bottom:413.626422px;}
.y60{bottom:425.428881px;}
.y2e{bottom:429.477150px;}
.y130{bottom:430.061100px;}
.ybc{bottom:430.203450px;}
.yb{bottom:434.850000px;}
.y5f{bottom:443.362281px;}
.y8{bottom:446.698500px;}
.y2d{bottom:447.410550px;}
.y12f{bottom:454.999500px;}
.ybb{bottom:460.840800px;}
.y5e{bottom:462.356741px;}
.y2c{bottom:465.343950px;}
.y12e{bottom:472.932900px;}
.y5d{bottom:480.290141px;}
.y10{bottom:488.055000px;}
.y12d{bottom:490.866300px;}
.y2b{bottom:492.183450px;}
.y7{bottom:497.707500px;}
.y5c{bottom:498.223541px;}
.y12c{bottom:508.799700px;}
.y5b{bottom:516.156941px;}
.yba{bottom:523.442622px;}
.y12b{bottom:526.733100px;}
.y5a{bottom:534.090340px;}
.y11{bottom:538.230000px;}
.yb9{bottom:539.877300px;}
.y12a{bottom:544.666500px;}
.y6{bottom:548.716500px;}
.y59{bottom:552.023740px;}
.y2a{bottom:554.331054px;}
.y129{bottom:562.599900px;}
.y58{bottom:569.957140px;}
.y29{bottom:570.765732px;}
.ya0{bottom:571.260000px;}
.y98{bottom:577.264200px;}
.y128{bottom:580.533300px;}
.y28{bottom:587.200410px;}
.y97{bottom:587.847450px;}
.y57{bottom:587.890540px;}
.y1a{bottom:589.605000px;}
.y99{bottom:595.397850px;}
.y5{bottom:599.725500px;}
.y27{bottom:603.635088px;}
.y56{bottom:605.823940px;}
.yb2{bottom:608.447572px;}
.yb3{bottom:614.403450px;}
.yb1{bottom:617.946450px;}
.y26{bottom:620.069766px;}
.y9a{bottom:620.508300px;}
.yac{bottom:622.005750px;}
.y55{bottom:624.818400px;}
.y9f{bottom:627.678450px;}
.ye{bottom:631.920000px;}
.yb4{bottom:633.409050px;}
.ya2{bottom:635.632350px;}
.y25{bottom:636.504444px;}
.y127{bottom:642.414444px;}
.y54{bottom:642.752400px;}
.ya4{bottom:643.573500px;}
.y9b{bottom:645.618900px;}
.yad{bottom:648.613500px;}
.yb5{bottom:652.414650px;}
.y24{bottom:652.939122px;}
.y126{bottom:658.849122px;}
.y53{bottom:660.684900px;}
.ya6{bottom:663.712950px;}
.y23{bottom:669.381444px;}
.y9c{bottom:670.729350px;}
.yb6{bottom:671.420250px;}
.yae{bottom:675.221400px;}
.y125{bottom:675.283800px;}
.y52{bottom:678.618300px;}
.ya8{bottom:679.072350px;}
.y22{bottom:685.816122px;}
.yb7{bottom:690.425850px;}
.yab{bottom:694.176600px;}
.y9d{bottom:695.839800px;}
.yaf{bottom:701.829300px;}
.y21{bottom:702.250800px;}
.yaa{bottom:705.950100px;}
.yb8{bottom:709.431450px;}
.y51{bottom:714.666300px;}
.y109{bottom:715.939500px;}
.ya9{bottom:717.723450px;}
.yfc{bottom:718.819350px;}
.y9e{bottom:720.950250px;}
.y108{bottom:723.506400px;}
.yfb{bottom:726.691800px;}
.yb0{bottom:728.437050px;}
.y10a{bottom:728.904900px;}
.yfd{bottom:733.580250px;}
.y20{bottom:734.106300px;}
.y11e{bottom:737.415096px;}
.y11f{bottom:742.493700px;}
.yfe{bottom:744.542250px;}
.y11d{bottom:745.026900px;}
.y10b{bottom:746.811600px;}
.y118{bottom:747.929250px;}
.y1f{bottom:750.544800px;}
.y96{bottom:751.564122px;}
.y110{bottom:751.985250px;}
.yff{bottom:755.504100px;}
.y120{bottom:756.082650px;}
.y111{bottom:757.672050px;}
.y112{bottom:763.350000px;}
.y10c{bottom:764.718150px;}
.y100{bottom:766.466100px;}
.y119{bottom:766.953600px;}
.y95{bottom:767.998800px;}
.y1e{bottom:769.572300px;}
.y121{bottom:769.671450px;}
.y101{bottom:777.428100px;}
.y113{bottom:777.749550px;}
.y4{bottom:778.225500px;}
.y50{bottom:779.484150px;}
.y10d{bottom:782.624850px;}
.y122{bottom:783.260250px;}
.y11a{bottom:785.978100px;}
.y102{bottom:788.389950px;}
.y114{bottom:788.731500px;}
.y123{bottom:796.849050px;}
.y103{bottom:799.351950px;}
.y7c{bottom:799.383000px;}
.y117{bottom:799.549800px;}
.y10e{bottom:800.531550px;}
.y107{bottom:804.377850px;}
.y11b{bottom:805.002450px;}
.y74{bottom:805.385400px;}
.y116{bottom:808.177800px;}
.y104{bottom:810.313950px;}
.y124{bottom:810.437850px;}
.y4b{bottom:811.413000px;}
.y106{bottom:813.285750px;}
.y12{bottom:815.670000px;}
.y73{bottom:815.968650px;}
.y115{bottom:816.462750px;}
.y48{bottom:816.855090px;}
.y1d{bottom:817.394025px;}
.y10f{bottom:818.438100px;}
.y105{bottom:821.275800px;}
.y75{bottom:823.519200px;}
.y11c{bottom:824.026800px;}
.y4d{bottom:825.915450px;}
.y47{bottom:832.387650px;}
.y8e{bottom:836.568772px;}
.y1c{bottom:841.303650px;}
.y8f{bottom:842.524800px;}
.ydf{bottom:845.952000px;}
.y8d{bottom:846.067650px;}
.y76{bottom:848.626050px;}
.yd2{bottom:848.831850px;}
.y88{bottom:850.126950px;}
.yde{bottom:853.518750px;}
.y7b{bottom:855.799800px;}
.yd1{bottom:856.704300px;}
.ye0{bottom:858.917400px;}
.y4f{bottom:859.831376px;}
.y90{bottom:861.530400px;}
.y4a{bottom:863.454300px;}
.yd3{bottom:863.592750px;}
.y7e{bottom:863.753550px;}
.yf4{bottom:867.427596px;}
.y4e{bottom:870.185250px;}
.y80{bottom:871.694700px;}
.yf5{bottom:872.506200px;}
.y77{bottom:873.732900px;}
.yd4{bottom:874.554600px;}
.yf3{bottom:875.039400px;}
.ye1{bottom:876.727500px;}
.y89{bottom:876.734850px;}
.yee{bottom:877.941750px;}
.y91{bottom:880.536000px;}
.ye6{bottom:881.997750px;}
.yd5{bottom:885.516600px;}
.yf6{bottom:886.095000px;}
.ye7{bottom:887.684550px;}
.y82{bottom:891.834300px;}
.ye8{bottom:893.362500px;}
.ye2{bottom:894.537600px;}
.yd6{bottom:896.478450px;}
.yef{bottom:896.966100px;}
.y78{bottom:898.839750px;}
.y92{bottom:899.541600px;}
.yf7{bottom:899.683800px;}
.y49{bottom:902.287500px;}
.y8a{bottom:903.342750px;}
.y3{bottom:905.716500px;}
.y84{bottom:907.193700px;}
.yd7{bottom:907.440450px;}
.ye9{bottom:907.762050px;}
.ye3{bottom:912.347700px;}
.yf8{bottom:913.272600px;}
.yf0{bottom:915.990450px;}
.yd8{bottom:918.402450px;}
.y93{bottom:918.547200px;}
.yea{bottom:918.743850px;}
.y87{bottom:922.297950px;}
.y79{bottom:923.946600px;}
.yf9{bottom:926.861550px;}
.yd9{bottom:929.364300px;}
.yed{bottom:929.562150px;}
.y8b{bottom:929.950500px;}
.ye4{bottom:930.157800px;}
.y86{bottom:934.071300px;}
.ydd{bottom:934.390200px;}
.yf1{bottom:935.014800px;}
.y94{bottom:937.552800px;}
.yec{bottom:938.190150px;}
.yda{bottom:940.326300px;}
.yfa{bottom:940.450350px;}
.ydc{bottom:943.298100px;}
.y85{bottom:945.844800px;}
.yeb{bottom:946.475100px;}
.ye5{bottom:947.967900px;}
.y7a{bottom:949.053450px;}
.ydb{bottom:951.288300px;}
.yf2{bottom:954.039150px;}
.y8c{bottom:956.558400px;}
.y2{bottom:964.228500px;}
.y46{bottom:983.380800px;}
.y1{bottom:989.716500px;}
.y45{bottom:999.880800px;}
.y1b{bottom:1103.459250px;}
.h37{height:14.456256px;}
.h3b{height:15.048624px;}
.h42{height:15.675667px;}
.h39{height:15.759000px;}
.h3d{height:16.404750px;}
.h43{height:16.412766px;}
.h41{height:17.225006px;}
.h3a{height:17.870933px;}
.h15{height:18.829800px;}
.h28{height:19.468886px;}
.h23{height:21.047434px;}
.h38{height:21.668850px;}
.h3c{height:21.873150px;}
.h2b{height:22.801421px;}
.h25{height:22.944150px;}
.h32{height:22.955462px;}
.h2f{height:22.956062px;}
.h3e{height:23.844629px;}
.he{height:24.677184px;}
.h1c{height:24.877568px;}
.h1b{height:26.385458px;}
.h40{height:28.487301px;}
.h26{height:28.679850px;}
.h24{height:30.591900px;}
.h1a{height:31.406226px;}
.h3f{height:31.825880px;}
.h4{height:33.000000px;}
.h16{height:33.024000px;}
.h30{height:33.349286px;}
.h2c{height:33.349886px;}
.h17{height:36.882000px;}
.h10{height:37.011648px;}
.hb{height:37.152000px;}
.h1d{height:37.173036px;}
.hf{height:37.257732px;}
.h29{height:37.284983px;}
.h18{height:37.693761px;}
.h2e{height:39.842403px;}
.h31{height:39.843003px;}
.h2a{height:39.847050px;}
.h12{height:41.127264px;}
.h1e{height:41.130864px;}
.h21{height:41.135664px;}
.h36{height:41.138064px;}
.h35{height:41.139264px;}
.h20{height:41.142864px;}
.h34{height:41.159064px;}
.h22{height:41.280000px;}
.h44{height:41.306598px;}
.h1f{height:41.395536px;}
.h2d{height:44.512439px;}
.h11{height:49.675518px;}
.h14{height:50.488272px;}
.hd{height:50.490672px;}
.h33{height:50.507596px;}
.h13{height:50.515872px;}
.hc{height:57.955500px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h19{height:153.784500px;}
.h27{height:165.816000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1062.750000px;}
.h9{height:1062.991500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.wb{width:549.537000px;}
.w5{width:552.660000px;}
.wd{width:552.721500px;}
.wc{width:552.723000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:722.835000px;}
.wa{width:723.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.xa{left:-34.866150px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x20{left:6.181200px;}
.x1b{left:48.873750px;}
.x11{left:54.000000px;}
.xb{left:85.039500px;}
.x12{left:88.942950px;}
.x10{left:91.030500px;}
.x31{left:92.392200px;}
.x1f{left:94.690950px;}
.xf{left:95.958000px;}
.x21{left:97.482750px;}
.x13{left:99.375653px;}
.xe{left:100.884000px;}
.x1e{left:104.350350px;}
.xd{left:107.456250px;}
.x1c{left:117.162600px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:148.819500px;}
.x30{left:150.758700px;}
.x1d{left:163.429950px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x32{left:195.495900px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x17{left:234.430050px;}
.x36{left:252.641850px;}
.x14{left:255.084450px;}
.x35{left:258.068400px;}
.x33{left:267.229200px;}
.x26{left:271.285650px;}
.x27{left:274.076288px;}
.x24{left:280.945050px;}
.x25{left:286.887450px;}
.x37{left:288.607350px;}
.x34{left:300.309900px;}
.x22{left:303.523800px;}
.x28{left:316.321950px;}
.x23{left:349.791000px;}
.x1a{left:355.541400px;}
.x2f{left:359.793300px;}
.x3c{left:378.870000px;}
.x3d{left:380.865313px;}
.x3a{left:384.332100px;}
.x19{left:387.004852px;}
.x3b{left:388.580850px;}
.x38{left:400.475700px;}
.x18{left:407.533200px;}
.x3e{left:409.626300px;}
.x39{left:433.556400px;}
.x2d{left:457.646700px;}
.x2e{left:460.437488px;}
.x2b{left:467.306100px;}
.x2c{left:473.248650px;}
.x29{left:489.884850px;}
.x43{left:512.116500px;}
.x44{left:514.111813px;}
.x41{left:517.578600px;}
.x42{left:521.827350px;}
.x15{left:531.443550px;}
.x3f{left:533.722200px;}
.x2a{left:536.152200px;}
.x16{left:543.534600px;}
.x40{left:566.802900px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.200512pt;}
.v9{vertical-align:-4.068345pt;}
.vb{vertical-align:-3.037867pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.968000pt;}
.v6{vertical-align:9.926400pt;}
.v7{vertical-align:12.338667pt;}
.va{vertical-align:15.916312pt;}
.v1{vertical-align:19.290667pt;}
.v8{vertical-align:22.260936pt;}
.ls23{letter-spacing:-0.036257pt;}
.ls25{letter-spacing:-0.029459pt;}
.ls26{letter-spacing:-0.027193pt;}
.ls3b{letter-spacing:-0.025924pt;}
.ls3a{letter-spacing:-0.025682pt;}
.ls3e{letter-spacing:-0.020253pt;}
.ls3f{letter-spacing:-0.019443pt;}
.ls3d{letter-spacing:-0.014987pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000077pt;}
.ls2f{letter-spacing:0.000194pt;}
.ls1e{letter-spacing:0.000292pt;}
.ls5{letter-spacing:0.018720pt;}
.ls10{letter-spacing:0.024304pt;}
.lse{letter-spacing:0.024981pt;}
.ls30{letter-spacing:0.404533pt;}
.ls2e{letter-spacing:0.405067pt;}
.ls37{letter-spacing:0.405600pt;}
.ls17{letter-spacing:0.566133pt;}
.ls16{letter-spacing:0.566667pt;}
.ls9{letter-spacing:1.275264pt;}
.ls11{letter-spacing:1.434672pt;}
.ls31{letter-spacing:1.721488pt;}
.ls2b{letter-spacing:1.786043pt;}
.ls36{letter-spacing:2.138693pt;}
.ls35{letter-spacing:2.158136pt;}
.ls1{letter-spacing:2.640821pt;}
.ls2d{letter-spacing:2.647546pt;}
.ls4{letter-spacing:2.656000pt;}
.lsd{letter-spacing:2.657312pt;}
.ls2{letter-spacing:2.687669pt;}
.ls33{letter-spacing:2.702531pt;}
.ls15{letter-spacing:2.763072pt;}
.ls28{letter-spacing:2.869120pt;}
.ls2c{letter-spacing:2.920705pt;}
.ls1b{letter-spacing:2.991237pt;}
.ls1a{letter-spacing:3.018430pt;}
.ls29{letter-spacing:3.188160pt;}
.ls3c{letter-spacing:3.353878pt;}
.ls18{letter-spacing:3.779836pt;}
.ls8{letter-spacing:3.925333pt;}
.ls40{letter-spacing:4.296829pt;}
.ls32{letter-spacing:4.496122pt;}
.ls24{letter-spacing:4.690749pt;}
.ls27{letter-spacing:6.009668pt;}
.ls2a{letter-spacing:6.112221pt;}
.ls34{letter-spacing:6.552420pt;}
.lsc{letter-spacing:6.854544pt;}
.lsf{letter-spacing:7.042432pt;}
.ls1c{letter-spacing:7.985717pt;}
.ls1f{letter-spacing:8.873712pt;}
.ls19{letter-spacing:9.164864pt;}
.lsb{letter-spacing:9.520000pt;}
.ls12{letter-spacing:11.743056pt;}
.lsa{letter-spacing:13.093333pt;}
.ls14{letter-spacing:13.253333pt;}
.ls3{letter-spacing:13.284000pt;}
.ls7{letter-spacing:14.771808pt;}
.ls22{letter-spacing:15.333333pt;}
.ls21{letter-spacing:16.138667pt;}
.ls13{letter-spacing:16.821333pt;}
.ls39{letter-spacing:16.853333pt;}
.ls20{letter-spacing:18.149333pt;}
.ls38{letter-spacing:18.181333pt;}
.ls6{letter-spacing:20.859371pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4e{word-spacing:-6.036861pt;}
.ws49{word-spacing:-4.724740pt;}
.ws72{word-spacing:-4.316272pt;}
.ws6c{word-spacing:-3.378182pt;}
.ws58{word-spacing:-3.241296pt;}
.ws4f{word-spacing:-3.018430pt;}
.ws51{word-spacing:-2.916939pt;}
.ws30{word-spacing:-2.816208pt;}
.ws73{word-spacing:-2.158136pt;}
.ws54{word-spacing:-0.060571pt;}
.ws5{word-spacing:-0.053136pt;}
.ws28{word-spacing:-0.048000pt;}
.wsc{word-spacing:-0.047819pt;}
.ws31{word-spacing:-0.037195pt;}
.ws4b{word-spacing:-0.033991pt;}
.ws4d{word-spacing:-0.027193pt;}
.ws6b{word-spacing:-0.024303pt;}
.ws6e{word-spacing:-0.020253pt;}
.ws71{word-spacing:-0.019443pt;}
.ws1{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.019443pt;}
.ws7e{word-spacing:0.020253pt;}
.ws67{word-spacing:0.027193pt;}
.ws66{word-spacing:0.029459pt;}
.ws29{word-spacing:1.194667pt;}
.ws25{word-spacing:2.616096pt;}
.ws27{word-spacing:2.617408pt;}
.ws6{word-spacing:2.646453pt;}
.ws70{word-spacing:2.795855pt;}
.ws69{word-spacing:2.899693pt;}
.ws4c{word-spacing:3.910363pt;}
.ws6f{word-spacing:4.950828pt;}
.ws6d{word-spacing:5.083453pt;}
.ws52{word-spacing:7.364800pt;}
.ws4a{word-spacing:7.394259pt;}
.ws7d{word-spacing:9.850645pt;}
.ws1b{word-spacing:10.202112pt;}
.ws1e{word-spacing:10.361520pt;}
.ws46{word-spacing:10.520928pt;}
.ws24{word-spacing:10.584160pt;}
.ws17{word-spacing:10.733472pt;}
.wse{word-spacing:10.950475pt;}
.ws21{word-spacing:11.158560pt;}
.ws7{word-spacing:11.285205pt;}
.wsf{word-spacing:11.428661pt;}
.ws7c{word-spacing:11.667755pt;}
.ws3e{word-spacing:11.689920pt;}
.ws1f{word-spacing:11.902464pt;}
.ws8{word-spacing:11.906848pt;}
.ws53{word-spacing:11.954667pt;}
.ws32{word-spacing:12.168144pt;}
.ws64{word-spacing:12.221280pt;}
.wsb{word-spacing:12.385035pt;}
.ws59{word-spacing:12.593232pt;}
.ws3b{word-spacing:12.699504pt;}
.ws5d{word-spacing:12.805776pt;}
.ws26{word-spacing:13.134560pt;}
.ws5b{word-spacing:13.177728pt;}
.ws4{word-spacing:13.230864pt;}
.ws22{word-spacing:13.337136pt;}
.ws1d{word-spacing:13.390272pt;}
.ws63{word-spacing:13.443408pt;}
.ws47{word-spacing:13.496544pt;}
.ws7b{word-spacing:13.676139pt;}
.ws75{word-spacing:13.771776pt;}
.ws3f{word-spacing:13.981483pt;}
.ws42{word-spacing:14.081040pt;}
.ws2f{word-spacing:14.134176pt;}
.ws11{word-spacing:14.249963pt;}
.ws20{word-spacing:14.346720pt;}
.wsd{word-spacing:14.393419pt;}
.ws45{word-spacing:14.506128pt;}
.ws3a{word-spacing:14.559264pt;}
.ws55{word-spacing:14.665536pt;}
.ws16{word-spacing:14.771808pt;}
.ws7a{word-spacing:14.775968pt;}
.ws65{word-spacing:14.824944pt;}
.ws23{word-spacing:14.878080pt;}
.ws13{word-spacing:14.967243pt;}
.ws12{word-spacing:15.015061pt;}
.ws33{word-spacing:15.037488pt;}
.ws56{word-spacing:15.303168pt;}
.ws5e{word-spacing:15.409440pt;}
.ws5f{word-spacing:15.462576pt;}
.ws74{word-spacing:15.493248pt;}
.ws37{word-spacing:15.621984pt;}
.ws36{word-spacing:15.675120pt;}
.ws3d{word-spacing:15.728256pt;}
.ws5a{word-spacing:15.781392pt;}
.ws43{word-spacing:15.940800pt;}
.ws78{word-spacing:15.993936pt;}
.ws38{word-spacing:16.259616pt;}
.ws41{word-spacing:16.312752pt;}
.ws3c{word-spacing:16.365888pt;}
.ws10{word-spacing:16.545259pt;}
.ws76{word-spacing:16.578432pt;}
.ws1c{word-spacing:16.684704pt;}
.ws2b{word-spacing:16.778075pt;}
.ws62{word-spacing:16.790976pt;}
.ws60{word-spacing:16.950384pt;}
.ws5c{word-spacing:17.109792pt;}
.ws15{word-spacing:17.269200pt;}
.ws44{word-spacing:17.322336pt;}
.ws61{word-spacing:17.428608pt;}
.ws2d{word-spacing:17.481744pt;}
.ws2e{word-spacing:17.534880pt;}
.ws35{word-spacing:17.588016pt;}
.ws18{word-spacing:17.747424pt;}
.ws19{word-spacing:18.331920pt;}
.ws40{word-spacing:18.810144pt;}
.ws57{word-spacing:18.969552pt;}
.ws50{word-spacing:18.984011pt;}
.ws77{word-spacing:19.235232pt;}
.ws1a{word-spacing:19.500912pt;}
.ws3{word-spacing:19.574667pt;}
.wsa{word-spacing:19.940384pt;}
.ws34{word-spacing:20.191680pt;}
.ws39{word-spacing:20.351088pt;}
.ws9{word-spacing:21.053173pt;}
.ws79{word-spacing:21.709675pt;}
.ws2c{word-spacing:22.423392pt;}
.ws68{word-spacing:24.270389pt;}
.ws2{word-spacing:25.934667pt;}
.ws6a{word-spacing:30.855757pt;}
.ws14{word-spacing:31.799600pt;}
.ws48{word-spacing:43.155207pt;}
.ws2a{word-spacing:453.600000pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-5.307872pt;}
._3{margin-left:-3.808000pt;}
._12{margin-left:-2.772288pt;}
._1{margin-left:-1.774933pt;}
._13{width:2.653568pt;}
._6{width:3.586400pt;}
._0{width:4.966400pt;}
._4{width:12.252864pt;}
._7{width:13.532683pt;}
._8{width:14.489056pt;}
._c{width:15.611739pt;}
._e{width:16.955698pt;}
._9{width:18.488331pt;}
._18{width:19.710507pt;}
._b{width:20.723040pt;}
._16{width:22.299328pt;}
._17{width:23.289700pt;}
._a{width:24.196245pt;}
._11{width:25.656523pt;}
._f{width:27.240976pt;}
._1d{width:28.279552pt;}
._15{width:29.331072pt;}
._d{width:30.818880pt;}
._10{width:31.860171pt;}
._1c{width:34.241029pt;}
._1a{width:35.194539pt;}
._1b{width:36.449109pt;}
._14{width:37.964203pt;}
._19{width:49.980533pt;}
.fs22{font-size:14.387733pt;}
.fs21{font-size:14.987200pt;}
.fs1f{font-size:17.984533pt;}
.fs19{font-size:18.677333pt;}
.fs1c{font-size:19.442667pt;}
.fs18{font-size:20.122667pt;}
.fs20{font-size:20.252800pt;}
.fs1b{font-size:21.012267pt;}
.fs1e{font-size:24.303467pt;}
.fs16{font-size:25.153600pt;}
.fs1a{font-size:25.681600pt;}
.fs1d{font-size:25.923733pt;}
.fs13{font-size:27.193067pt;}
.fs17{font-size:29.459200pt;}
.fs10{font-size:30.374400pt;}
.fs7{font-size:31.882667pt;}
.fsf{font-size:32.215467pt;}
.fs15{font-size:33.990933pt;}
.fs14{font-size:36.257067pt;}
.fs6{font-size:37.194667pt;}
.fse{font-size:38.345600pt;}
.fsb{font-size:42.506667pt;}
.fsc{font-size:42.666667pt;}
.fs9{font-size:45.429333pt;}
.fsd{font-size:46.022400pt;}
.fs8{font-size:47.818667pt;}
.fs3{font-size:48.000000pt;}
.fs11{font-size:50.474667pt;}
.fs5{font-size:53.136000pt;}
.fs12{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:60.570667pt;}
.fs4{font-size:70.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y44{bottom:13.984400pt;}
.y72{bottom:21.321333pt;}
.y43{bottom:25.984400pt;}
.y4c{bottom:43.727600pt;}
.y7d{bottom:57.218267pt;}
.ya1{bottom:57.219867pt;}
.y19{bottom:61.786667pt;}
.yd0{bottom:63.596800pt;}
.y71{bottom:63.596933pt;}
.y7f{bottom:64.277067pt;}
.ya3{bottom:64.278667pt;}
.y42{bottom:67.456533pt;}
.y141{bottom:67.876533pt;}
.ycf{bottom:79.537600pt;}
.y70{bottom:79.537733pt;}
.y41{bottom:80.076533pt;}
.y18{bottom:81.413333pt;}
.y81{bottom:82.178933pt;}
.ya5{bottom:82.180400pt;}
.y140{bottom:85.145733pt;}
.y13{bottom:88.706667pt;}
.y40{bottom:92.695200pt;}
.yce{bottom:95.478400pt;}
.y6f{bottom:95.478533pt;}
.y83{bottom:95.831733pt;}
.ya7{bottom:95.833200pt;}
.y17{bottom:101.040000pt;}
.y13f{bottom:102.414933pt;}
.y3f{bottom:110.771067pt;}
.ycd{bottom:111.416533pt;}
.y6e{bottom:111.417467pt;}
.y13e{bottom:119.684133pt;}
.y16{bottom:120.666667pt;}
.y3e{bottom:126.711867pt;}
.ycc{bottom:127.357333pt;}
.y6d{bottom:127.358267pt;}
.y13d{bottom:136.953333pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y3d{bottom:142.652667pt;}
.ycb{bottom:143.298133pt;}
.y6c{bottom:143.299067pt;}
.y13c{bottom:154.222533pt;}
.y3c{bottom:158.593467pt;}
.yca{bottom:159.238933pt;}
.y6b{bottom:159.239867pt;}
.y13b{bottom:171.491733pt;}
.y3b{bottom:174.534267pt;}
.y6a{bottom:175.177200pt;}
.yc9{bottom:175.179733pt;}
.y13a{bottom:188.760933pt;}
.y3a{bottom:190.475067pt;}
.yc8{bottom:191.113467pt;}
.y69{bottom:191.118000pt;}
.y139{bottom:206.030133pt;}
.y39{bottom:206.415867pt;}
.yc7{bottom:207.054267pt;}
.y68{bottom:207.058800pt;}
.y38{bottom:222.356667pt;}
.yc6{bottom:222.995067pt;}
.y67{bottom:222.999600pt;}
.y138{bottom:223.299333pt;}
.y37{bottom:238.297200pt;}
.yc5{bottom:238.935867pt;}
.y66{bottom:238.940400pt;}
.y137{bottom:240.568533pt;}
.y36{bottom:254.231067pt;}
.yc4{bottom:254.876667pt;}
.y65{bottom:254.881200pt;}
.y136{bottom:267.879200pt;}
.y35{bottom:270.171867pt;}
.yc3{bottom:270.817467pt;}
.y64{bottom:270.822000pt;}
.y34{bottom:286.112667pt;}
.yc2{bottom:286.758267pt;}
.y33{bottom:302.053467pt;}
.yc1{bottom:302.699067pt;}
.y63{bottom:302.865867pt;}
.ya{bottom:306.382667pt;}
.y135{bottom:309.233520pt;}
.y32{bottom:317.994267pt;}
.yc0{bottom:318.639867pt;}
.y134{bottom:323.842123pt;}
.y31{bottom:333.935067pt;}
.ybf{bottom:334.580667pt;}
.y133{bottom:338.450725pt;}
.yd{bottom:343.546667pt;}
.y62{bottom:346.277405pt;}
.y30{bottom:349.875867pt;}
.ybe{bottom:350.521467pt;}
.y9{bottom:351.724000pt;}
.y132{bottom:353.059328pt;}
.y61{bottom:362.218205pt;}
.y2f{bottom:365.816667pt;}
.ybd{bottom:366.462267pt;}
.y131{bottom:367.667931pt;}
.y60{bottom:378.159005pt;}
.y2e{bottom:381.757467pt;}
.y130{bottom:382.276533pt;}
.ybc{bottom:382.403067pt;}
.yb{bottom:386.533333pt;}
.y5f{bottom:394.099805pt;}
.y8{bottom:397.065333pt;}
.y2d{bottom:397.698267pt;}
.y12f{bottom:404.444000pt;}
.ybb{bottom:409.636267pt;}
.y5e{bottom:410.983769pt;}
.y2c{bottom:413.639067pt;}
.y12e{bottom:420.384800pt;}
.y5d{bottom:426.924569pt;}
.y10{bottom:433.826667pt;}
.y12d{bottom:436.325600pt;}
.y2b{bottom:437.496400pt;}
.y7{bottom:442.406667pt;}
.y5c{bottom:442.865369pt;}
.y12c{bottom:452.266400pt;}
.y5b{bottom:458.806169pt;}
.yba{bottom:465.282331pt;}
.y12b{bottom:468.207200pt;}
.y5a{bottom:474.746969pt;}
.y11{bottom:478.426667pt;}
.yb9{bottom:479.890933pt;}
.y12a{bottom:484.148000pt;}
.y6{bottom:487.748000pt;}
.y59{bottom:490.687769pt;}
.y2a{bottom:492.738715pt;}
.y129{bottom:500.088800pt;}
.y58{bottom:506.628569pt;}
.y29{bottom:507.347317pt;}
.ya0{bottom:507.786667pt;}
.y98{bottom:513.123733pt;}
.y128{bottom:516.029600pt;}
.y28{bottom:521.955920pt;}
.y97{bottom:522.531067pt;}
.y57{bottom:522.569369pt;}
.y1a{bottom:524.093333pt;}
.y99{bottom:529.242533pt;}
.y5{bottom:533.089333pt;}
.y27{bottom:536.564523pt;}
.y56{bottom:538.510169pt;}
.yb2{bottom:540.842286pt;}
.yb3{bottom:546.136400pt;}
.yb1{bottom:549.285733pt;}
.y26{bottom:551.173125pt;}
.y9a{bottom:551.562933pt;}
.yac{bottom:552.894000pt;}
.y55{bottom:555.394133pt;}
.y9f{bottom:557.936400pt;}
.ye{bottom:561.706667pt;}
.yb4{bottom:563.030267pt;}
.ya2{bottom:565.006533pt;}
.y25{bottom:565.781728pt;}
.y127{bottom:571.035061pt;}
.y54{bottom:571.335467pt;}
.ya4{bottom:572.065333pt;}
.y9b{bottom:573.883467pt;}
.yad{bottom:576.545333pt;}
.yb5{bottom:579.924133pt;}
.y24{bottom:580.390331pt;}
.y126{bottom:585.643664pt;}
.y53{bottom:587.275467pt;}
.ya6{bottom:589.967067pt;}
.y23{bottom:595.005728pt;}
.y9c{bottom:596.203867pt;}
.yb6{bottom:596.818000pt;}
.yae{bottom:600.196800pt;}
.y125{bottom:600.252267pt;}
.y52{bottom:603.216267pt;}
.ya8{bottom:603.619867pt;}
.y22{bottom:609.614331pt;}
.yb7{bottom:613.711867pt;}
.yab{bottom:617.045867pt;}
.y9d{bottom:618.524267pt;}
.yaf{bottom:623.848267pt;}
.y21{bottom:624.222933pt;}
.yaa{bottom:627.511200pt;}
.yb8{bottom:630.605733pt;}
.y51{bottom:635.258933pt;}
.y109{bottom:636.390667pt;}
.ya9{bottom:637.976400pt;}
.yfc{bottom:638.950533pt;}
.y9e{bottom:640.844667pt;}
.y108{bottom:643.116800pt;}
.yfb{bottom:645.948267pt;}
.yb0{bottom:647.499600pt;}
.y10a{bottom:647.915467pt;}
.yfd{bottom:652.071333pt;}
.y20{bottom:652.538933pt;}
.y11e{bottom:655.480085pt;}
.y11f{bottom:659.994400pt;}
.yfe{bottom:661.815333pt;}
.y11d{bottom:662.246133pt;}
.y10b{bottom:663.832533pt;}
.y118{bottom:664.826000pt;}
.y1f{bottom:667.150933pt;}
.y96{bottom:668.056997pt;}
.y110{bottom:668.431333pt;}
.yff{bottom:671.559200pt;}
.y120{bottom:672.073467pt;}
.y111{bottom:673.486267pt;}
.y112{bottom:678.533333pt;}
.y10c{bottom:679.749467pt;}
.y100{bottom:681.303200pt;}
.y119{bottom:681.736533pt;}
.y95{bottom:682.665600pt;}
.y1e{bottom:684.064267pt;}
.y121{bottom:684.152400pt;}
.y101{bottom:691.047200pt;}
.y113{bottom:691.332933pt;}
.y4{bottom:691.756000pt;}
.y50{bottom:692.874800pt;}
.y10d{bottom:695.666533pt;}
.y122{bottom:696.231333pt;}
.y11a{bottom:698.647200pt;}
.y102{bottom:700.791067pt;}
.y114{bottom:701.094667pt;}
.y123{bottom:708.310267pt;}
.y103{bottom:710.535067pt;}
.y7c{bottom:710.562667pt;}
.y117{bottom:710.710933pt;}
.y10e{bottom:711.583600pt;}
.y107{bottom:715.002533pt;}
.y11b{bottom:715.557733pt;}
.y74{bottom:715.898133pt;}
.y116{bottom:718.380267pt;}
.y104{bottom:720.279067pt;}
.y124{bottom:720.389200pt;}
.y4b{bottom:721.256000pt;}
.y106{bottom:722.920667pt;}
.y12{bottom:725.040000pt;}
.y73{bottom:725.305467pt;}
.y115{bottom:725.744667pt;}
.y48{bottom:726.093413pt;}
.y1d{bottom:726.572467pt;}
.y10f{bottom:727.500533pt;}
.y105{bottom:730.022933pt;}
.y75{bottom:732.017067pt;}
.y11c{bottom:732.468267pt;}
.y4d{bottom:734.147067pt;}
.y47{bottom:739.900133pt;}
.y8e{bottom:743.616686pt;}
.y1c{bottom:747.825467pt;}
.y8f{bottom:748.910933pt;}
.ydf{bottom:751.957333pt;}
.y8d{bottom:752.060133pt;}
.y76{bottom:754.334267pt;}
.yd2{bottom:754.517200pt;}
.y88{bottom:755.668400pt;}
.yde{bottom:758.683333pt;}
.y7b{bottom:760.710933pt;}
.yd1{bottom:761.514933pt;}
.ye0{bottom:763.482133pt;}
.y4f{bottom:764.294557pt;}
.y90{bottom:765.804800pt;}
.y4a{bottom:767.514933pt;}
.yd3{bottom:767.638000pt;}
.y7e{bottom:767.780933pt;}
.yf4{bottom:771.046752pt;}
.y4e{bottom:773.498000pt;}
.y80{bottom:774.839733pt;}
.yf5{bottom:775.561067pt;}
.y77{bottom:776.651467pt;}
.yd4{bottom:777.381867pt;}
.yf3{bottom:777.812800pt;}
.ye1{bottom:779.313333pt;}
.y89{bottom:779.319867pt;}
.yee{bottom:780.392667pt;}
.y91{bottom:782.698667pt;}
.ye6{bottom:783.998000pt;}
.yd5{bottom:787.125867pt;}
.yf6{bottom:787.640000pt;}
.ye7{bottom:789.052933pt;}
.y82{bottom:792.741600pt;}
.ye8{bottom:794.100000pt;}
.ye2{bottom:795.144533pt;}
.yd6{bottom:796.869733pt;}
.yef{bottom:797.303200pt;}
.y78{bottom:798.968667pt;}
.y92{bottom:799.592533pt;}
.yf7{bottom:799.718933pt;}
.y49{bottom:802.033333pt;}
.y8a{bottom:802.971333pt;}
.y3{bottom:805.081333pt;}
.y84{bottom:806.394400pt;}
.yd7{bottom:806.613733pt;}
.ye9{bottom:806.899600pt;}
.ye3{bottom:810.975733pt;}
.yf8{bottom:811.797867pt;}
.yf0{bottom:814.213733pt;}
.yd8{bottom:816.357733pt;}
.y93{bottom:816.486400pt;}
.yea{bottom:816.661200pt;}
.y87{bottom:819.820400pt;}
.y79{bottom:821.285867pt;}
.yf9{bottom:823.876933pt;}
.yd9{bottom:826.101600pt;}
.yed{bottom:826.277467pt;}
.y8b{bottom:826.622667pt;}
.ye4{bottom:826.806933pt;}
.y86{bottom:830.285600pt;}
.ydd{bottom:830.569067pt;}
.yf1{bottom:831.124267pt;}
.y94{bottom:833.380267pt;}
.yec{bottom:833.946800pt;}
.yda{bottom:835.845600pt;}
.yfa{bottom:835.955867pt;}
.ydc{bottom:838.487200pt;}
.y85{bottom:840.750933pt;}
.yeb{bottom:841.311200pt;}
.ye5{bottom:842.638133pt;}
.y7a{bottom:843.603067pt;}
.ydb{bottom:845.589600pt;}
.yf2{bottom:848.034800pt;}
.y8c{bottom:850.274133pt;}
.y2{bottom:857.092000pt;}
.y46{bottom:874.116267pt;}
.y1{bottom:879.748000pt;}
.y45{bottom:888.782933pt;}
.y1b{bottom:980.852667pt;}
.h37{height:12.850005pt;}
.h3b{height:13.376555pt;}
.h42{height:13.933926pt;}
.h39{height:14.008000pt;}
.h3d{height:14.582000pt;}
.h43{height:14.589125pt;}
.h41{height:15.311117pt;}
.h3a{height:15.885274pt;}
.h15{height:16.737600pt;}
.h28{height:17.305677pt;}
.h23{height:18.708830pt;}
.h38{height:19.261200pt;}
.h3c{height:19.442800pt;}
.h2b{height:20.267930pt;}
.h25{height:20.394800pt;}
.h32{height:20.404855pt;}
.h2f{height:20.405389pt;}
.h3e{height:21.195226pt;}
.he{height:21.935275pt;}
.h1c{height:22.113394pt;}
.h1b{height:23.453741pt;}
.h40{height:25.322045pt;}
.h26{height:25.493200pt;}
.h24{height:27.192800pt;}
.h1a{height:27.916645pt;}
.h3f{height:28.289671pt;}
.h4{height:29.333333pt;}
.h16{height:29.354667pt;}
.h30{height:29.643810pt;}
.h2c{height:29.644343pt;}
.h17{height:32.784000pt;}
.h10{height:32.899243pt;}
.hb{height:33.024000pt;}
.h1d{height:33.042699pt;}
.hf{height:33.117984pt;}
.h29{height:33.142207pt;}
.h18{height:33.505566pt;}
.h2e{height:35.415469pt;}
.h31{height:35.416003pt;}
.h2a{height:35.419600pt;}
.h12{height:36.557568pt;}
.h1e{height:36.560768pt;}
.h21{height:36.565035pt;}
.h36{height:36.567168pt;}
.h35{height:36.568235pt;}
.h20{height:36.571435pt;}
.h34{height:36.585835pt;}
.h22{height:36.693333pt;}
.h44{height:36.716976pt;}
.h1f{height:36.796032pt;}
.h2d{height:39.566613pt;}
.h11{height:44.156016pt;}
.h14{height:44.878464pt;}
.hd{height:44.880597pt;}
.h33{height:44.895641pt;}
.h13{height:44.902997pt;}
.hc{height:51.516000pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h19{height:136.697333pt;}
.h27{height:147.392000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:944.666667pt;}
.h9{height:944.881333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.wb{width:488.477333pt;}
.w5{width:491.253333pt;}
.wd{width:491.308000pt;}
.wc{width:491.309333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:642.520000pt;}
.wa{width:642.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.xa{left:-30.992133pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x20{left:5.494400pt;}
.x1b{left:43.443333pt;}
.x11{left:48.000000pt;}
.xb{left:75.590667pt;}
.x12{left:79.060400pt;}
.x10{left:80.916000pt;}
.x31{left:82.126400pt;}
.x1f{left:84.169733pt;}
.xf{left:85.296000pt;}
.x21{left:86.651333pt;}
.x13{left:88.333914pt;}
.xe{left:89.674667pt;}
.x1e{left:92.755867pt;}
.xd{left:95.516667pt;}
.x1c{left:104.144533pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:132.284000pt;}
.x30{left:134.007733pt;}
.x1d{left:145.271067pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x32{left:173.774133pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x17{left:208.382267pt;}
.x36{left:224.570533pt;}
.x14{left:226.741733pt;}
.x35{left:229.394133pt;}
.x33{left:237.537067pt;}
.x26{left:241.142800pt;}
.x27{left:243.623367pt;}
.x24{left:249.728933pt;}
.x25{left:255.011067pt;}
.x37{left:256.539867pt;}
.x34{left:266.942133pt;}
.x22{left:269.798933pt;}
.x28{left:281.175067pt;}
.x23{left:310.925333pt;}
.x1a{left:316.036800pt;}
.x2f{left:319.816267pt;}
.x3c{left:336.773333pt;}
.x3d{left:338.546945pt;}
.x3a{left:341.628533pt;}
.x19{left:344.004313pt;}
.x3b{left:345.405200pt;}
.x38{left:355.978400pt;}
.x18{left:362.251733pt;}
.x3e{left:364.112267pt;}
.x39{left:385.383467pt;}
.x2d{left:406.797067pt;}
.x2e{left:409.277767pt;}
.x2b{left:415.383200pt;}
.x2c{left:420.665467pt;}
.x29{left:435.453200pt;}
.x43{left:455.214667pt;}
.x44{left:456.988278pt;}
.x41{left:460.069867pt;}
.x42{left:463.846533pt;}
.x15{left:472.394267pt;}
.x3f{left:474.419733pt;}
.x2a{left:476.579733pt;}
.x16{left:483.141867pt;}
.x40{left:503.824800pt;}
}




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