
    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_238e7e70545870c0f235b614.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c8bbf568140f893c8146809b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693000;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_e24aa2a977a949ea817137a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9711f12b02d5302d9a2d366d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9d0a25dc5e659a71862ebdac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2267954a120d674a37351c88.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfcf8d0d621d05271ef79a84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.858398;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_bcd656bf0cd453c77266e41b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_5dcba6cf726c90c20278c832.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_6e665eff771a285325d33d63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;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_99aa02e0af312db63188e303.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;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_aab6f2491ea978d9598ca03c.woff2')format("woff");}.fff{font-family:fff;line-height:0.844727;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_e29ad92030dbd3dfd3e40c9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.932000;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;}
.m27{transform:matrix(0.000000,-0.249891,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249891,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249891,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-25.056000px;}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:25.344000px;}
.v3{vertical-align:29.586600px;}
.ls25{letter-spacing:-1.078402px;}
.ls2e{letter-spacing:-1.041328px;}
.ls3d{letter-spacing:-1.039500px;}
.ls47{letter-spacing:-0.982800px;}
.ls2a{letter-spacing:-0.977617px;}
.ls36{letter-spacing:-0.734580px;}
.ls4c{letter-spacing:-0.694512px;}
.ls18{letter-spacing:-0.599672px;}
.ls42{letter-spacing:-0.545160px;}
.ls4e{letter-spacing:-0.515424px;}
.ls3a{letter-spacing:-0.452760px;}
.ls1a{letter-spacing:-0.443455px;}
.ls50{letter-spacing:-0.428064px;}
.ls2c{letter-spacing:-0.312794px;}
.ls3c{letter-spacing:-0.249480px;}
.ls53{letter-spacing:-0.235872px;}
.ls17{letter-spacing:-0.216688px;}
.ls35{letter-spacing:-0.166320px;}
.ls43{letter-spacing:-0.157248px;}
.ls4b{letter-spacing:-0.135408px;}
.ls37{letter-spacing:-0.101640px;}
.ls4d{letter-spacing:-0.096096px;}
.ls38{letter-spacing:-0.092400px;}
.ls49{letter-spacing:-0.087360px;}
.ls41{letter-spacing:-0.064680px;}
.ls45{letter-spacing:-0.061152px;}
.ls3e{letter-spacing:-0.036960px;}
.ls54{letter-spacing:-0.034944px;}
.ls46{letter-spacing:-0.008736px;}
.ls6{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.039312px;}
.ls34{letter-spacing:0.046802px;}
.ls56{letter-spacing:0.048048px;}
.ls40{letter-spacing:0.050820px;}
.ls4a{letter-spacing:0.061152px;}
.ls31{letter-spacing:0.064680px;}
.ls4f{letter-spacing:0.078624px;}
.ls39{letter-spacing:0.083160px;}
.ls55{letter-spacing:0.087360px;}
.ls13{letter-spacing:0.090707px;}
.ls48{letter-spacing:0.096096px;}
.ls51{letter-spacing:0.117936px;}
.ls3b{letter-spacing:0.124740px;}
.ls33{letter-spacing:0.135408px;}
.ls32{letter-spacing:0.137281px;}
.ls28{letter-spacing:0.141099px;}
.ls30{letter-spacing:0.143220px;}
.ls2f{letter-spacing:0.178174px;}
.ls2d{letter-spacing:0.182133px;}
.ls44{letter-spacing:0.187824px;}
.ls3f{letter-spacing:0.198660px;}
.ls21{letter-spacing:0.257362px;}
.ls22{letter-spacing:0.273201px;}
.ls2b{letter-spacing:0.292997px;}
.ls1f{letter-spacing:0.296957px;}
.ls1e{letter-spacing:0.372905px;}
.ls23{letter-spacing:0.373014px;}
.ls29{letter-spacing:0.408180px;}
.ls24{letter-spacing:0.408300px;}
.ls12{letter-spacing:0.425819px;}
.ls19{letter-spacing:0.428337px;}
.ls1d{letter-spacing:0.458573px;}
.ls27{letter-spacing:0.463612px;}
.ls20{letter-spacing:0.473691px;}
.ls15{letter-spacing:0.524083px;}
.ls26{letter-spacing:0.544240px;}
.ls16{letter-spacing:0.589594px;}
.ls1b{letter-spacing:0.650065px;}
.ls57{letter-spacing:0.717483px;}
.ls1c{letter-spacing:0.750850px;}
.ls14{letter-spacing:0.786125px;}
.ls7{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls5{letter-spacing:11.954850px;}
.ls5c{letter-spacing:13.436004px;}
.ls5b{letter-spacing:13.448400px;}
.ls5a{letter-spacing:14.094088px;}
.ls59{letter-spacing:14.100088px;}
.ls11{letter-spacing:14.742181px;}
.lsa{letter-spacing:14.943900px;}
.ls10{letter-spacing:15.123227px;}
.ls8{letter-spacing:15.242778px;}
.ls9{letter-spacing:16.976270px;}
.lsb{letter-spacing:19.965050px;}
.ls58{letter-spacing:51.028200px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.lsf{letter-spacing:121.172622px;}
.lsd{letter-spacing:122.914558px;}
.lse{letter-spacing:123.354092px;}
.lsc{letter-spacing:138.291944px;}
.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;}
}
.wsc7{word-spacing:-14.943900px;}
.wsd2{word-spacing:-13.449600px;}
.ws60{word-spacing:-12.174858px;}
.ws68{word-spacing:-12.139584px;}
.ws41{word-spacing:-12.104640px;}
.ws67{word-spacing:-12.038798px;}
.ws7c{word-spacing:-11.978327px;}
.ws1e{word-spacing:-11.955150px;}
.ws81{word-spacing:-11.862424px;}
.ws69{word-spacing:-11.847306px;}
.ws65{word-spacing:-11.817071px;}
.ws7a{word-spacing:-11.800360px;}
.ws7f{word-spacing:-11.796914px;}
.ws6a{word-spacing:-11.761639px;}
.ws7e{word-spacing:-11.529833px;}
.ws5f{word-spacing:-11.479440px;}
.ws3{word-spacing:-11.357400px;}
.ws66{word-spacing:-10.945278px;}
.ws64{word-spacing:-10.789061px;}
.ws92{word-spacing:-10.584419px;}
.ws95{word-spacing:-10.505879px;}
.ws9a{word-spacing:-10.492019px;}
.ws80{word-spacing:-10.411117px;}
.ws96{word-spacing:-10.348799px;}
.wsad{word-spacing:-10.059503px;}
.wsa6{word-spacing:-10.007087px;}
.ws93{word-spacing:-9.988439px;}
.wsaa{word-spacing:-9.932831px;}
.wsae{word-spacing:-9.919727px;}
.wsa8{word-spacing:-9.910991px;}
.wsab{word-spacing:-9.784319px;}
.wsa3{word-spacing:-9.736271px;}
.ws9d{word-spacing:-9.714431px;}
.wsa7{word-spacing:-9.443615px;}
.ws7b{word-spacing:-9.245247px;}
.ws85{word-spacing:-9.205653px;}
.ws87{word-spacing:-9.126464px;}
.ws86{word-spacing:-8.948290px;}
.ws83{word-spacing:-8.635496px;}
.wse1{word-spacing:-3.174106px;}
.wsd5{word-spacing:-3.120307px;}
.wsbf{word-spacing:-2.929004px;}
.wsdd{word-spacing:-2.797517px;}
.wsc2{word-spacing:-2.689902px;}
.ws43{word-spacing:-2.510575px;}
.ws8c{word-spacing:-2.450800px;}
.ws15{word-spacing:-2.331248px;}
.ws14{word-spacing:-2.151922px;}
.ws3f{word-spacing:-2.032370px;}
.ws32{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws4c{word-spacing:-1.753100px;}
.ws4a{word-spacing:-1.733492px;}
.wse2{word-spacing:-1.667750px;}
.ws31{word-spacing:-1.613941px;}
.ws17{word-spacing:-1.374839px;}
.ws6{word-spacing:-1.322630px;}
.wsec{word-spacing:-1.291162px;}
.ws77{word-spacing:-1.197808px;}
.ws79{word-spacing:-1.195512px;}
.ws42{word-spacing:-1.016185px;}
.ws1c{word-spacing:-0.836858px;}
.ws33{word-spacing:-0.717307px;}
.wsd6{word-spacing:-0.699379px;}
.ws6b{word-spacing:-0.657532px;}
.wse9{word-spacing:-0.645581px;}
.ws6d{word-spacing:-0.597756px;}
.wsdf{word-spacing:-0.591782px;}
.ws4e{word-spacing:-0.537980px;}
.ws9c{word-spacing:-0.478494px;}
.ws45{word-spacing:-0.478205px;}
.wsa5{word-spacing:-0.452707px;}
.wsa4{word-spacing:-0.452395px;}
.ws30{word-spacing:-0.418429px;}
.ws9e{word-spacing:-0.389372px;}
.ws82{word-spacing:-0.362095px;}
.ws35{word-spacing:-0.358654px;}
.ws84{word-spacing:-0.357063px;}
.ws99{word-spacing:-0.326695px;}
.ws27{word-spacing:-0.298878px;}
.ws98{word-spacing:-0.271254px;}
.wsd1{word-spacing:-0.268992px;}
.wsac{word-spacing:-0.256458px;}
.ws7d{word-spacing:-0.256274px;}
.ws21{word-spacing:-0.239102px;}
.wsa1{word-spacing:-0.224010px;}
.ws9b{word-spacing:-0.214494px;}
.wsaf{word-spacing:-0.202795px;}
.ws58{word-spacing:-0.200140px;}
.ws59{word-spacing:-0.198078px;}
.ws1a{word-spacing:-0.179327px;}
.ws97{word-spacing:-0.159715px;}
.ws94{word-spacing:-0.156410px;}
.wsa9{word-spacing:-0.147879px;}
.ws19{word-spacing:-0.119551px;}
.wse3{word-spacing:-0.107597px;}
.wsa2{word-spacing:-0.089225px;}
.ws2b{word-spacing:-0.059776px;}
.wsdb{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.wsa0{word-spacing:-0.005612px;}
.ws1{word-spacing:-0.001542px;}
.ws2{word-spacing:-0.000892px;}
.wsb6{word-spacing:-0.000566px;}
.ws0{word-spacing:0.000000px;}
.wsd3{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws51{word-spacing:0.073910px;}
.ws9f{word-spacing:0.088616px;}
.ws4{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws5d{word-spacing:0.145331px;}
.wse0{word-spacing:0.161395px;}
.wsa{word-spacing:0.179327px;}
.ws1b{word-spacing:0.239102px;}
.wse4{word-spacing:0.268992px;}
.wsb{word-spacing:0.298878px;}
.ws55{word-spacing:0.332951px;}
.ws2f{word-spacing:0.358654px;}
.ws2a{word-spacing:0.418429px;}
.ws9{word-spacing:0.478205px;}
.wsd{word-spacing:0.537980px;}
.wsba{word-spacing:0.597756px;}
.wscf{word-spacing:0.645581px;}
.wsc{word-spacing:0.657532px;}
.wsea{word-spacing:0.753178px;}
.wsb4{word-spacing:0.777083px;}
.wse{word-spacing:0.836858px;}
.wse5{word-spacing:0.860774px;}
.wsb5{word-spacing:0.896634px;}
.ws25{word-spacing:1.075961px;}
.ws49{word-spacing:1.135736px;}
.ws72{word-spacing:1.203007px;}
.ws40{word-spacing:1.255288px;}
.wsbb{word-spacing:1.434614px;}
.wseb{word-spacing:1.452557px;}
.wsb9{word-spacing:1.494390px;}
.ws8d{word-spacing:1.554166px;}
.ws28{word-spacing:1.793268px;}
.wse8{word-spacing:1.829146px;}
.ws34{word-spacing:1.853044px;}
.ws13{word-spacing:1.912819px;}
.ws10{word-spacing:1.972595px;}
.wsc9{word-spacing:2.032370px;}
.wsd4{word-spacing:2.044339px;}
.wsce{word-spacing:2.151936px;}
.ws44{word-spacing:2.211697px;}
.wsed{word-spacing:2.259533px;}
.wsf{word-spacing:2.391024px;}
.wse7{word-spacing:2.420928px;}
.ws22{word-spacing:2.510575px;}
.wsb0{word-spacing:2.630126px;}
.wsd7{word-spacing:2.636122px;}
.ws76{word-spacing:2.689902px;}
.ws24{word-spacing:2.869229px;}
.wsdc{word-spacing:2.905114px;}
.ws3e{word-spacing:3.108331px;}
.ws2e{word-spacing:3.168107px;}
.wsd0{word-spacing:3.224822px;}
.ws5{word-spacing:3.227904px;}
.ws12{word-spacing:3.347434px;}
.wsbd{word-spacing:3.466985px;}
.ws18{word-spacing:3.586536px;}
.wsca{word-spacing:3.646312px;}
.ws3a{word-spacing:3.765863px;}
.wsde{word-spacing:3.765888px;}
.ws74{word-spacing:3.825638px;}
.ws90{word-spacing:3.945190px;}
.ws23{word-spacing:4.004965px;}
.ws37{word-spacing:4.184292px;}
.ws39{word-spacing:4.244068px;}
.ws3d{word-spacing:4.363619px;}
.ws29{word-spacing:4.542946px;}
.wsbc{word-spacing:4.602721px;}
.wsb7{word-spacing:4.901599px;}
.wsd8{word-spacing:5.003251px;}
.ws11{word-spacing:5.021150px;}
.wsd9{word-spacing:5.057050px;}
.ws38{word-spacing:5.080926px;}
.ws47{word-spacing:5.140702px;}
.ws2d{word-spacing:5.260253px;}
.ws8a{word-spacing:5.678682px;}
.wscd{word-spacing:5.864026px;}
.ws88{word-spacing:6.216662px;}
.wsb1{word-spacing:6.575316px;}
.ws48{word-spacing:6.754643px;}
.ws6e{word-spacing:6.814418px;}
.wsc6{word-spacing:6.933970px;}
.wse6{word-spacing:7.316582px;}
.wsc0{word-spacing:7.531726px;}
.wsc1{word-spacing:7.591501px;}
.ws20{word-spacing:7.770828px;}
.ws8{word-spacing:7.890379px;}
.ws46{word-spacing:8.249033px;}
.ws3b{word-spacing:8.727238px;}
.ws3c{word-spacing:9.026116px;}
.ws2c{word-spacing:9.683647px;}
.wscc{word-spacing:10.167898px;}
.wscb{word-spacing:10.652083px;}
.ws1d{word-spacing:11.907329px;}
.ws4d{word-spacing:13.113162px;}
.ws4b{word-spacing:13.150632px;}
.wsb2{word-spacing:13.395802px;}
.ws78{word-spacing:13.688612px;}
.ws6c{word-spacing:14.276682px;}
.ws4f{word-spacing:14.320142px;}
.ws50{word-spacing:14.323773px;}
.ws36{word-spacing:14.585246px;}
.ws5a{word-spacing:14.659752px;}
.ws5b{word-spacing:14.682990px;}
.ws5c{word-spacing:14.757878px;}
.ws75{word-spacing:14.824349px;}
.ws8f{word-spacing:14.827268px;}
.ws52{word-spacing:14.962097px;}
.ws5e{word-spacing:15.003676px;}
.ws8b{word-spacing:15.109127px;}
.ws53{word-spacing:15.117899px;}
.ws71{word-spacing:15.142129px;}
.ws70{word-spacing:15.143535px;}
.ws56{word-spacing:15.197410px;}
.ws57{word-spacing:15.199088px;}
.ws54{word-spacing:15.200950px;}
.ws73{word-spacing:16.112989px;}
.wsbe{word-spacing:16.318739px;}
.ws8e{word-spacing:16.378514px;}
.wsb3{word-spacing:18.649987px;}
.wsb8{word-spacing:18.709763px;}
.ws89{word-spacing:20.562806px;}
.ws6f{word-spacing:21.713424px;}
.wsda{word-spacing:32.279040px;}
.ws62{word-spacing:49.517612px;}
.ws63{word-spacing:70.181467px;}
.ws91{word-spacing:171.832227px;}
.wsc8{word-spacing:267.754637px;}
.wsc5{word-spacing:281.204237px;}
.ws61{word-spacing:293.421892px;}
.wsc4{word-spacing:443.137421px;}
.wsc3{word-spacing:456.587021px;}
._1d{margin-left:-7.931318px;}
._0{margin-left:-6.633550px;}
._9{margin-left:-5.594983px;}
._3{margin-left:-4.142477px;}
._2{margin-left:-3.012710px;}
._4{margin-left:-1.936742px;}
._7{width:1.091170px;}
._1{width:2.990692px;}
._14{width:4.303843px;}
._2c{width:9.629914px;}
._5{width:13.449600px;}
._f{width:14.824386px;}
._6{width:16.677504px;}
._1c{width:17.813129px;}
._a{width:18.889090px;}
._8{width:20.024826px;}
._b{width:21.578992px;}
._c{width:22.654952px;}
._e{width:23.910240px;}
._12{width:26.086085px;}
._13{width:27.676103px;}
._29{width:28.874471px;}
._d{width:29.875871px;}
._17{width:31.920170px;}
._15{width:33.020054px;}
._16{width:34.849175px;}
._2a{width:36.953650px;}
._1e{width:38.794364px;}
._18{width:45.441450px;}
._2b{width:49.362310px;}
._20{width:51.048362px;}
._2d{width:61.868160px;}
._26{width:81.437549px;}
._25{width:89.143949px;}
._1b{width:138.465029px;}
._19{width:216.866730px;}
._21{width:242.738381px;}
._27{width:276.059453px;}
._22{width:283.786560px;}
._28{width:443.799348px;}
._24{width:457.248948px;}
._23{width:470.036621px;}
._1a{width:789.104172px;}
._10{width:793.676154px;}
._1f{width:1806.853321px;}
._11{width:1830.763321px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(24,38,26);}
.fc0{color:rgb(14,15,14);}
.fsd{font-size:39.594206px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsf{font-size:43.679998px;}
.fs4{font-size:45.429600px;}
.fse{font-size:46.199997px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:48.418560px;}
.fsb{font-size:50.392626px;}
.fsc{font-size:50.407347px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:55.665000px;}
.fs11{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:66.798000px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y17{bottom:3.425340px;}
.y3{bottom:5.120744px;}
.y103{bottom:10.960035px;}
.y146{bottom:11.904937px;}
.y129{bottom:13.286452px;}
.y16{bottom:14.151273px;}
.y105{bottom:17.872035px;}
.y4{bottom:19.058054px;}
.y102{bottom:23.488035px;}
.y145{bottom:25.196137px;}
.y128{bottom:27.344452px;}
.yce{bottom:30.611985px;}
.yec{bottom:31.912035px;}
.yf8{bottom:32.128035px;}
.y2{bottom:35.777473px;}
.y144{bottom:41.108137px;}
.y104{bottom:45.304035px;}
.yeb{bottom:52.216035px;}
.y142{bottom:61.325737px;}
.y118{bottom:61.796452px;}
.y33{bottom:63.780000px;}
.y127{bottom:67.736452px;}
.yd4{bottom:70.571985px;}
.yfe{bottom:72.088035px;}
.y141{bottom:74.616937px;}
.y135{bottom:74.991337px;}
.yf0{bottom:75.976035px;}
.y126{bottom:81.794452px;}
.y143{bottom:85.474537px;}
.y140{bottom:87.908137px;}
.ye9{bottom:88.288110px;}
.yd3{bottom:95.627985px;}
.yfd{bottom:97.144035px;}
.yef{bottom:101.032035px;}
.ydd{bottom:108.612000px;}
.y147{bottom:114.381000px;}
.y112{bottom:114.499500px;}
.y65{bottom:114.993000px;}
.y1c5{bottom:115.011000px;}
.y117{bottom:116.246452px;}
.y170{bottom:116.356500px;}
.ycf{bottom:116.363985px;}
.yf9{bottom:117.880035px;}
.y32{bottom:118.695000px;}
.y125{bottom:119.216452px;}
.y8d{bottom:119.863500px;}
.yc4{bottom:121.474500px;}
.yed{bottom:122.632035px;}
.y13f{bottom:125.535337px;}
.ydc{bottom:128.875500px;}
.y116{bottom:130.304452px;}
.y124{bottom:133.274452px;}
.y111{bottom:134.763000px;}
.y64{bottom:135.256500px;}
.y1c4{bottom:135.274500px;}
.y16f{bottom:136.620000px;}
.y31{bottom:138.958500px;}
.y198{bottom:139.647000px;}
.y8c{bottom:140.128500px;}
.yc3{bottom:141.738000px;}
.yd5{bottom:142.283985px;}
.y12d{bottom:142.788203px;}
.y13e{bottom:143.506537px;}
.ydb{bottom:149.139000px;}
.y110{bottom:155.028000px;}
.y63{bottom:155.520000px;}
.y1c3{bottom:155.539500px;}
.y16e{bottom:156.885000px;}
.y122{bottom:157.628452px;}
.y30{bottom:159.222000px;}
.yf2{bottom:160.000035px;}
.y8b{bottom:160.392000px;}
.yc2{bottom:162.001500px;}
.yd0{bottom:163.235967px;}
.y13c{bottom:163.536937px;}
.yfa{bottom:164.752035px;}
.yda{bottom:169.404000px;}
.y197{bottom:170.683500px;}
.yff{bottom:174.256035px;}
.yf1{bottom:175.120035px;}
.y10f{bottom:175.291500px;}
.y62{bottom:175.785000px;}
.y1c2{bottom:175.803000px;}
.y13b{bottom:176.828137px;}
.y16d{bottom:177.148500px;}
.y13d{bottom:178.138537px;}
.y1f4{bottom:179.029500px;}
.y2f{bottom:179.487000px;}
.y8a{bottom:180.657000px;}
.ycd{bottom:180.947967px;}
.y121{bottom:181.388452px;}
.yc1{bottom:182.266500px;}
.y12b{bottom:188.516452px;}
.yd9{bottom:189.667500px;}
.yee{bottom:190.456017px;}
.y196{bottom:194.839500px;}
.y120{bottom:195.446452px;}
.y10e{bottom:195.555000px;}
.y61{bottom:196.048500px;}
.y1c1{bottom:196.068000px;}
.y16c{bottom:197.413500px;}
.y1f3{bottom:198.397500px;}
.y2e{bottom:199.750500px;}
.y89{bottom:200.920500px;}
.y12a{bottom:202.376452px;}
.yc0{bottom:202.530000px;}
.yd2{bottom:204.275967px;}
.yfc{bottom:205.792017px;}
.y123{bottom:206.138452px;}
.y11f{bottom:209.306452px;}
.y130{bottom:209.775337px;}
.yd8{bottom:209.932500px;}
.y195{bottom:210.324000px;}
.yf7{bottom:212.920017px;}
.y10d{bottom:215.820000px;}
.y60{bottom:216.313500px;}
.y1c0{bottom:216.331500px;}
.y16b{bottom:217.677000px;}
.y1f2{bottom:217.764000px;}
.yd1{bottom:219.395967px;}
.y101{bottom:219.400017px;}
.y15a{bottom:219.430500px;}
.y2d{bottom:220.015500px;}
.yfb{bottom:220.912017px;}
.y88{bottom:221.184000px;}
.ybf{bottom:222.795000px;}
.y12f{bottom:223.066537px;}
.y107{bottom:226.312017px;}
.yd7{bottom:230.196000px;}
.y100{bottom:234.736017px;}
.y10c{bottom:236.083500px;}
.y5f{bottom:236.577000px;}
.y1bf{bottom:236.595000px;}
.y1f1{bottom:237.132000px;}
.y16a{bottom:237.940500px;}
.y159{bottom:239.695500px;}
.y2c{bottom:240.279000px;}
.y87{bottom:241.449000px;}
.y106{bottom:241.648017px;}
.y194{bottom:241.953000px;}
.ycc{bottom:242.723965px;}
.ybe{bottom:243.058500px;}
.yf5{bottom:244.240017px;}
.y134{bottom:254.890537px;}
.y11e{bottom:255.638452px;}
.y10b{bottom:256.348500px;}
.y1f0{bottom:256.498500px;}
.y5e{bottom:256.840500px;}
.y1be{bottom:256.860000px;}
.ycb{bottom:258.059967px;}
.y169{bottom:258.205500px;}
.yf4{bottom:259.576015px;}
.y158{bottom:259.959000px;}
.y193{bottom:260.425500px;}
.y86{bottom:261.712500px;}
.yca{bottom:261.731967px;}
.ybd{bottom:263.322000px;}
.yea{bottom:265.408015px;}
.y133{bottom:268.181737px;}
.yf6{bottom:268.432015px;}
.y2b{bottom:269.509500px;}
.yd6{bottom:272.343000px;}
.y1ef{bottom:275.866500px;}
.y10a{bottom:276.612000px;}
.y5d{bottom:277.105500px;}
.y1bd{bottom:277.123500px;}
.y168{bottom:278.469000px;}
.y157{bottom:280.222500px;}
.y192{bottom:280.690500px;}
.y11d{bottom:281.180452px;}
.y85{bottom:281.977500px;}
.ybc{bottom:283.587000px;}
.yc8{bottom:286.139967px;}
.yc9{bottom:287.219967px;}
.ye8{bottom:290.464017px;}
.y139{bottom:290.832937px;}
.yf3{bottom:293.704017px;}
.y1ee{bottom:295.234500px;}
.y109{bottom:296.875500px;}
.y5c{bottom:297.369000px;}
.y1bc{bottom:297.388500px;}
.y167{bottom:298.734000px;}
.y191{bottom:299.164500px;}
.y156{bottom:300.487500px;}
.yc7{bottom:300.749640px;}
.y11b{bottom:301.574460px;}
.y84{bottom:302.241000px;}
.ybb{bottom:303.850500px;}
.y115{bottom:308.900460px;}
.y138{bottom:311.050545px;}
.y1ed{bottom:314.601000px;}
.y11a{bottom:315.632460px;}
.ye7{bottom:316.168017px;}
.y114{bottom:316.424460px;}
.y5b{bottom:317.632500px;}
.y1bb{bottom:317.652000px;}
.y132{bottom:317.976945px;}
.ye6{bottom:318.112017px;}
.y166{bottom:318.997500px;}
.y155{bottom:320.751000px;}
.y83{bottom:322.504500px;}
.yba{bottom:324.115500px;}
.y137{bottom:324.341745px;}
.y12e{bottom:325.090545px;}
.y11c{bottom:327.314460px;}
.y119{bottom:329.690460px;}
.y190{bottom:330.201000px;}
.y131{bottom:331.080945px;}
.y1ec{bottom:333.969000px;}
.y13a{bottom:334.076145px;}
.y136{bottom:337.632945px;}
.y5a{bottom:337.897500px;}
.y1ba{bottom:337.915500px;}
.y108{bottom:340.842000px;}
.y154{bottom:341.016000px;}
.y82{bottom:342.769500px;}
.yb9{bottom:344.379000px;}
.y2a{bottom:345.918000px;}
.y18f{bottom:350.464500px;}
.y1eb{bottom:353.335500px;}
.y59{bottom:358.161000px;}
.y1b9{bottom:358.180500px;}
.y153{bottom:361.279500px;}
.y165{bottom:362.964000px;}
.y81{bottom:363.033000px;}
.yb8{bottom:364.642500px;}
.ye5{bottom:369.249090px;}
.y18e{bottom:370.728000px;}
.y1ea{bottom:372.703500px;}
.y58{bottom:378.426000px;}
.y1b8{bottom:378.444000px;}
.y152{bottom:381.543000px;}
.y80{bottom:383.298000px;}
.y29{bottom:384.114000px;}
.yb7{bottom:384.907500px;}
.y18d{bottom:390.993000px;}
.y1e9{bottom:392.071500px;}
.y57{bottom:398.689500px;}
.y1b7{bottom:398.709000px;}
.y151{bottom:401.808000px;}
.y7f{bottom:403.561500px;}
.y28{bottom:404.379000px;}
.yb6{bottom:405.171000px;}
.y1e8{bottom:411.438000px;}
.y56{bottom:418.953000px;}
.y1b6{bottom:418.972500px;}
.y150{bottom:422.071500px;}
.y7e{bottom:423.825000px;}
.y27{bottom:424.642500px;}
.yb5{bottom:425.436000px;}
.y1e7{bottom:430.806000px;}
.y18c{bottom:437.373000px;}
.y55{bottom:439.218000px;}
.y1b5{bottom:439.236000px;}
.y14f{bottom:442.336500px;}
.y7d{bottom:444.090000px;}
.y26{bottom:444.907500px;}
.yb4{bottom:445.699500px;}
.y1e6{bottom:450.172500px;}
.y54{bottom:459.481500px;}
.y1b4{bottom:459.501000px;}
.y18b{bottom:461.386500px;}
.y14e{bottom:462.600000px;}
.y7c{bottom:464.353500px;}
.y25{bottom:465.171000px;}
.yb3{bottom:465.963000px;}
.y1e5{bottom:469.540500px;}
.y18a{bottom:477.900000px;}
.y53{bottom:479.746500px;}
.y7b{bottom:484.618500px;}
.y24{bottom:485.434500px;}
.yb2{bottom:486.228000px;}
.y1b3{bottom:488.731500px;}
.y1e4{bottom:488.908500px;}
.y189{bottom:494.413500px;}
.y52{bottom:500.010000px;}
.y7a{bottom:504.882000px;}
.y23{bottom:505.699500px;}
.yb1{bottom:506.491500px;}
.y14d{bottom:506.566500px;}
.y1e3{bottom:508.275000px;}
.y188{bottom:510.925500px;}
.y1b2{bottom:523.551000px;}
.y79{bottom:525.145500px;}
.y22{bottom:525.963000px;}
.yb0{bottom:526.756500px;}
.y187{bottom:527.439000px;}
.y1e2{bottom:527.643000px;}
.y12c{bottom:528.901500px;}
.y51{bottom:535.218000px;}
.y1b1{bottom:543.814500px;}
.y78{bottom:545.410500px;}
.y21{bottom:546.228000px;}
.y1e1{bottom:547.011000px;}
.yaf{bottom:547.020000px;}
.y186{bottom:551.379000px;}
.y50{bottom:555.483000px;}
.y113{bottom:557.307848px;}
.y1b0{bottom:564.079500px;}
.y77{bottom:565.674000px;}
.y1e0{bottom:566.377500px;}
.y20{bottom:566.491500px;}
.yae{bottom:567.283500px;}
.y185{bottom:567.817500px;}
.y183{bottom:570.610500px;}
.y4f{bottom:575.746500px;}
.y1af{bottom:584.343000px;}
.y1df{bottom:585.745500px;}
.y76{bottom:585.939000px;}
.y1f{bottom:586.755000px;}
.yad{bottom:587.548500px;}
.y184{bottom:591.457500px;}
.y4e{bottom:596.010000px;}
.y1ae{bottom:604.606500px;}
.y1de{bottom:605.112000px;}
.y75{bottom:606.202500px;}
.y1e{bottom:607.020000px;}
.yac{bottom:607.812000px;}
.y4d{bottom:616.275000px;}
.y1dd{bottom:624.480000px;}
.y1ad{bottom:624.871500px;}
.y74{bottom:626.466000px;}
.y1d{bottom:627.283500px;}
.yab{bottom:628.075500px;}
.y182{bottom:629.130000px;}
.y4c{bottom:636.538500px;}
.y1dc{bottom:643.848000px;}
.y1ac{bottom:645.135000px;}
.y73{bottom:646.731000px;}
.y1c{bottom:647.548500px;}
.y4b{bottom:656.803500px;}
.y181{bottom:661.749000px;}
.y1db{bottom:663.214500px;}
.y1ab{bottom:665.400000px;}
.y72{bottom:666.994500px;}
.y1b{bottom:667.812000px;}
.ya7{bottom:674.101950px;}
.y4a{bottom:675.573000px;}
.yaa{bottom:681.498600px;}
.y180{bottom:682.014000px;}
.y1da{bottom:682.582500px;}
.y1aa{bottom:685.663500px;}
.y71{bottom:687.258000px;}
.y1a{bottom:688.075500px;}
.ya5{bottom:688.896600px;}
.y49{bottom:695.836500px;}
.ya9{bottom:696.293250px;}
.y1d9{bottom:701.949000px;}
.y17f{bottom:702.277500px;}
.ya4{bottom:703.691250px;}
.y1a9{bottom:705.927000px;}
.y70{bottom:707.523000px;}
.y19{bottom:708.340500px;}
.ya8{bottom:711.087900px;}
.y48{bottom:716.100000px;}
.ya6{bottom:718.485900px;}
.y1d8{bottom:721.317000px;}
.y6f{bottom:727.786500px;}
.y18{bottom:728.604000px;}
.ye4{bottom:731.044500px;}
.y17e{bottom:733.314000px;}
.y47{bottom:736.365000px;}
.ya3{bottom:740.030550px;}
.y1d7{bottom:740.685000px;}
.ya1{bottom:747.428550px;}
.y6e{bottom:748.051500px;}
.ye3{bottom:751.308000px;}
.y17d{bottom:751.788000px;}
.y1a8{bottom:752.899500px;}
.ya2{bottom:754.825200px;}
.y46{bottom:756.628500px;}
.y164{bottom:756.840000px;}
.y1d6{bottom:760.051500px;}
.y15{bottom:764.036964px;}
.y14{bottom:764.037000px;}
.y6d{bottom:768.315000px;}
.ye2{bottom:771.573000px;}
.y17c{bottom:772.051500px;}
.ya0{bottom:776.371200px;}
.y45{bottom:776.893500px;}
.y1a7{bottom:776.913000px;}
.y163{bottom:777.105000px;}
.y1d5{bottom:779.419500px;}
.y6c{bottom:788.578500px;}
.y17b{bottom:790.525500px;}
.y9e{bottom:791.165850px;}
.ye1{bottom:791.836500px;}
.y1a6{bottom:793.426500px;}
.y44{bottom:797.157000px;}
.y162{bottom:797.368500px;}
.y9c{bottom:798.562500px;}
.y1d4{bottom:798.786000px;}
.y13{bottom:803.802000px;}
.y9d{bottom:805.960500px;}
.y6b{bottom:808.843500px;}
.y1a5{bottom:809.940000px;}
.y17a{bottom:810.790500px;}
.ye0{bottom:812.101500px;}
.y43{bottom:817.420500px;}
.y161{bottom:817.633500px;}
.y1d3{bottom:818.154000px;}
.y9f{bottom:820.755150px;}
.y12{bottom:821.959500px;}
.y1a4{bottom:826.452000px;}
.y6a{bottom:829.107000px;}
.y179{bottom:829.264500px;}
.y203{bottom:831.336000px;}
.ydf{bottom:832.365000px;}
.y1d2{bottom:837.522000px;}
.y42{bottom:837.685500px;}
.y160{bottom:837.897000px;}
.y9b{bottom:842.299800px;}
.y11{bottom:844.998000px;}
.y178{bottom:847.738500px;}
.y69{bottom:849.372000px;}
.y9a{bottom:849.697800px;}
.y1a3{bottom:850.392000px;}
.y202{bottom:850.702500px;}
.yde{bottom:852.628500px;}
.y1d1{bottom:856.888500px;}
.y15f{bottom:858.160500px;}
.y10{bottom:858.273000px;}
.y1a2{bottom:866.830500px;}
.y1a0{bottom:869.625000px;}
.y68{bottom:869.635500px;}
.y201{bottom:870.070500px;}
.y200{bottom:870.475500px;}
.y41{bottom:872.893500px;}
.y1d0{bottom:876.256500px;}
.y15e{bottom:878.425500px;}
.y98{bottom:878.640450px;}
.y177{bottom:878.773500px;}
.yf{bottom:881.313000px;}
.y97{bottom:886.037100px;}
.y67{bottom:889.899000px;}
.y1a1{bottom:890.472000px;}
.y40{bottom:893.157000px;}
.y99{bottom:893.435100px;}
.ye{bottom:894.586500px;}
.y1cf{bottom:895.623000px;}
.y15d{bottom:898.689000px;}
.y1ff{bottom:903.021000px;}
.y176{bottom:909.810000px;}
.yc6{bottom:910.164000px;}
.y3f{bottom:913.422000px;}
.y95{bottom:914.981100px;}
.y1ce{bottom:914.991000px;}
.yd{bottom:917.626500px;}
.y15c{bottom:918.954000px;}
.y66{bottom:919.129500px;}
.y94{bottom:922.377750px;}
.y1fe{bottom:922.389000px;}
.y19f{bottom:928.143000px;}
.y175{bottom:928.284000px;}
.y96{bottom:929.774400px;}
.y14c{bottom:930.427500px;}
.yc{bottom:930.901500px;}
.y3e{bottom:933.685500px;}
.yc5{bottom:939.394500px;}
.y1fd{bottom:941.755500px;}
.y1cd{bottom:943.324500px;}
.y174{bottom:946.758000px;}
.yb{bottom:949.057500px;}
.y14b{bottom:950.692500px;}
.y93{bottom:951.320400px;}
.ya{bottom:953.940000px;}
.y3d{bottom:953.949000px;}
.y91{bottom:958.718400px;}
.y1fc{bottom:961.123500px;}
.y15b{bottom:962.920500px;}
.y19e{bottom:965.247000px;}
.y90{bottom:966.115050px;}
.y173{bottom:967.021500px;}
.y14a{bottom:970.956000px;}
.y3c{bottom:974.214000px;}
.y9{bottom:976.182000px;}
.y1fb{bottom:980.490000px;}
.y92{bottom:980.909700px;}
.y1cc{bottom:982.777500px;}
.y172{bottom:985.495500px;}
.y19d{bottom:985.512000px;}
.y149{bottom:991.219500px;}
.y3b{bottom:994.477500px;}
.y8{bottom:996.445500px;}
.y1fa{bottom:999.858000px;}
.y8f{bottom:1002.521850px;}
.y171{bottom:1003.969500px;}
.y19c{bottom:1005.775500px;}
.y1cb{bottom:1006.941000px;}
.y3a{bottom:1014.742500px;}
.y1f9{bottom:1019.226000px;}
.y148{bottom:1020.450000px;}
.y1ca{bottom:1031.106000px;}
.y39{bottom:1035.006000px;}
.y19b{bottom:1037.995500px;}
.y8e{bottom:1038.430500px;}
.y1f8{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y1c9{bottom:1046.304000px;}
.y38{bottom:1055.269500px;}
.y19a{bottom:1056.765000px;}
.y1f7{bottom:1057.960500px;}
.y1c8{bottom:1061.502000px;}
.y6{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y199{bottom:1077.028500px;}
.y1f6{bottom:1077.327000px;}
.y1c7{bottom:1085.667000px;}
.y36{bottom:1095.798000px;}
.y1f5{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y1c6{bottom:1100.865000px;}
.y35{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h1a{height:27.066351px;}
.h10{height:29.349820px;}
.h1f{height:29.859373px;}
.h8{height:30.461558px;}
.h21{height:30.582721px;}
.h1d{height:31.582029px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h16{height:34.275844px;}
.h18{height:34.448084px;}
.h19{height:34.458147px;}
.h11{height:35.006619px;}
.hf{height:35.052500px;}
.h13{height:35.248712px;}
.h23{height:38.519654px;}
.h3{height:38.687175px;}
.h22{height:38.896243px;}
.h9{height:39.165235px;}
.h20{height:39.434227px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h5{height:43.815515px;}
.h4{height:45.289044px;}
.h2{height:50.176802px;}
.h7{height:54.541601px;}
.h1c{height:56.926029px;}
.h12{height:64.835312px;}
.h14{height:64.840712px;}
.h6{height:77.792486px;}
.h15{height:303.892200px;}
.h17{height:338.151150px;}
.h1b{height:354.716249px;}
.h1e{height:362.894485px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:186.520426px;}
.w4{width:388.794150px;}
.w7{width:547.241464px;}
.w5{width:595.755990px;}
.w6{width:603.665354px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6f{left:21.188731px;}
.x7{left:29.274117px;}
.x5b{left:31.133335px;}
.x4f{left:37.201950px;}
.x52{left:38.777220px;}
.x55{left:42.214680px;}
.x51{left:45.622620px;}
.x54{left:47.699190px;}
.x56{left:48.903120px;}
.x2{left:56.109299px;}
.x5f{left:65.236680px;}
.x5e{left:76.100490px;}
.x6c{left:77.393250px;}
.x61{left:78.859080px;}
.x5c{left:80.104950px;}
.x60{left:83.091780px;}
.x7d{left:86.280652px;}
.x62{left:91.442610px;}
.x7e{left:96.369952px;}
.x63{left:99.436680px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x87{left:135.031500px;}
.x5a{left:140.406120px;}
.x6e{left:144.623012px;}
.x4{left:146.097000px;}
.x58{left:148.576680px;}
.x30{left:150.065850px;}
.x39{left:151.317300px;}
.x35{left:152.516100px;}
.x2b{left:153.907950px;}
.x2a{left:156.698400px;}
.x3f{left:167.614500px;}
.xc{left:170.035500px;}
.x7a{left:172.834250px;}
.xd{left:177.507000px;}
.x91{left:179.964000px;}
.x8c{left:181.188000px;}
.x40{left:182.559000px;}
.x4b{left:187.648500px;}
.x1a{left:188.985000px;}
.x93{left:191.467500px;}
.x8{left:192.520500px;}
.x57{left:194.562000px;}
.x1b{left:196.458000px;}
.x9{left:200.278500px;}
.x4c{left:202.591500px;}
.x49{left:204.598500px;}
.x7b{left:209.734996px;}
.x7f{left:210.747124px;}
.x80{left:216.955924px;}
.x4a{left:219.541500px;}
.x83{left:221.526490px;}
.x7c{left:225.997996px;}
.x85{left:230.292000px;}
.x76{left:232.122066px;}
.x50{left:233.146170px;}
.x36{left:235.986600px;}
.x84{left:237.103090px;}
.x3c{left:238.122300px;}
.x2c{left:243.871950px;}
.x29{left:244.998000px;}
.x65{left:246.616560px;}
.x53{left:248.781690px;}
.x4e{left:251.005770px;}
.x4d{left:252.058320px;}
.xe{left:254.425500px;}
.x67{left:255.538530px;}
.x68{left:256.742460px;}
.x97{left:258.028500px;}
.x73{left:259.130009px;}
.x72{left:260.165384px;}
.xf{left:261.897000px;}
.x77{left:264.633088px;}
.x86{left:266.758500px;}
.x75{left:271.462026px;}
.x79{left:279.441000px;}
.x20{left:292.017000px;}
.x94{left:299.026500px;}
.x21{left:306.960000px;}
.x6d{left:314.074500px;}
.x14{left:317.319000px;}
.x15{left:324.792000px;}
.x2d{left:329.066400px;}
.x2e{left:331.403250px;}
.x3a{left:332.904450px;}
.x33{left:336.589950px;}
.x37{left:337.625400px;}
.x10{left:339.426000px;}
.x31{left:340.711500px;}
.x95{left:345.111000px;}
.x11{left:346.897500px;}
.x96{left:352.581000px;}
.x3d{left:366.518100px;}
.x66{left:370.052640px;}
.x38{left:372.564750px;}
.x8d{left:375.160500px;}
.x74{left:386.085711px;}
.x81{left:389.890972px;}
.x3b{left:392.585250px;}
.x5d{left:394.887330px;}
.x69{left:397.289700px;}
.x6a{left:415.949760px;}
.x41{left:419.022000px;}
.x16{left:422.970000px;}
.x78{left:424.041734px;}
.x17{left:430.441500px;}
.x42{left:433.965000px;}
.x64{left:440.985510px;}
.x70{left:444.686121px;}
.x27{left:445.749000px;}
.x82{left:447.106234px;}
.x12{left:449.919000px;}
.x13{left:457.392000px;}
.x59{left:458.845110px;}
.x28{left:460.693500px;}
.x1e{left:474.328500px;}
.x32{left:476.819850px;}
.x2f{left:479.937000px;}
.x1f{left:489.273000px;}
.x8e{left:491.698500px;}
.x3e{left:493.995900px;}
.x34{left:496.259850px;}
.x71{left:499.259871px;}
.x6b{left:502.987770px;}
.x18{left:505.644000px;}
.x19{left:513.115500px;}
.x92{left:529.894500px;}
.x45{left:595.177500px;}
.x46{left:610.122000px;}
.x90{left:615.931500px;}
.x8f{left:623.623500px;}
.x88{left:626.767500px;}
.x8a{left:631.962000px;}
.x22{left:635.907000px;}
.x89{left:639.058500px;}
.x8b{left:644.253000px;}
.x1c{left:651.832500px;}
.x43{left:657.087000px;}
.x1d{left:659.304000px;}
.x44{left:672.030000px;}
.x6{left:702.742573px;}
.xa{left:726.585000px;}
.x23{left:732.105000px;}
.xb{left:734.056500px;}
.x24{left:747.049500px;}
.x47{left:756.496500px;}
.x25{left:758.140500px;}
.x48{left:771.441000px;}
.x26{left:773.085000px;}
@media print{
.v4{vertical-align:-22.272000pt;}
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:22.528000pt;}
.v3{vertical-align:26.299200pt;}
.ls25{letter-spacing:-0.958580pt;}
.ls2e{letter-spacing:-0.925625pt;}
.ls3d{letter-spacing:-0.924000pt;}
.ls47{letter-spacing:-0.873600pt;}
.ls2a{letter-spacing:-0.868993pt;}
.ls36{letter-spacing:-0.652960pt;}
.ls4c{letter-spacing:-0.617344pt;}
.ls18{letter-spacing:-0.533042pt;}
.ls42{letter-spacing:-0.484587pt;}
.ls4e{letter-spacing:-0.458155pt;}
.ls3a{letter-spacing:-0.402453pt;}
.ls1a{letter-spacing:-0.394182pt;}
.ls50{letter-spacing:-0.380501pt;}
.ls2c{letter-spacing:-0.278039pt;}
.ls3c{letter-spacing:-0.221760pt;}
.ls53{letter-spacing:-0.209664pt;}
.ls17{letter-spacing:-0.192612pt;}
.ls35{letter-spacing:-0.147840pt;}
.ls43{letter-spacing:-0.139776pt;}
.ls4b{letter-spacing:-0.120363pt;}
.ls37{letter-spacing:-0.090347pt;}
.ls4d{letter-spacing:-0.085419pt;}
.ls38{letter-spacing:-0.082133pt;}
.ls49{letter-spacing:-0.077653pt;}
.ls41{letter-spacing:-0.057493pt;}
.ls45{letter-spacing:-0.054357pt;}
.ls3e{letter-spacing:-0.032853pt;}
.ls54{letter-spacing:-0.031061pt;}
.ls46{letter-spacing:-0.007765pt;}
.ls6{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.034944pt;}
.ls34{letter-spacing:0.041601pt;}
.ls56{letter-spacing:0.042709pt;}
.ls40{letter-spacing:0.045173pt;}
.ls4a{letter-spacing:0.054357pt;}
.ls31{letter-spacing:0.057493pt;}
.ls4f{letter-spacing:0.069888pt;}
.ls39{letter-spacing:0.073920pt;}
.ls55{letter-spacing:0.077653pt;}
.ls13{letter-spacing:0.080628pt;}
.ls48{letter-spacing:0.085419pt;}
.ls51{letter-spacing:0.104832pt;}
.ls3b{letter-spacing:0.110880pt;}
.ls33{letter-spacing:0.120363pt;}
.ls32{letter-spacing:0.122027pt;}
.ls28{letter-spacing:0.125422pt;}
.ls30{letter-spacing:0.127307pt;}
.ls2f{letter-spacing:0.158377pt;}
.ls2d{letter-spacing:0.161896pt;}
.ls44{letter-spacing:0.166955pt;}
.ls3f{letter-spacing:0.176587pt;}
.ls21{letter-spacing:0.228767pt;}
.ls22{letter-spacing:0.242845pt;}
.ls2b{letter-spacing:0.260442pt;}
.ls1f{letter-spacing:0.263961pt;}
.ls1e{letter-spacing:0.331471pt;}
.ls23{letter-spacing:0.331568pt;}
.ls29{letter-spacing:0.362827pt;}
.ls24{letter-spacing:0.362933pt;}
.ls12{letter-spacing:0.378506pt;}
.ls19{letter-spacing:0.380744pt;}
.ls1d{letter-spacing:0.407620pt;}
.ls27{letter-spacing:0.412100pt;}
.ls20{letter-spacing:0.421058pt;}
.ls15{letter-spacing:0.465852pt;}
.ls26{letter-spacing:0.483769pt;}
.ls16{letter-spacing:0.524083pt;}
.ls1b{letter-spacing:0.577835pt;}
.ls57{letter-spacing:0.637762pt;}
.ls1c{letter-spacing:0.667422pt;}
.ls14{letter-spacing:0.698778pt;}
.ls7{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls5{letter-spacing:10.626533pt;}
.ls5c{letter-spacing:11.943115pt;}
.ls5b{letter-spacing:11.954133pt;}
.ls5a{letter-spacing:12.528078pt;}
.ls59{letter-spacing:12.533411pt;}
.ls11{letter-spacing:13.104161pt;}
.lsa{letter-spacing:13.283467pt;}
.ls10{letter-spacing:13.442868pt;}
.ls8{letter-spacing:13.549136pt;}
.ls9{letter-spacing:15.090018pt;}
.lsb{letter-spacing:17.746711pt;}
.ls58{letter-spacing:45.358400pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.lsf{letter-spacing:107.708997pt;}
.lsd{letter-spacing:109.257385pt;}
.lse{letter-spacing:109.648082pt;}
.lsc{letter-spacing:122.926172pt;}
.wsc7{word-spacing:-13.283467pt;}
.wsd2{word-spacing:-11.955200pt;}
.ws60{word-spacing:-10.822096pt;}
.ws68{word-spacing:-10.790741pt;}
.ws41{word-spacing:-10.759680pt;}
.ws67{word-spacing:-10.701154pt;}
.ws7c{word-spacing:-10.647402pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws81{word-spacing:-10.544377pt;}
.ws69{word-spacing:-10.530939pt;}
.ws65{word-spacing:-10.504063pt;}
.ws7a{word-spacing:-10.489209pt;}
.ws7f{word-spacing:-10.486146pt;}
.ws6a{word-spacing:-10.454790pt;}
.ws7e{word-spacing:-10.248740pt;}
.ws5f{word-spacing:-10.203947pt;}
.ws3{word-spacing:-10.095467pt;}
.ws66{word-spacing:-9.729136pt;}
.ws64{word-spacing:-9.590277pt;}
.ws92{word-spacing:-9.408373pt;}
.ws95{word-spacing:-9.338559pt;}
.ws9a{word-spacing:-9.326239pt;}
.ws80{word-spacing:-9.254326pt;}
.ws96{word-spacing:-9.198933pt;}
.wsad{word-spacing:-8.941781pt;}
.wsa6{word-spacing:-8.895189pt;}
.ws93{word-spacing:-8.878613pt;}
.wsaa{word-spacing:-8.829183pt;}
.wsae{word-spacing:-8.817535pt;}
.wsa8{word-spacing:-8.809770pt;}
.wsab{word-spacing:-8.697173pt;}
.wsa3{word-spacing:-8.654464pt;}
.ws9d{word-spacing:-8.635050pt;}
.wsa7{word-spacing:-8.394325pt;}
.ws7b{word-spacing:-8.217997pt;}
.ws85{word-spacing:-8.182802pt;}
.ws87{word-spacing:-8.112413pt;}
.ws86{word-spacing:-7.954036pt;}
.ws83{word-spacing:-7.675997pt;}
.wse1{word-spacing:-2.821427pt;}
.wsd5{word-spacing:-2.773606pt;}
.wsbf{word-spacing:-2.603559pt;}
.wsdd{word-spacing:-2.486682pt;}
.wsc2{word-spacing:-2.391024pt;}
.ws43{word-spacing:-2.231622pt;}
.ws8c{word-spacing:-2.178489pt;}
.ws15{word-spacing:-2.072221pt;}
.ws14{word-spacing:-1.912819pt;}
.ws3f{word-spacing:-1.806551pt;}
.ws32{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws4c{word-spacing:-1.558311pt;}
.ws4a{word-spacing:-1.540882pt;}
.wse2{word-spacing:-1.482445pt;}
.ws31{word-spacing:-1.434614pt;}
.ws17{word-spacing:-1.222079pt;}
.ws6{word-spacing:-1.175671pt;}
.wsec{word-spacing:-1.147699pt;}
.ws77{word-spacing:-1.064718pt;}
.ws79{word-spacing:-1.062677pt;}
.ws42{word-spacing:-0.903276pt;}
.ws1c{word-spacing:-0.743874pt;}
.ws33{word-spacing:-0.637606pt;}
.wsd6{word-spacing:-0.621670pt;}
.ws6b{word-spacing:-0.584473pt;}
.wse9{word-spacing:-0.573850pt;}
.ws6d{word-spacing:-0.531339pt;}
.wsdf{word-spacing:-0.526029pt;}
.ws4e{word-spacing:-0.478205pt;}
.ws9c{word-spacing:-0.425328pt;}
.ws45{word-spacing:-0.425071pt;}
.wsa5{word-spacing:-0.402406pt;}
.wsa4{word-spacing:-0.402129pt;}
.ws30{word-spacing:-0.371937pt;}
.ws9e{word-spacing:-0.346108pt;}
.ws82{word-spacing:-0.321862pt;}
.ws35{word-spacing:-0.318803pt;}
.ws84{word-spacing:-0.317389pt;}
.ws99{word-spacing:-0.290396pt;}
.ws27{word-spacing:-0.265669pt;}
.ws98{word-spacing:-0.241114pt;}
.wsd1{word-spacing:-0.239104pt;}
.wsac{word-spacing:-0.227963pt;}
.ws7d{word-spacing:-0.227799pt;}
.ws21{word-spacing:-0.212535pt;}
.wsa1{word-spacing:-0.199120pt;}
.ws9b{word-spacing:-0.190662pt;}
.wsaf{word-spacing:-0.180262pt;}
.ws58{word-spacing:-0.177902pt;}
.ws59{word-spacing:-0.176070pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws97{word-spacing:-0.141969pt;}
.ws94{word-spacing:-0.139032pt;}
.wsa9{word-spacing:-0.131448pt;}
.ws19{word-spacing:-0.106268pt;}
.wse3{word-spacing:-0.095642pt;}
.wsa2{word-spacing:-0.079312pt;}
.ws2b{word-spacing:-0.053134pt;}
.wsdb{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.wsa0{word-spacing:-0.004988pt;}
.ws1{word-spacing:-0.001371pt;}
.ws2{word-spacing:-0.000793pt;}
.wsb6{word-spacing:-0.000503pt;}
.ws0{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws51{word-spacing:0.065698pt;}
.ws9f{word-spacing:0.078770pt;}
.ws4{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws5d{word-spacing:0.129183pt;}
.wse0{word-spacing:0.143462pt;}
.wsa{word-spacing:0.159402pt;}
.ws1b{word-spacing:0.212535pt;}
.wse4{word-spacing:0.239104pt;}
.wsb{word-spacing:0.265669pt;}
.ws55{word-spacing:0.295957pt;}
.ws2f{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.371937pt;}
.ws9{word-spacing:0.425071pt;}
.wsd{word-spacing:0.478205pt;}
.wsba{word-spacing:0.531339pt;}
.wscf{word-spacing:0.573850pt;}
.wsc{word-spacing:0.584473pt;}
.wsea{word-spacing:0.669491pt;}
.wsb4{word-spacing:0.690740pt;}
.wse{word-spacing:0.743874pt;}
.wse5{word-spacing:0.765133pt;}
.wsb5{word-spacing:0.797008pt;}
.ws25{word-spacing:0.956410pt;}
.ws49{word-spacing:1.009543pt;}
.ws72{word-spacing:1.069340pt;}
.ws40{word-spacing:1.115811pt;}
.wsbb{word-spacing:1.275213pt;}
.wseb{word-spacing:1.291162pt;}
.wsb9{word-spacing:1.328347pt;}
.ws8d{word-spacing:1.381481pt;}
.ws28{word-spacing:1.594016pt;}
.wse8{word-spacing:1.625907pt;}
.ws34{word-spacing:1.647150pt;}
.ws13{word-spacing:1.700284pt;}
.ws10{word-spacing:1.753418pt;}
.wsc9{word-spacing:1.806551pt;}
.wsd4{word-spacing:1.817190pt;}
.wsce{word-spacing:1.912832pt;}
.ws44{word-spacing:1.965953pt;}
.wsed{word-spacing:2.008474pt;}
.wsf{word-spacing:2.125355pt;}
.wse7{word-spacing:2.151936pt;}
.ws22{word-spacing:2.231622pt;}
.wsb0{word-spacing:2.337890pt;}
.wsd7{word-spacing:2.343219pt;}
.ws76{word-spacing:2.391024pt;}
.ws24{word-spacing:2.550426pt;}
.wsdc{word-spacing:2.582323pt;}
.ws3e{word-spacing:2.762961pt;}
.ws2e{word-spacing:2.816095pt;}
.wsd0{word-spacing:2.866509pt;}
.ws5{word-spacing:2.869248pt;}
.ws12{word-spacing:2.975497pt;}
.wsbd{word-spacing:3.081764pt;}
.ws18{word-spacing:3.188032pt;}
.wsca{word-spacing:3.241166pt;}
.ws3a{word-spacing:3.347434pt;}
.wsde{word-spacing:3.347456pt;}
.ws74{word-spacing:3.400567pt;}
.ws90{word-spacing:3.506835pt;}
.ws23{word-spacing:3.559969pt;}
.ws37{word-spacing:3.719371pt;}
.ws39{word-spacing:3.772505pt;}
.ws3d{word-spacing:3.878772pt;}
.ws29{word-spacing:4.038174pt;}
.wsbc{word-spacing:4.091308pt;}
.wsb7{word-spacing:4.356977pt;}
.wsd8{word-spacing:4.447334pt;}
.ws11{word-spacing:4.463245pt;}
.wsd9{word-spacing:4.495155pt;}
.ws38{word-spacing:4.516379pt;}
.ws47{word-spacing:4.569513pt;}
.ws2d{word-spacing:4.675780pt;}
.ws8a{word-spacing:5.047717pt;}
.wscd{word-spacing:5.212467pt;}
.ws88{word-spacing:5.525922pt;}
.wsb1{word-spacing:5.844725pt;}
.ws48{word-spacing:6.004127pt;}
.ws6e{word-spacing:6.057261pt;}
.wsc6{word-spacing:6.163529pt;}
.wse6{word-spacing:6.503629pt;}
.wsc0{word-spacing:6.694867pt;}
.wsc1{word-spacing:6.748001pt;}
.ws20{word-spacing:6.907403pt;}
.ws8{word-spacing:7.013670pt;}
.ws46{word-spacing:7.332474pt;}
.ws3b{word-spacing:7.757545pt;}
.ws3c{word-spacing:8.023214pt;}
.ws2c{word-spacing:8.607686pt;}
.wscc{word-spacing:9.038131pt;}
.wscb{word-spacing:9.468518pt;}
.ws1d{word-spacing:10.584293pt;}
.ws4d{word-spacing:11.656144pt;}
.ws4b{word-spacing:11.689451pt;}
.wsb2{word-spacing:11.907379pt;}
.ws78{word-spacing:12.167655pt;}
.ws6c{word-spacing:12.690384pt;}
.ws4f{word-spacing:12.729015pt;}
.ws50{word-spacing:12.732242pt;}
.ws36{word-spacing:12.964663pt;}
.ws5a{word-spacing:13.030890pt;}
.ws5b{word-spacing:13.051547pt;}
.ws5c{word-spacing:13.118114pt;}
.ws75{word-spacing:13.177199pt;}
.ws8f{word-spacing:13.179794pt;}
.ws52{word-spacing:13.299642pt;}
.ws5e{word-spacing:13.336601pt;}
.ws8b{word-spacing:13.430335pt;}
.ws53{word-spacing:13.438133pt;}
.ws71{word-spacing:13.459670pt;}
.ws70{word-spacing:13.460920pt;}
.ws56{word-spacing:13.508809pt;}
.ws57{word-spacing:13.510301pt;}
.ws54{word-spacing:13.511956pt;}
.ws73{word-spacing:14.322657pt;}
.wsbe{word-spacing:14.505546pt;}
.ws8e{word-spacing:14.558679pt;}
.wsb3{word-spacing:16.577766pt;}
.wsb8{word-spacing:16.630900pt;}
.ws89{word-spacing:18.278050pt;}
.ws6f{word-spacing:19.300822pt;}
.wsda{word-spacing:28.692480pt;}
.ws62{word-spacing:44.015655pt;}
.ws63{word-spacing:62.383526pt;}
.ws91{word-spacing:152.739757pt;}
.wsc8{word-spacing:238.004122pt;}
.wsc5{word-spacing:249.959322pt;}
.ws61{word-spacing:260.819460pt;}
.wsc4{word-spacing:393.899930pt;}
.wsc3{word-spacing:405.855130pt;}
._1d{margin-left:-7.050061pt;}
._0{margin-left:-5.896489pt;}
._9{margin-left:-4.973318pt;}
._3{margin-left:-3.682202pt;}
._2{margin-left:-2.677965pt;}
._4{margin-left:-1.721549pt;}
._7{width:0.969929pt;}
._1{width:2.658393pt;}
._14{width:3.825638pt;}
._2c{width:8.559923pt;}
._5{width:11.955200pt;}
._f{width:13.177232pt;}
._6{width:14.824448pt;}
._1c{width:15.833892pt;}
._a{width:16.790302pt;}
._8{width:17.799845pt;}
._b{width:19.181326pt;}
._c{width:20.137735pt;}
._e{width:21.253547pt;}
._12{width:23.187631pt;}
._13{width:24.600980pt;}
._29{width:25.666196pt;}
._d{width:26.556330pt;}
._17{width:28.373485pt;}
._15{width:29.351159pt;}
._16{width:30.977044pt;}
._2a{width:32.847689pt;}
._1e{width:34.483879pt;}
._18{width:40.392400pt;}
._2b{width:43.877609pt;}
._20{width:45.376322pt;}
._2d{width:54.993920pt;}
._26{width:72.388932pt;}
._25{width:79.239066pt;}
._1b{width:123.080026pt;}
._19{width:192.770427pt;}
._21{width:215.767450pt;}
._27{width:245.386180pt;}
._22{width:252.254720pt;}
._28{width:394.488309pt;}
._24{width:406.443509pt;}
._23{width:417.810330pt;}
._1a{width:701.425930pt;}
._10{width:705.489915pt;}
._1f{width:1606.091841pt;}
._11{width:1627.345174pt;}
.fsd{font-size:35.194849pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsf{font-size:38.826664pt;}
.fs4{font-size:40.381867pt;}
.fse{font-size:41.066664pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:43.038720pt;}
.fsb{font-size:44.793445pt;}
.fsc{font-size:44.806531pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:49.480000pt;}
.fs11{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:59.376000pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:3.044747pt;}
.y3{bottom:4.551772pt;}
.y103{bottom:9.742253pt;}
.y146{bottom:10.582166pt;}
.y129{bottom:11.810179pt;}
.y16{bottom:12.578910pt;}
.y105{bottom:15.886253pt;}
.y4{bottom:16.940492pt;}
.y102{bottom:20.878253pt;}
.y145{bottom:22.396566pt;}
.y128{bottom:24.306179pt;}
.yce{bottom:27.210653pt;}
.yec{bottom:28.366253pt;}
.yf8{bottom:28.558253pt;}
.y2{bottom:31.802198pt;}
.y144{bottom:36.540566pt;}
.y104{bottom:40.270253pt;}
.yeb{bottom:46.414253pt;}
.y142{bottom:54.511766pt;}
.y118{bottom:54.930179pt;}
.y33{bottom:56.693333pt;}
.y127{bottom:60.210179pt;}
.yd4{bottom:62.730653pt;}
.yfe{bottom:64.078253pt;}
.y141{bottom:66.326166pt;}
.y135{bottom:66.658966pt;}
.yf0{bottom:67.534253pt;}
.y126{bottom:72.706179pt;}
.y143{bottom:75.977366pt;}
.y140{bottom:78.140566pt;}
.ye9{bottom:78.478320pt;}
.yd3{bottom:85.002653pt;}
.yfd{bottom:86.350253pt;}
.yef{bottom:89.806253pt;}
.ydd{bottom:96.544000pt;}
.y147{bottom:101.672000pt;}
.y112{bottom:101.777333pt;}
.y65{bottom:102.216000pt;}
.y1c5{bottom:102.232000pt;}
.y117{bottom:103.330179pt;}
.y170{bottom:103.428000pt;}
.ycf{bottom:103.434653pt;}
.yf9{bottom:104.782253pt;}
.y32{bottom:105.506667pt;}
.y125{bottom:105.970179pt;}
.y8d{bottom:106.545333pt;}
.yc4{bottom:107.977333pt;}
.yed{bottom:109.006253pt;}
.y13f{bottom:111.586966pt;}
.ydc{bottom:114.556000pt;}
.y116{bottom:115.826179pt;}
.y124{bottom:118.466179pt;}
.y111{bottom:119.789333pt;}
.y64{bottom:120.228000pt;}
.y1c4{bottom:120.244000pt;}
.y16f{bottom:121.440000pt;}
.y31{bottom:123.518667pt;}
.y198{bottom:124.130667pt;}
.y8c{bottom:124.558667pt;}
.yc3{bottom:125.989333pt;}
.yd5{bottom:126.474653pt;}
.y12d{bottom:126.922847pt;}
.y13e{bottom:127.561366pt;}
.ydb{bottom:132.568000pt;}
.y110{bottom:137.802667pt;}
.y63{bottom:138.240000pt;}
.y1c3{bottom:138.257333pt;}
.y16e{bottom:139.453333pt;}
.y122{bottom:140.114179pt;}
.y30{bottom:141.530667pt;}
.yf2{bottom:142.222253pt;}
.y8b{bottom:142.570667pt;}
.yc2{bottom:144.001333pt;}
.yd0{bottom:145.098637pt;}
.y13c{bottom:145.366166pt;}
.yfa{bottom:146.446253pt;}
.yda{bottom:150.581333pt;}
.y197{bottom:151.718667pt;}
.yff{bottom:154.894253pt;}
.yf1{bottom:155.662253pt;}
.y10f{bottom:155.814667pt;}
.y62{bottom:156.253333pt;}
.y1c2{bottom:156.269333pt;}
.y13b{bottom:157.180566pt;}
.y16d{bottom:157.465333pt;}
.y13d{bottom:158.345366pt;}
.y1f4{bottom:159.137333pt;}
.y2f{bottom:159.544000pt;}
.y8a{bottom:160.584000pt;}
.ycd{bottom:160.842637pt;}
.y121{bottom:161.234179pt;}
.yc1{bottom:162.014667pt;}
.y12b{bottom:167.570179pt;}
.yd9{bottom:168.593333pt;}
.yee{bottom:169.294237pt;}
.y196{bottom:173.190667pt;}
.y120{bottom:173.730179pt;}
.y10e{bottom:173.826667pt;}
.y61{bottom:174.265333pt;}
.y1c1{bottom:174.282667pt;}
.y16c{bottom:175.478667pt;}
.y1f3{bottom:176.353333pt;}
.y2e{bottom:177.556000pt;}
.y89{bottom:178.596000pt;}
.y12a{bottom:179.890179pt;}
.yc0{bottom:180.026667pt;}
.yd2{bottom:181.578637pt;}
.yfc{bottom:182.926237pt;}
.y123{bottom:183.234179pt;}
.y11f{bottom:186.050179pt;}
.y130{bottom:186.466966pt;}
.yd8{bottom:186.606667pt;}
.y195{bottom:186.954667pt;}
.yf7{bottom:189.262237pt;}
.y10d{bottom:191.840000pt;}
.y60{bottom:192.278667pt;}
.y1c0{bottom:192.294667pt;}
.y16b{bottom:193.490667pt;}
.y1f2{bottom:193.568000pt;}
.yd1{bottom:195.018637pt;}
.y101{bottom:195.022237pt;}
.y15a{bottom:195.049333pt;}
.y2d{bottom:195.569333pt;}
.yfb{bottom:196.366237pt;}
.y88{bottom:196.608000pt;}
.ybf{bottom:198.040000pt;}
.y12f{bottom:198.281366pt;}
.y107{bottom:201.166237pt;}
.yd7{bottom:204.618667pt;}
.y100{bottom:208.654237pt;}
.y10c{bottom:209.852000pt;}
.y5f{bottom:210.290667pt;}
.y1bf{bottom:210.306667pt;}
.y1f1{bottom:210.784000pt;}
.y16a{bottom:211.502667pt;}
.y159{bottom:213.062667pt;}
.y2c{bottom:213.581333pt;}
.y87{bottom:214.621333pt;}
.y106{bottom:214.798237pt;}
.y194{bottom:215.069333pt;}
.ycc{bottom:215.754636pt;}
.ybe{bottom:216.052000pt;}
.yf5{bottom:217.102237pt;}
.y134{bottom:226.569366pt;}
.y11e{bottom:227.234179pt;}
.y10b{bottom:227.865333pt;}
.y1f0{bottom:227.998667pt;}
.y5e{bottom:228.302667pt;}
.y1be{bottom:228.320000pt;}
.ycb{bottom:229.386637pt;}
.y169{bottom:229.516000pt;}
.yf4{bottom:230.734236pt;}
.y158{bottom:231.074667pt;}
.y193{bottom:231.489333pt;}
.y86{bottom:232.633333pt;}
.yca{bottom:232.650637pt;}
.ybd{bottom:234.064000pt;}
.yea{bottom:235.918236pt;}
.y133{bottom:238.383766pt;}
.yf6{bottom:238.606236pt;}
.y2b{bottom:239.564000pt;}
.yd6{bottom:242.082667pt;}
.y1ef{bottom:245.214667pt;}
.y10a{bottom:245.877333pt;}
.y5d{bottom:246.316000pt;}
.y1bd{bottom:246.332000pt;}
.y168{bottom:247.528000pt;}
.y157{bottom:249.086667pt;}
.y192{bottom:249.502667pt;}
.y11d{bottom:249.938179pt;}
.y85{bottom:250.646667pt;}
.ybc{bottom:252.077333pt;}
.yc8{bottom:254.346637pt;}
.yc9{bottom:255.306637pt;}
.ye8{bottom:258.190237pt;}
.y139{bottom:258.518166pt;}
.yf3{bottom:261.070237pt;}
.y1ee{bottom:262.430667pt;}
.y109{bottom:263.889333pt;}
.y5c{bottom:264.328000pt;}
.y1bc{bottom:264.345333pt;}
.y167{bottom:265.541333pt;}
.y191{bottom:265.924000pt;}
.y156{bottom:267.100000pt;}
.yc7{bottom:267.333013pt;}
.y11b{bottom:268.066187pt;}
.y84{bottom:268.658667pt;}
.ybb{bottom:270.089333pt;}
.y115{bottom:274.578187pt;}
.y138{bottom:276.489373pt;}
.y1ed{bottom:279.645333pt;}
.y11a{bottom:280.562187pt;}
.ye7{bottom:281.038237pt;}
.y114{bottom:281.266187pt;}
.y5b{bottom:282.340000pt;}
.y1bb{bottom:282.357333pt;}
.y132{bottom:282.646173pt;}
.ye6{bottom:282.766237pt;}
.y166{bottom:283.553333pt;}
.y155{bottom:285.112000pt;}
.y83{bottom:286.670667pt;}
.yba{bottom:288.102667pt;}
.y137{bottom:288.303773pt;}
.y12e{bottom:288.969373pt;}
.y11c{bottom:290.946187pt;}
.y119{bottom:293.058187pt;}
.y190{bottom:293.512000pt;}
.y131{bottom:294.294173pt;}
.y1ec{bottom:296.861333pt;}
.y13a{bottom:296.956573pt;}
.y136{bottom:300.118173pt;}
.y5a{bottom:300.353333pt;}
.y1ba{bottom:300.369333pt;}
.y108{bottom:302.970667pt;}
.y154{bottom:303.125333pt;}
.y82{bottom:304.684000pt;}
.yb9{bottom:306.114667pt;}
.y2a{bottom:307.482667pt;}
.y18f{bottom:311.524000pt;}
.y1eb{bottom:314.076000pt;}
.y59{bottom:318.365333pt;}
.y1b9{bottom:318.382667pt;}
.y153{bottom:321.137333pt;}
.y165{bottom:322.634667pt;}
.y81{bottom:322.696000pt;}
.yb8{bottom:324.126667pt;}
.ye5{bottom:328.221413pt;}
.y18e{bottom:329.536000pt;}
.y1ea{bottom:331.292000pt;}
.y58{bottom:336.378667pt;}
.y1b8{bottom:336.394667pt;}
.y152{bottom:339.149333pt;}
.y80{bottom:340.709333pt;}
.y29{bottom:341.434667pt;}
.yb7{bottom:342.140000pt;}
.y18d{bottom:347.549333pt;}
.y1e9{bottom:348.508000pt;}
.y57{bottom:354.390667pt;}
.y1b7{bottom:354.408000pt;}
.y151{bottom:357.162667pt;}
.y7f{bottom:358.721333pt;}
.y28{bottom:359.448000pt;}
.yb6{bottom:360.152000pt;}
.y1e8{bottom:365.722667pt;}
.y56{bottom:372.402667pt;}
.y1b6{bottom:372.420000pt;}
.y150{bottom:375.174667pt;}
.y7e{bottom:376.733333pt;}
.y27{bottom:377.460000pt;}
.yb5{bottom:378.165333pt;}
.y1e7{bottom:382.938667pt;}
.y18c{bottom:388.776000pt;}
.y55{bottom:390.416000pt;}
.y1b5{bottom:390.432000pt;}
.y14f{bottom:393.188000pt;}
.y7d{bottom:394.746667pt;}
.y26{bottom:395.473333pt;}
.yb4{bottom:396.177333pt;}
.y1e6{bottom:400.153333pt;}
.y54{bottom:408.428000pt;}
.y1b4{bottom:408.445333pt;}
.y18b{bottom:410.121333pt;}
.y14e{bottom:411.200000pt;}
.y7c{bottom:412.758667pt;}
.y25{bottom:413.485333pt;}
.yb3{bottom:414.189333pt;}
.y1e5{bottom:417.369333pt;}
.y18a{bottom:424.800000pt;}
.y53{bottom:426.441333pt;}
.y7b{bottom:430.772000pt;}
.y24{bottom:431.497333pt;}
.yb2{bottom:432.202667pt;}
.y1b3{bottom:434.428000pt;}
.y1e4{bottom:434.585333pt;}
.y189{bottom:439.478667pt;}
.y52{bottom:444.453333pt;}
.y7a{bottom:448.784000pt;}
.y23{bottom:449.510667pt;}
.yb1{bottom:450.214667pt;}
.y14d{bottom:450.281333pt;}
.y1e3{bottom:451.800000pt;}
.y188{bottom:454.156000pt;}
.y1b2{bottom:465.378667pt;}
.y79{bottom:466.796000pt;}
.y22{bottom:467.522667pt;}
.yb0{bottom:468.228000pt;}
.y187{bottom:468.834667pt;}
.y1e2{bottom:469.016000pt;}
.y12c{bottom:470.134667pt;}
.y51{bottom:475.749333pt;}
.y1b1{bottom:483.390667pt;}
.y78{bottom:484.809333pt;}
.y21{bottom:485.536000pt;}
.y1e1{bottom:486.232000pt;}
.yaf{bottom:486.240000pt;}
.y186{bottom:490.114667pt;}
.y50{bottom:493.762667pt;}
.y113{bottom:495.384754pt;}
.y1b0{bottom:501.404000pt;}
.y77{bottom:502.821333pt;}
.y1e0{bottom:503.446667pt;}
.y20{bottom:503.548000pt;}
.yae{bottom:504.252000pt;}
.y185{bottom:504.726667pt;}
.y183{bottom:507.209333pt;}
.y4f{bottom:511.774667pt;}
.y1af{bottom:519.416000pt;}
.y1df{bottom:520.662667pt;}
.y76{bottom:520.834667pt;}
.y1f{bottom:521.560000pt;}
.yad{bottom:522.265333pt;}
.y184{bottom:525.740000pt;}
.y4e{bottom:529.786667pt;}
.y1ae{bottom:537.428000pt;}
.y1de{bottom:537.877333pt;}
.y75{bottom:538.846667pt;}
.y1e{bottom:539.573333pt;}
.yac{bottom:540.277333pt;}
.y4d{bottom:547.800000pt;}
.y1dd{bottom:555.093333pt;}
.y1ad{bottom:555.441333pt;}
.y74{bottom:556.858667pt;}
.y1d{bottom:557.585333pt;}
.yab{bottom:558.289333pt;}
.y182{bottom:559.226667pt;}
.y4c{bottom:565.812000pt;}
.y1dc{bottom:572.309333pt;}
.y1ac{bottom:573.453333pt;}
.y73{bottom:574.872000pt;}
.y1c{bottom:575.598667pt;}
.y4b{bottom:583.825333pt;}
.y181{bottom:588.221333pt;}
.y1db{bottom:589.524000pt;}
.y1ab{bottom:591.466667pt;}
.y72{bottom:592.884000pt;}
.y1b{bottom:593.610667pt;}
.ya7{bottom:599.201733pt;}
.y4a{bottom:600.509333pt;}
.yaa{bottom:605.776533pt;}
.y180{bottom:606.234667pt;}
.y1da{bottom:606.740000pt;}
.y1aa{bottom:609.478667pt;}
.y71{bottom:610.896000pt;}
.y1a{bottom:611.622667pt;}
.ya5{bottom:612.352533pt;}
.y49{bottom:618.521333pt;}
.ya9{bottom:618.927333pt;}
.y1d9{bottom:623.954667pt;}
.y17f{bottom:624.246667pt;}
.ya4{bottom:625.503333pt;}
.y1a9{bottom:627.490667pt;}
.y70{bottom:628.909333pt;}
.y19{bottom:629.636000pt;}
.ya8{bottom:632.078133pt;}
.y48{bottom:636.533333pt;}
.ya6{bottom:638.654133pt;}
.y1d8{bottom:641.170667pt;}
.y6f{bottom:646.921333pt;}
.y18{bottom:647.648000pt;}
.ye4{bottom:649.817333pt;}
.y17e{bottom:651.834667pt;}
.y47{bottom:654.546667pt;}
.ya3{bottom:657.804933pt;}
.y1d7{bottom:658.386667pt;}
.ya1{bottom:664.380933pt;}
.y6e{bottom:664.934667pt;}
.ye3{bottom:667.829333pt;}
.y17d{bottom:668.256000pt;}
.y1a8{bottom:669.244000pt;}
.ya2{bottom:670.955733pt;}
.y46{bottom:672.558667pt;}
.y164{bottom:672.746667pt;}
.y1d6{bottom:675.601333pt;}
.y15{bottom:679.143968pt;}
.y14{bottom:679.144000pt;}
.y6d{bottom:682.946667pt;}
.ye2{bottom:685.842667pt;}
.y17c{bottom:686.268000pt;}
.ya0{bottom:690.107733pt;}
.y45{bottom:690.572000pt;}
.y1a7{bottom:690.589333pt;}
.y163{bottom:690.760000pt;}
.y1d5{bottom:692.817333pt;}
.y6c{bottom:700.958667pt;}
.y17b{bottom:702.689333pt;}
.y9e{bottom:703.258533pt;}
.ye1{bottom:703.854667pt;}
.y1a6{bottom:705.268000pt;}
.y44{bottom:708.584000pt;}
.y162{bottom:708.772000pt;}
.y9c{bottom:709.833333pt;}
.y1d4{bottom:710.032000pt;}
.y13{bottom:714.490667pt;}
.y9d{bottom:716.409333pt;}
.y6b{bottom:718.972000pt;}
.y1a5{bottom:719.946667pt;}
.y17a{bottom:720.702667pt;}
.ye0{bottom:721.868000pt;}
.y43{bottom:726.596000pt;}
.y161{bottom:726.785333pt;}
.y1d3{bottom:727.248000pt;}
.y9f{bottom:729.560133pt;}
.y12{bottom:730.630667pt;}
.y1a4{bottom:734.624000pt;}
.y6a{bottom:736.984000pt;}
.y179{bottom:737.124000pt;}
.y203{bottom:738.965333pt;}
.ydf{bottom:739.880000pt;}
.y1d2{bottom:744.464000pt;}
.y42{bottom:744.609333pt;}
.y160{bottom:744.797333pt;}
.y9b{bottom:748.710933pt;}
.y11{bottom:751.109333pt;}
.y178{bottom:753.545333pt;}
.y69{bottom:754.997333pt;}
.y9a{bottom:755.286933pt;}
.y1a3{bottom:755.904000pt;}
.y202{bottom:756.180000pt;}
.yde{bottom:757.892000pt;}
.y1d1{bottom:761.678667pt;}
.y15f{bottom:762.809333pt;}
.y10{bottom:762.909333pt;}
.y1a2{bottom:770.516000pt;}
.y1a0{bottom:773.000000pt;}
.y68{bottom:773.009333pt;}
.y201{bottom:773.396000pt;}
.y200{bottom:773.756000pt;}
.y41{bottom:775.905333pt;}
.y1d0{bottom:778.894667pt;}
.y15e{bottom:780.822667pt;}
.y98{bottom:781.013733pt;}
.y177{bottom:781.132000pt;}
.yf{bottom:783.389333pt;}
.y97{bottom:787.588533pt;}
.y67{bottom:791.021333pt;}
.y1a1{bottom:791.530667pt;}
.y40{bottom:793.917333pt;}
.y99{bottom:794.164533pt;}
.ye{bottom:795.188000pt;}
.y1cf{bottom:796.109333pt;}
.y15d{bottom:798.834667pt;}
.y1ff{bottom:802.685333pt;}
.y176{bottom:808.720000pt;}
.yc6{bottom:809.034667pt;}
.y3f{bottom:811.930667pt;}
.y95{bottom:813.316533pt;}
.y1ce{bottom:813.325333pt;}
.yd{bottom:815.668000pt;}
.y15c{bottom:816.848000pt;}
.y66{bottom:817.004000pt;}
.y94{bottom:819.891333pt;}
.y1fe{bottom:819.901333pt;}
.y19f{bottom:825.016000pt;}
.y175{bottom:825.141333pt;}
.y96{bottom:826.466133pt;}
.y14c{bottom:827.046667pt;}
.yc{bottom:827.468000pt;}
.y3e{bottom:829.942667pt;}
.yc5{bottom:835.017333pt;}
.y1fd{bottom:837.116000pt;}
.y1cd{bottom:838.510667pt;}
.y174{bottom:841.562667pt;}
.yb{bottom:843.606667pt;}
.y14b{bottom:845.060000pt;}
.y93{bottom:845.618133pt;}
.ya{bottom:847.946667pt;}
.y3d{bottom:847.954667pt;}
.y91{bottom:852.194133pt;}
.y1fc{bottom:854.332000pt;}
.y15b{bottom:855.929333pt;}
.y19e{bottom:857.997333pt;}
.y90{bottom:858.768933pt;}
.y173{bottom:859.574667pt;}
.y14a{bottom:863.072000pt;}
.y3c{bottom:865.968000pt;}
.y9{bottom:867.717333pt;}
.y1fb{bottom:871.546667pt;}
.y92{bottom:871.919733pt;}
.y1cc{bottom:873.580000pt;}
.y172{bottom:875.996000pt;}
.y19d{bottom:876.010667pt;}
.y149{bottom:881.084000pt;}
.y3b{bottom:883.980000pt;}
.y8{bottom:885.729333pt;}
.y1fa{bottom:888.762667pt;}
.y8f{bottom:891.130533pt;}
.y171{bottom:892.417333pt;}
.y19c{bottom:894.022667pt;}
.y1cb{bottom:895.058667pt;}
.y3a{bottom:901.993333pt;}
.y1f9{bottom:905.978667pt;}
.y148{bottom:907.066667pt;}
.y1ca{bottom:916.538667pt;}
.y39{bottom:920.005333pt;}
.y19b{bottom:922.662667pt;}
.y8e{bottom:923.049333pt;}
.y1f8{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y1c9{bottom:930.048000pt;}
.y38{bottom:938.017333pt;}
.y19a{bottom:939.346667pt;}
.y1f7{bottom:940.409333pt;}
.y1c8{bottom:943.557333pt;}
.y6{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y199{bottom:957.358667pt;}
.y1f6{bottom:957.624000pt;}
.y1c7{bottom:965.037333pt;}
.y36{bottom:974.042667pt;}
.y1f5{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y1c6{bottom:978.546667pt;}
.y35{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h1a{height:24.058979pt;}
.h10{height:26.088729pt;}
.h1f{height:26.541665pt;}
.h8{height:27.076941pt;}
.h21{height:27.184641pt;}
.h1d{height:28.072915pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h16{height:30.467417pt;}
.h18{height:30.620519pt;}
.h19{height:30.629464pt;}
.h11{height:31.116995pt;}
.hf{height:31.157778pt;}
.h13{height:31.332188pt;}
.h23{height:34.239693pt;}
.h3{height:34.388600pt;}
.h22{height:34.574438pt;}
.h9{height:34.813542pt;}
.h20{height:35.052646pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h5{height:38.947124pt;}
.h4{height:40.256928pt;}
.h2{height:44.601602pt;}
.h7{height:48.481423pt;}
.h1c{height:50.600915pt;}
.h12{height:57.631388pt;}
.h14{height:57.636188pt;}
.h6{height:69.148877pt;}
.h15{height:270.126400pt;}
.h17{height:300.578800pt;}
.h1b{height:315.303333pt;}
.h1e{height:322.572876pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:165.795935pt;}
.w4{width:345.594800pt;}
.w7{width:486.436857pt;}
.w5{width:529.560880pt;}
.w6{width:536.591425pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:18.834427pt;}
.x7{left:26.021437pt;}
.x5b{left:27.674076pt;}
.x4f{left:33.068400pt;}
.x52{left:34.468640pt;}
.x55{left:37.524160pt;}
.x51{left:40.553440pt;}
.x54{left:42.399280pt;}
.x56{left:43.469440pt;}
.x2{left:49.874933pt;}
.x5f{left:57.988160pt;}
.x5e{left:67.644880pt;}
.x6c{left:68.794000pt;}
.x61{left:70.096960pt;}
.x5c{left:71.204400pt;}
.x60{left:73.859360pt;}
.x7d{left:76.693913pt;}
.x62{left:81.282320pt;}
.x7e{left:85.662179pt;}
.x63{left:88.388160pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x87{left:120.028000pt;}
.x5a{left:124.805440pt;}
.x6e{left:128.553788pt;}
.x4{left:129.864000pt;}
.x58{left:132.068160pt;}
.x30{left:133.391867pt;}
.x39{left:134.504267pt;}
.x35{left:135.569867pt;}
.x2b{left:136.807067pt;}
.x2a{left:139.287467pt;}
.x3f{left:148.990667pt;}
.xc{left:151.142667pt;}
.x7a{left:153.630445pt;}
.xd{left:157.784000pt;}
.x91{left:159.968000pt;}
.x8c{left:161.056000pt;}
.x40{left:162.274667pt;}
.x4b{left:166.798667pt;}
.x1a{left:167.986667pt;}
.x93{left:170.193333pt;}
.x8{left:171.129333pt;}
.x57{left:172.944000pt;}
.x1b{left:174.629333pt;}
.x9{left:178.025333pt;}
.x4c{left:180.081333pt;}
.x49{left:181.865333pt;}
.x7b{left:186.431107pt;}
.x7f{left:187.330777pt;}
.x80{left:192.849710pt;}
.x4a{left:195.148000pt;}
.x83{left:196.912435pt;}
.x7c{left:200.887107pt;}
.x85{left:204.704000pt;}
.x76{left:206.330725pt;}
.x50{left:207.241040pt;}
.x36{left:209.765867pt;}
.x84{left:210.758302pt;}
.x3c{left:211.664267pt;}
.x2c{left:216.775067pt;}
.x29{left:217.776000pt;}
.x65{left:219.214720pt;}
.x53{left:221.139280pt;}
.x4e{left:223.116240pt;}
.x4d{left:224.051840pt;}
.xe{left:226.156000pt;}
.x67{left:227.145360pt;}
.x68{left:228.215520pt;}
.x97{left:229.358667pt;}
.x73{left:230.337785pt;}
.x72{left:231.258119pt;}
.xf{left:232.797333pt;}
.x77{left:235.229412pt;}
.x86{left:237.118667pt;}
.x75{left:241.299579pt;}
.x79{left:248.392000pt;}
.x20{left:259.570667pt;}
.x94{left:265.801333pt;}
.x21{left:272.853333pt;}
.x6d{left:279.177333pt;}
.x14{left:282.061333pt;}
.x15{left:288.704000pt;}
.x2d{left:292.503467pt;}
.x2e{left:294.580667pt;}
.x3a{left:295.915067pt;}
.x33{left:299.191067pt;}
.x37{left:300.111467pt;}
.x10{left:301.712000pt;}
.x31{left:302.854667pt;}
.x95{left:306.765333pt;}
.x11{left:308.353333pt;}
.x96{left:313.405333pt;}
.x3d{left:325.793867pt;}
.x66{left:328.935680pt;}
.x38{left:331.168667pt;}
.x8d{left:333.476000pt;}
.x74{left:343.187299pt;}
.x81{left:346.569753pt;}
.x3b{left:348.964667pt;}
.x5d{left:351.010960pt;}
.x69{left:353.146400pt;}
.x6a{left:369.733120pt;}
.x41{left:372.464000pt;}
.x16{left:375.973333pt;}
.x78{left:376.925985pt;}
.x17{left:382.614667pt;}
.x42{left:385.746667pt;}
.x64{left:391.987120pt;}
.x70{left:395.276552pt;}
.x27{left:396.221333pt;}
.x82{left:397.427763pt;}
.x12{left:399.928000pt;}
.x13{left:406.570667pt;}
.x59{left:407.862320pt;}
.x28{left:409.505333pt;}
.x1e{left:421.625333pt;}
.x32{left:423.839867pt;}
.x2f{left:426.610667pt;}
.x1f{left:434.909333pt;}
.x8e{left:437.065333pt;}
.x3e{left:439.107467pt;}
.x34{left:441.119867pt;}
.x71{left:443.786552pt;}
.x6b{left:447.100240pt;}
.x18{left:449.461333pt;}
.x19{left:456.102667pt;}
.x92{left:471.017333pt;}
.x45{left:529.046667pt;}
.x46{left:542.330667pt;}
.x90{left:547.494667pt;}
.x8f{left:554.332000pt;}
.x88{left:557.126667pt;}
.x8a{left:561.744000pt;}
.x22{left:565.250667pt;}
.x89{left:568.052000pt;}
.x8b{left:572.669333pt;}
.x1c{left:579.406667pt;}
.x43{left:584.077333pt;}
.x1d{left:586.048000pt;}
.x44{left:597.360000pt;}
.x6{left:624.660065pt;}
.xa{left:645.853333pt;}
.x23{left:650.760000pt;}
.xb{left:652.494667pt;}
.x24{left:664.044000pt;}
.x47{left:672.441333pt;}
.x25{left:673.902667pt;}
.x48{left:685.725333pt;}
.x26{left:687.186667pt;}
}




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