
    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_5af720665cb6fadeae54fae3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_569c28351804b5a23620fc66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_381424536f7402840162f9f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_2086e86f1db3264fba8c2973.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ca4d565ad1cefac740f17881.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_2012a7450c9e4b733c3978f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_e004970744fca678df700eff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a44506b445ed9b9a48b2a20f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_d55430598d8a001bfd02d1bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b0058796293b62db08c929fd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2660a52c82165d4efc74a199.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_86683a56bd0044418c156bcd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_e36c27df7049850bf661f94c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_52e74ca6f70ca9f770bbe147.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_94a62fa6e347989411016f6e.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_50e166b63d73ee0635ace054.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.723000;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_df3f4a3bbcbc52f6309645ac.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_9ab976e22ebdd29b792da29f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_59730236553de356f463e6df.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7e77884cdf8ad60169c82b01.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.262000;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_3f4aee3b0a8c4cc4cd7e106d.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_39bdd23574b791492effa508.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.665000;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_26d8930f295bed5bc7b90668.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.mb{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);}
.mf{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);}
.m14{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);}
.m7{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);}
.m18{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);}
.m17{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);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.me{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);}
.m4{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);}
.m1a{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);}
.m1d{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);}
.m6{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);}
.m9{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);}
.m1c{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);}
.m16{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);}
.m10{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);}
.m11{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);}
.m3{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);}
.ma{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);}
.m8{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);}
.m19{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);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1{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);}
.m5{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);}
.v12{vertical-align:-135.822000px;}
.v14{vertical-align:-36.864000px;}
.v15{vertical-align:-27.030000px;}
.v3{vertical-align:-22.854000px;}
.v17{vertical-align:-16.110000px;}
.vf{vertical-align:-15.072000px;}
.v2{vertical-align:-12.912000px;}
.v4{vertical-align:-9.816000px;}
.v9{vertical-align:-8.142000px;}
.v18{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.vc{vertical-align:16.182000px;}
.v6{vertical-align:23.754000px;}
.v16{vertical-align:25.572000px;}
.v5{vertical-align:27.024000px;}
.va{vertical-align:35.076000px;}
.v10{vertical-align:40.746000px;}
.vd{vertical-align:43.206000px;}
.v7{vertical-align:44.280000px;}
.ve{vertical-align:52.698000px;}
.v11{vertical-align:58.206000px;}
.vb{vertical-align:68.034000px;}
.v13{vertical-align:98.958000px;}
.v8{vertical-align:127.680000px;}
.ls2{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.001490px;}
.ls6e{letter-spacing:0.001612px;}
.ls5c{letter-spacing:0.002012px;}
.lsb{letter-spacing:0.002137px;}
.ls36{letter-spacing:0.002147px;}
.ls6b{letter-spacing:0.002698px;}
.ls13{letter-spacing:0.002700px;}
.ls71{letter-spacing:0.002706px;}
.ls81{letter-spacing:0.003239px;}
.ls7d{letter-spacing:0.003791px;}
.ls2b{letter-spacing:0.004338px;}
.ls1a{letter-spacing:0.004843px;}
.ls47{letter-spacing:0.005429px;}
.lse{letter-spacing:0.006378px;}
.ls1e{letter-spacing:0.010806px;}
.ls4e{letter-spacing:0.013377px;}
.ls21{letter-spacing:0.013998px;}
.ls4b{letter-spacing:0.016113px;}
.ls3a{letter-spacing:0.018137px;}
.ls56{letter-spacing:0.018408px;}
.ls34{letter-spacing:0.024944px;}
.ls4c{letter-spacing:0.026319px;}
.ls10{letter-spacing:0.029273px;}
.ls2c{letter-spacing:0.033689px;}
.ls28{letter-spacing:0.065455px;}
.ls46{letter-spacing:0.327273px;}
.ls9{letter-spacing:0.654546px;}
.ls78{letter-spacing:1.406783px;}
.ls6f{letter-spacing:1.412783px;}
.ls2f{letter-spacing:1.767274px;}
.ls7c{letter-spacing:1.788309px;}
.ls6c{letter-spacing:1.796520px;}
.ls53{letter-spacing:1.803170px;}
.ls5b{letter-spacing:1.814137px;}
.ls64{letter-spacing:1.816843px;}
.ls7b{letter-spacing:1.818949px;}
.ls3e{letter-spacing:1.820137px;}
.ls6a{letter-spacing:1.822843px;}
.ls6{letter-spacing:1.832729px;}
.ls19{letter-spacing:2.290911px;}
.ls18{letter-spacing:2.356366px;}
.ls1d{letter-spacing:2.880002px;}
.ls66{letter-spacing:2.970093px;}
.ls3f{letter-spacing:2.984915px;}
.ls4f{letter-spacing:2.986031px;}
.ls69{letter-spacing:2.986059px;}
.ls43{letter-spacing:2.986172px;}
.ls22{letter-spacing:2.987971px;}
.ls37{letter-spacing:2.988792px;}
.ls11{letter-spacing:2.989739px;}
.ls55{letter-spacing:2.990915px;}
.ls63{letter-spacing:2.992059px;}
.ls2a{letter-spacing:2.995739px;}
.ls7e{letter-spacing:4.400783px;}
.ls72{letter-spacing:5.008116px;}
.ls77{letter-spacing:5.014116px;}
.ls65{letter-spacing:5.116804px;}
.ls70{letter-spacing:5.976532px;}
.ls80{letter-spacing:5.976557px;}
.ls5f{letter-spacing:5.982532px;}
.ls68{letter-spacing:6.715739px;}
.ls33{letter-spacing:7.069097px;}
.ls5d{letter-spacing:8.346557px;}
.ls27{letter-spacing:9.032735px;}
.ls25{letter-spacing:9.098189px;}
.ls60{letter-spacing:10.910012px;}
.ls5a{letter-spacing:10.930918px;}
.ls38{letter-spacing:13.895971px;}
.ls1c{letter-spacing:14.530921px;}
.ls2e{letter-spacing:14.596376px;}
.ls20{letter-spacing:16.363650px;}
.ls54{letter-spacing:17.528915px;}
.ls1b{letter-spacing:17.533739px;}
.ls57{letter-spacing:17.534915px;}
.ls31{letter-spacing:17.539739px;}
.ls7{letter-spacing:18.130924px;}
.ls5e{letter-spacing:18.182012px;}
.lsa{letter-spacing:18.196379px;}
.ls5{letter-spacing:20.029108px;}
.ls48{letter-spacing:20.348700px;}
.ls2d{letter-spacing:21.010927px;}
.ls74{letter-spacing:21.076381px;}
.ls1f{letter-spacing:21.167971px;}
.lsc{letter-spacing:21.169739px;}
.ls85{letter-spacing:21.175739px;}
.ls3{letter-spacing:21.419468px;}
.ls41{letter-spacing:21.665473px;}
.ls26{letter-spacing:21.796382px;}
.ls8{letter-spacing:21.861836px;}
.ls4{letter-spacing:22.450928px;}
.ls62{letter-spacing:22.883412px;}
.ls76{letter-spacing:23.194116px;}
.ls3d{letter-spacing:23.629111px;}
.ls7a{letter-spacing:24.676384px;}
.ls6d{letter-spacing:24.800915px;}
.ls32{letter-spacing:24.803971px;}
.ls3b{letter-spacing:24.805739px;}
.ls44{letter-spacing:24.806915px;}
.ls14{letter-spacing:24.810371px;}
.lsf{letter-spacing:24.811739px;}
.ls52{letter-spacing:24.901739px;}
.ls42{letter-spacing:24.938203px;}
.ls50{letter-spacing:25.200021px;}
.ls51{letter-spacing:26.407739px;}
.ls4a{letter-spacing:26.408915px;}
.ls23{letter-spacing:28.145478px;}
.ls84{letter-spacing:29.389115px;}
.ls17{letter-spacing:29.847298px;}
.ls12{letter-spacing:29.912752px;}
.ls29{letter-spacing:30.109116px;}
.ls16{letter-spacing:30.305480px;}
.ls40{letter-spacing:30.370934px;}
.ls15{letter-spacing:30.436389px;}
.ls4d{letter-spacing:31.680026px;}
.ls24{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls73{letter-spacing:141.840118px;}
.ls0{letter-spacing:345.347589px;}
.ls49{letter-spacing:403.134881px;}
.ls67{letter-spacing:583.135031px;}
.ls59{letter-spacing:593.804131px;}
.ls75{letter-spacing:746.706077px;}
.ls61{letter-spacing:747.295168px;}
.ls30{letter-spacing:766.997003px;}
.ls39{letter-spacing:873.557092px;}
.ls7f{letter-spacing:890.509833px;}
.ls35{letter-spacing:909.164394px;}
.ls82{letter-spacing:931.222594px;}
.ls83{letter-spacing:1000.800834px;}
.ls45{letter-spacing:1000.997198px;}
.ls3c{letter-spacing:1002.829927px;}
.lsd{letter-spacing:1015.528119px;}
.ls79{letter-spacing:1018.931758px;}
.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;}
}
.ws3e{word-spacing:-65.454600px;}
.ws54{word-spacing:-54.589136px;}
.ws43{word-spacing:-47.324343px;}
.ws22{word-spacing:-47.323676px;}
.ws3b{word-spacing:-47.258221px;}
.ws25{word-spacing:-42.637126px;}
.ws3f{word-spacing:-33.453846px;}
.ws26{word-spacing:-33.211407px;}
.ws1d{word-spacing:-32.727300px;}
.ws45{word-spacing:-31.771663px;}
.ws51{word-spacing:-31.706208px;}
.ws16{word-spacing:-27.646998px;}
.ws42{word-spacing:-24.557024px;}
.ws5a{word-spacing:-24.506202px;}
.ws29{word-spacing:-19.310651px;}
.ws28{word-spacing:-18.183288px;}
.ws36{word-spacing:-17.149105px;}
.ws6e{word-spacing:-16.560014px;}
.wsb{word-spacing:-16.318739px;}
.ws35{word-spacing:-16.298195px;}
.ws0{word-spacing:-16.139475px;}
.ws38{word-spacing:-15.316376px;}
.ws23{word-spacing:-14.465467px;}
.ws60{word-spacing:-14.111859px;}
.ws4c{word-spacing:-13.549102px;}
.ws48{word-spacing:-13.483648px;}
.ws3{word-spacing:-13.449600px;}
.ws39{word-spacing:-13.352738px;}
.ws67{word-spacing:-13.156375px;}
.ws65{word-spacing:-12.894556px;}
.ws31{word-spacing:-12.567283px;}
.ws2a{word-spacing:-12.501829px;}
.ws64{word-spacing:-12.370919px;}
.ws34{word-spacing:-12.305465px;}
.ws5b{word-spacing:-12.240010px;}
.ws49{word-spacing:-12.174556px;}
.ws2b{word-spacing:-12.109101px;}
.ws56{word-spacing:-11.978192px;}
.ws58{word-spacing:-11.847283px;}
.ws1a{word-spacing:-11.716373px;}
.ws20{word-spacing:-11.476915px;}
.ws4a{word-spacing:-11.417140px;}
.ws55{word-spacing:-11.389100px;}
.ws41{word-spacing:-11.323646px;}
.ws40{word-spacing:-11.258191px;}
.ws1b{word-spacing:-11.192737px;}
.ws1f{word-spacing:-11.127282px;}
.ws1c{word-spacing:-11.061827px;}
.ws37{word-spacing:-10.996373px;}
.ws13{word-spacing:-10.930918px;}
.ws15{word-spacing:-10.865464px;}
.ws1e{word-spacing:-10.800009px;}
.ws3c{word-spacing:-10.734554px;}
.ws12{word-spacing:-10.669100px;}
.ws57{word-spacing:-10.603645px;}
.ws4b{word-spacing:-10.538191px;}
.ws2c{word-spacing:-10.472736px;}
.wsf{word-spacing:-10.400954px;}
.ws75{word-spacing:-10.341179px;}
.wsc{word-spacing:-10.161852px;}
.ws32{word-spacing:-10.086554px;}
.ws30{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws73{word-spacing:-9.922750px;}
.ws3d{word-spacing:-9.824735px;}
.ws2f{word-spacing:-9.693826px;}
.ws74{word-spacing:-9.629849px;}
.ws2e{word-spacing:-9.628372px;}
.ws2d{word-spacing:-9.562917px;}
.ws4f{word-spacing:-9.294553px;}
.ws6{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws72{word-spacing:-9.151644px;}
.ws6a{word-spacing:-9.032735px;}
.ws47{word-spacing:-8.967280px;}
.ws46{word-spacing:-8.901826px;}
.ws71{word-spacing:-8.705462px;}
.ws50{word-spacing:-8.646553px;}
.ws27{word-spacing:-8.402651px;}
.ws4e{word-spacing:-8.378189px;}
.ws11{word-spacing:-8.181825px;}
.ws59{word-spacing:-8.116370px;}
.ws76{word-spacing:-7.591501px;}
.ws10{word-spacing:-7.412174px;}
.ws61{word-spacing:-7.317824px;}
.ws77{word-spacing:-6.999723px;}
.ws78{word-spacing:-6.874194px;}
.ws66{word-spacing:-6.414551px;}
.ws62{word-spacing:-6.283642px;}
.ws19{word-spacing:-6.218187px;}
.ws33{word-spacing:-5.890914px;}
.ws14{word-spacing:-5.825459px;}
.ws5c{word-spacing:-5.647613px;}
.ws68{word-spacing:-5.629096px;}
.ws63{word-spacing:-5.301823px;}
.ws69{word-spacing:-5.236368px;}
.ws70{word-spacing:-5.105459px;}
.ws6f{word-spacing:-5.040004px;}
.wsa{word-spacing:-5.027128px;}
.ws6b{word-spacing:-4.843640px;}
.ws6d{word-spacing:-4.588367px;}
.ws6c{word-spacing:-4.522913px;}
.ws5e{word-spacing:-3.927276px;}
.ws53{word-spacing:-3.652367px;}
.ws52{word-spacing:-3.586912px;}
.wsd{word-spacing:-3.586536px;}
.wse{word-spacing:-1.494390px;}
.ws2{word-spacing:-0.086077px;}
.ws21{word-spacing:-0.052364px;}
.ws5d{word-spacing:-0.017549px;}
.ws7{word-spacing:0.000000px;}
.ws24{word-spacing:0.013091px;}
.ws8{word-spacing:2.683639px;}
.ws3a{word-spacing:3.613094px;}
.ws4d{word-spacing:4.647277px;}
.ws9{word-spacing:11.429123px;}
.ws5f{word-spacing:11.991283px;}
.ws1{word-spacing:23.384371px;}
.ws18{word-spacing:34.370970px;}
.ws44{word-spacing:778.621740px;}
.ws17{word-spacing:2278.218812px;}
._0{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._4{margin-left:-4.620696px;}
._6{margin-left:-2.791550px;}
._3{margin-left:-1.673717px;}
._5{width:1.344960px;}
._1{width:2.668393px;}
._30{width:3.771773px;}
._32{width:4.974550px;}
._31{width:5.984765px;}
._35{width:7.174310px;}
._8{width:15.691204px;}
._33{width:17.459662px;}
._2f{width:19.440016px;}
._3d{width:20.755711px;}
._12{width:22.825744px;}
._7{width:26.731828px;}
._11{width:27.811924px;}
._9{width:28.871597px;}
._38{width:29.992561px;}
._b{width:31.011660px;}
._3f{width:32.042636px;}
._37{width:35.149120px;}
._36{width:36.160526px;}
._2d{width:39.171437px;}
._3c{width:43.790611px;}
._40{width:45.511891px;}
._3b{width:46.960535px;}
._3e{width:48.335081px;}
._3a{width:50.792770px;}
._a{width:53.110612px;}
._34{width:56.429853px;}
._2e{width:69.309799px;}
._39{width:142.321684px;}
._1f{width:776.220414px;}
._19{width:785.430333px;}
._26{width:979.995797px;}
._13{width:1047.862691px;}
._16{width:1182.040105px;}
._d{width:1186.893313px;}
._20{width:1227.144886px;}
._15{width:1265.734997px;}
._1d{width:1310.309287px;}
._27{width:1346.243862px;}
._25{width:1359.764861px;}
._23{width:1370.417553px;}
._1b{width:1392.353487px;}
._1a{width:1412.991081px;}
._18{width:1497.931757px;}
._2a{width:1524.542192px;}
._1c{width:1651.982299px;}
._29{width:1658.426436px;}
._17{width:1752.819734px;}
._24{width:1756.529133px;}
._10{width:1769.306528px;}
._21{width:1791.204233px;}
._f{width:1812.944409px;}
._22{width:1833.949093px;}
._28{width:1837.546090px;}
._14{width:1862.476820px;}
._2c{width:1876.098849px;}
._e{width:1936.019395px;}
._1e{width:2275.341516px;}
._2b{width:2285.074227px;}
._c{width:2286.890801px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yea{bottom:158.155500px;}
.y46{bottom:160.314000px;}
.y13f{bottom:164.050500px;}
.y2a{bottom:173.425500px;}
.ye9{bottom:176.812500px;}
.y45{bottom:190.800000px;}
.y13e{bottom:190.948500px;}
.y9f{bottom:200.151000px;}
.y126{bottom:207.349500px;}
.y29{bottom:216.799500px;}
.y13d{bottom:217.848000px;}
.ycd{bottom:221.286000px;}
.y44{bottom:222.525000px;}
.ye8{bottom:224.338500px;}
.yb9{bottom:229.383000px;}
.y71{bottom:231.093000px;}
.y5a{bottom:236.637000px;}
.yfe{bottom:239.029500px;}
.y86{bottom:239.740500px;}
.y13c{bottom:244.747500px;}
.y114{bottom:251.770500px;}
.y9e{bottom:251.896500px;}
.y43{bottom:253.011000px;}
.y125{bottom:254.383500px;}
.yb8{bottom:259.869000px;}
.y28{bottom:264.382500px;}
.y85{bottom:270.226500px;}
.y70{bottom:271.387500px;}
.y13b{bottom:271.647000px;}
.ycb{bottom:275.364000px;}
.ye7{bottom:276.283500px;}
.ycc{bottom:279.132000px;}
.yd{bottom:279.648000px;}
.y59{bottom:282.472500px;}
.y42{bottom:283.497000px;}
.yfd{bottom:287.259000px;}
.yb7{bottom:290.355000px;}
.y27{bottom:295.236000px;}
.y13a{bottom:298.545000px;}
.y84{bottom:300.712500px;}
.y124{bottom:301.419000px;}
.y6f{bottom:301.873500px;}
.y113{bottom:303.516000px;}
.yc{bottom:307.294500px;}
.y9d{bottom:311.697000px;}
.y41{bottom:313.983000px;}
.yb6{bottom:316.794000px;}
.yb5{bottom:320.839500px;}
.y139{bottom:325.444500px;}
.y26{bottom:326.089500px;}
.y58{bottom:326.815500px;}
.yca{bottom:329.443500px;}
.ye6{bottom:334.299000px;}
.yb{bottom:334.941000px;}
.yfc{bottom:335.490000px;}
.ye5{bottom:338.344500px;}
.y83{bottom:338.518500px;}
.y6e{bottom:340.672500px;}
.y9c{bottom:342.183000px;}
.y123{bottom:348.453000px;}
.y138{bottom:352.344000px;}
.y25{bottom:356.941500px;}
.yc9{bottom:359.928000px;}
.y82{bottom:360.813000px;}
.ya{bottom:362.586000px;}
.y112{bottom:363.843000px;}
.y40{bottom:366.967500px;}
.y6d{bottom:371.158500px;}
.yb4{bottom:372.585000px;}
.y57{bottom:378.561000px;}
.y137{bottom:379.243500px;}
.y9b{bottom:380.524500px;}
.yfb{bottom:383.719500px;}
.ye4{bottom:385.869000px;}
.y24{bottom:387.795000px;}
.y9{bottom:390.232500px;}
.yc8{bottom:392.799000px;}
.y111{bottom:394.329000px;}
.y122{bottom:395.488500px;}
.y81{bottom:398.773500px;}
.y6c{bottom:409.957500px;}
.y99{bottom:411.010500px;}
.y9a{bottom:416.949000px;}
.y23{bottom:418.648500px;}
.yc7{bottom:423.285000px;}
.y110{bottom:424.815000px;}
.yfa{bottom:431.949000px;}
.ye3{bottom:432.300000px;}
.yb3{bottom:432.424500px;}
.y3f{bottom:434.967000px;}
.y56{bottom:439.305000px;}
.y121{bottom:442.522500px;}
.y98{bottom:449.353500px;}
.y80{bottom:451.221000px;}
.y6b{bottom:453.177000px;}
.y10f{bottom:455.301000px;}
.yb2{bottom:462.910500px;}
.y22{bottom:466.231500px;}
.ye2{bottom:473.290500px;}
.yc6{bottom:477.415500px;}
.ye1{bottom:479.826000px;}
.y96{bottom:479.838000px;}
.y136{bottom:484.218000px;}
.yf9{bottom:484.255500px;}
.y3e{bottom:484.296000px;}
.y55{bottom:485.142000px;}
.y97{bottom:485.776500px;}
.y10e{bottom:485.785500px;}
.y120{bottom:489.558000px;}
.y6a{bottom:491.976000px;}
.y21{bottom:497.085000px;}
.yb1{bottom:498.942000px;}
.yb0{bottom:502.987500px;}
.y95{bottom:510.324000px;}
.y7f{bottom:516.148500px;}
.y10d{bottom:516.271500px;}
.y69{bottom:522.462000px;}
.ye0{bottom:527.350500px;}
.y20{bottom:527.937000px;}
.y135{bottom:528.274500px;}
.y54{bottom:530.977500px;}
.y8{bottom:531.609000px;}
.y3d{bottom:533.625000px;}
.y11f{bottom:536.592000px;}
.yaf{bottom:543.064500px;}
.y10c{bottom:546.757500px;}
.yf8{bottom:548.370000px;}
.yc5{bottom:551.959500px;}
.y1f{bottom:558.790500px;}
.y94{bottom:562.069500px;}
.y68{bottom:562.756500px;}
.y7e{bottom:565.179000px;}
.y3c{bottom:565.351500px;}
.ydf{bottom:570.831000px;}
.y134{bottom:572.332500px;}
.yde{bottom:574.875000px;}
.y53{bottom:576.814500px;}
.y10b{bottom:577.243500px;}
.yf7{bottom:578.856000px;}
.yc4{bottom:582.444000px;}
.y7{bottom:584.020500px;}
.y11e{bottom:588.658500px;}
.yae{bottom:594.810000px;}
.y3b{bottom:597.076500px;}
.y67{bottom:603.049500px;}
.y1e{bottom:606.375000px;}
.y10a{bottom:607.729500px;}
.yf6{bottom:609.901500px;}
.y6{bottom:610.920000px;}
.yc3{bottom:612.930000px;}
.y7d{bottom:614.209500px;}
.y133{bottom:616.390500px;}
.y93{bottom:621.871500px;}
.ydd{bottom:622.401000px;}
.y52{bottom:622.651500px;}
.y3a{bottom:628.801500px;}
.y66{bottom:633.535500px;}
.y5{bottom:637.818000px;}
.yf5{bottom:640.387500px;}
.yc2{bottom:643.416000px;}
.y109{bottom:650.908500px;}
.y11d{bottom:651.408000px;}
.y7c{bottom:652.015500px;}
.y92{bottom:652.356000px;}
.yad{bottom:654.649500px;}
.y1d{bottom:658.486500px;}
.y132{bottom:660.447000px;}
.y39{bottom:660.526500px;}
.y7b{bottom:663.240000px;}
.ydc{bottom:669.925500px;}
.yf4{bottom:670.873500px;}
.y51{bottom:674.397000px;}
.y11c{bottom:681.894000px;}
.y91{bottom:682.842000px;}
.y65{bottom:685.281000px;}
.y38{bottom:692.253000px;}
.yac{bottom:693.232500px;}
.y108{bottom:694.089000px;}
.yc1{bottom:697.546500px;}
.yf3{bottom:701.359500px;}
.y131{bottom:701.760000px;}
.y7a{bottom:712.272000px;}
.y90{bottom:713.328000px;}
.ydb{bottom:717.451500px;}
.yab{bottom:723.718500px;}
.yc0{bottom:724.446000px;}
.y107{bottom:724.575000px;}
.y11b{bottom:728.929500px;}
.y50{bottom:735.141000px;}
.y1c{bottom:738.508500px;}
.y37{bottom:741.582000px;}
.y64{bottom:745.153500px;}
.yf2{bottom:749.962500px;}
.y130{bottom:753.505500px;}
.yaa{bottom:754.204500px;}
.y106{bottom:755.059500px;}
.y79{bottom:764.719500px;}
.y8f{bottom:765.073500px;}
.y4f{bottom:765.625500px;}
.y1b{bottom:768.994500px;}
.yda{bottom:769.396500px;}
.y36{bottom:773.307000px;}
.y63{bottom:775.639500px;}
.y11a{bottom:775.963500px;}
.y4{bottom:788.899500px;}
.y8e{bottom:791.973000px;}
.yf1{bottom:798.567000px;}
.ybf{bottom:798.990000px;}
.y35{bottom:805.032000px;}
.ya9{bottom:805.950000px;}
.y62{bottom:806.125500px;}
.y105{bottom:806.805000px;}
.y4e{bottom:811.462500px;}
.y12f{bottom:813.774000px;}
.y119{bottom:822.999000px;}
.y1a{bottom:826.746000px;}
.yd9{bottom:827.412000px;}
.y78{bottom:829.647000px;}
.yd8{bottom:831.457500px;}
.y61{bottom:836.611500px;}
.y34{bottom:836.758500px;}
.y12e{bottom:844.260000px;}
.yf0{bottom:847.171500px;}
.y8d{bottom:851.773500px;}
.yd7{bottom:852.151500px;}
.y19{bottom:853.645500px;}
.y104{bottom:854.964000px;}
.ybe{bottom:856.344000px;}
.y4d{bottom:857.299500px;}
.ya8{bottom:865.789500px;}
.y33{bottom:868.483500px;}
.y118{bottom:870.033000px;}
.y12d{bottom:874.746000px;}
.y77{bottom:878.677500px;}
.yd6{bottom:878.982000px;}
.y18{bottom:880.545000px;}
.y8c{bottom:882.259500px;}
.y60{bottom:888.357000px;}
.yef{bottom:895.776000px;}
.ya6{bottom:896.274000px;}
.y32{bottom:900.208500px;}
.ya7{bottom:902.212500px;}
.y12c{bottom:905.230500px;}
.y17{bottom:907.443000px;}
.y4c{bottom:909.045000px;}
.ybd{bottom:913.698000px;}
.y103{bottom:915.291000px;}
.y117{bottom:917.068500px;}
.y8b{bottom:920.601000px;}
.yd5{bottom:925.413000px;}
.y76{bottom:927.708000px;}
.y31{bottom:931.935000px;}
.y16{bottom:934.342500px;}
.ya5{bottom:934.857000px;}
.y12b{bottom:935.716500px;}
.y3{bottom:942.895500px;}
.y102{bottom:945.777000px;}
.yee{bottom:948.081000px;}
.y5f{bottom:948.229500px;}
.yd4{bottom:951.853500px;}
.yd3{bottom:955.899000px;}
.y4b{bottom:957.204000px;}
.y75{bottom:958.194000px;}
.y15{bottom:961.242000px;}
.y8a{bottom:963.669000px;}
.y116{bottom:964.104000px;}
.y12a{bottom:966.202500px;}
.ybc{bottom:971.052000px;}
.y2{bottom:974.277000px;}
.y101{bottom:976.263000px;}
.ya4{bottom:978.004500px;}
.y5e{bottom:978.715500px;}
.y30{bottom:981.264000px;}
.yd2{bottom:982.339500px;}
.yd1{bottom:986.385000px;}
.y14{bottom:988.141500px;}
.y74{bottom:989.382000px;}
.y129{bottom:996.688500px;}
.y89{bottom:1006.735500px;}
.y100{bottom:1006.747500px;}
.yed{bottom:1012.197000px;}
.y2f{bottom:1012.989000px;}
.y115{bottom:1016.170500px;}
.y4a{bottom:1017.948000px;}
.y5d{bottom:1019.010000px;}
.ya3{bottom:1021.152000px;}
.yd0{bottom:1022.071500px;}
.y13{bottom:1026.846000px;}
.y128{bottom:1027.174500px;}
.ybb{bottom:1028.406000px;}
.y12{bottom:1032.268500px;}
.yff{bottom:1037.233500px;}
.y73{bottom:1038.412500px;}
.y1{bottom:1040.139000px;}
.ycf{bottom:1040.419500px;}
.yec{bottom:1042.683000px;}
.y2e{bottom:1044.714000px;}
.y49{bottom:1048.434000px;}
.y88{bottom:1049.803500px;}
.y127{bottom:1057.659000px;}
.y5c{bottom:1059.303000px;}
.y10{bottom:1059.342000px;}
.ya2{bottom:1059.735000px;}
.y11{bottom:1065.280500px;}
.y2d{bottom:1076.439000px;}
.y48{bottom:1078.920000px;}
.yba{bottom:1085.760000px;}
.y72{bottom:1087.443000px;}
.yce{bottom:1087.945500px;}
.y87{bottom:1088.145000px;}
.ya1{bottom:1088.589000px;}
.yeb{bottom:1091.286000px;}
.y5b{bottom:1099.597500px;}
.ya0{bottom:1099.813500px;}
.y2c{bottom:1108.165500px;}
.yf{bottom:1108.509000px;}
.y47{bottom:1109.404500px;}
.ye{bottom:1139.890500px;}
.y2b{bottom:1192.194000px;}
.h19{height:2.391024px;}
.hb{height:16.677504px;}
.ha{height:27.783619px;}
.h9{height:35.865450px;}
.h7{height:37.927872px;}
.h6{height:44.831700px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h17{height:55.089024px;}
.h12{height:59.613450px;}
.hd{height:59.619450px;}
.h2{height:60.254040px;}
.h1c{height:60.597024px;}
.hc{height:62.889450px;}
.he{height:62.895450px;}
.h4{height:67.226503px;}
.h16{height:70.161024px;}
.h1b{height:75.232950px;}
.h18{height:75.801450px;}
.h15{height:79.071450px;}
.hf{height:93.370950px;}
.h11{height:93.988950px;}
.h1a{height:101.349024px;}
.h13{height:103.899450px;}
.h10{height:130.071024px;}
.h14{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x13{left:108.000000px;}
.x19{left:110.739000px;}
.x16{left:114.363000px;}
.x15{left:120.727500px;}
.x72{left:125.998500px;}
.x12{left:130.416000px;}
.x8e{left:132.741000px;}
.x17{left:138.133500px;}
.x18{left:139.270500px;}
.x85{left:144.003000px;}
.x2d{left:150.093000px;}
.x6e{left:153.529500px;}
.x11{left:158.809500px;}
.x3d{left:160.057500px;}
.x1{left:161.127000px;}
.x53{left:166.347000px;}
.x1c{left:168.559500px;}
.x10{left:173.754000px;}
.x55{left:177.217500px;}
.x74{left:178.735500px;}
.x33{left:179.848500px;}
.x30{left:183.394500px;}
.x31{left:191.065500px;}
.xb{left:201.940500px;}
.x3e{left:203.461500px;}
.xa{left:208.780500px;}
.xe{left:214.422000px;}
.x3f{left:219.627000px;}
.xf{left:221.125500px;}
.x56{left:229.911000px;}
.x7a{left:231.910500px;}
.x81{left:242.331000px;}
.x7b{left:245.458500px;}
.x57{left:250.122000px;}
.x7c{left:253.011000px;}
.x4c{left:260.848500px;}
.x69{left:264.561000px;}
.x82{left:267.612000px;}
.x45{left:272.209500px;}
.x2{left:274.819500px;}
.x6f{left:276.951000px;}
.x6a{left:278.563500px;}
.x86{left:285.798000px;}
.x65{left:288.192000px;}
.x54{left:290.443500px;}
.x6c{left:298.176000px;}
.x52{left:302.062500px;}
.x8c{left:308.712000px;}
.x6d{left:311.724000px;}
.x83{left:317.319000px;}
.x6b{left:321.226500px;}
.x8b{left:327.400500px;}
.x6{left:329.793000px;}
.x50{left:335.157000px;}
.x21{left:337.170000px;}
.x84{left:340.810500px;}
.x2c{left:341.928000px;}
.x1e{left:344.331000px;}
.x32{left:350.149500px;}
.x88{left:351.327000px;}
.x4d{left:354.762000px;}
.x3{left:359.667000px;}
.x7f{left:366.180000px;}
.x20{left:367.632000px;}
.x1b{left:373.006500px;}
.x1d{left:375.670500px;}
.x4b{left:377.463000px;}
.x26{left:379.809000px;}
.x5{left:381.384000px;}
.xc{left:382.602000px;}
.x44{left:384.232500px;}
.x78{left:385.962000px;}
.x77{left:388.936500px;}
.x7{left:392.640000px;}
.x4{left:394.558500px;}
.x1f{left:397.690500px;}
.x22{left:400.612500px;}
.x51{left:402.669000px;}
.x2b{left:404.755500px;}
.x8{left:405.966000px;}
.x14{left:409.203000px;}
.x8d{left:410.962500px;}
.x79{left:412.627500px;}
.x5d{left:416.593500px;}
.x4e{left:423.766500px;}
.x40{left:426.648000px;}
.x80{left:428.959500px;}
.x73{left:430.312500px;}
.x7d{left:434.922000px;}
.x23{left:440.100000px;}
.x5e{left:450.601500px;}
.x41{left:454.627500px;}
.x5f{left:463.584000px;}
.x4f{left:469.003500px;}
.x60{left:481.900500px;}
.x7e{left:491.574000px;}
.x66{left:507.061500px;}
.x89{left:510.127500px;}
.xd{left:511.759500px;}
.x70{left:513.516000px;}
.x27{left:515.184000px;}
.x3b{left:516.583500px;}
.x8a{left:526.300500px;}
.x28{left:531.762000px;}
.x71{left:534.616500px;}
.x24{left:540.996000px;}
.x58{left:548.623500px;}
.x61{left:549.648000px;}
.x46{left:552.492000px;}
.x59{left:555.721500px;}
.x62{left:562.630500px;}
.x25{left:567.019500px;}
.x63{left:569.730000px;}
.x3c{left:582.708000px;}
.x34{left:603.772500px;}
.x36{left:615.817500px;}
.x35{left:620.022000px;}
.x42{left:625.062000px;}
.x37{left:635.833500px;}
.x43{left:638.194500px;}
.x38{left:642.070500px;}
.x2e{left:648.769500px;}
.x39{left:655.977000px;}
.x2f{left:673.939500px;}
.x5a{left:676.945500px;}
.x87{left:681.994500px;}
.x67{left:687.523500px;}
.x3a{left:692.628000px;}
.x68{left:699.888000px;}
.x5b{left:704.254500px;}
.x75{left:716.494500px;}
.x47{left:737.245500px;}
.x48{left:747.183000px;}
.x49{left:753.661500px;}
.x4a{left:767.664000px;}
.x29{left:769.765500px;}
.x64{left:786.418500px;}
.x76{left:790.854000px;}
.x2a{left:795.808500px;}
.x1a{left:799.195500px;}
.x5c{left:805.915500px;}
@media print{
.v12{vertical-align:-120.730667pt;}
.v14{vertical-align:-32.768000pt;}
.v15{vertical-align:-24.026667pt;}
.v3{vertical-align:-20.314667pt;}
.v17{vertical-align:-14.320000pt;}
.vf{vertical-align:-13.397333pt;}
.v2{vertical-align:-11.477333pt;}
.v4{vertical-align:-8.725333pt;}
.v9{vertical-align:-7.237333pt;}
.v18{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.vc{vertical-align:14.384000pt;}
.v6{vertical-align:21.114667pt;}
.v16{vertical-align:22.730667pt;}
.v5{vertical-align:24.021333pt;}
.va{vertical-align:31.178667pt;}
.v10{vertical-align:36.218667pt;}
.vd{vertical-align:38.405333pt;}
.v7{vertical-align:39.360000pt;}
.ve{vertical-align:46.842667pt;}
.v11{vertical-align:51.738667pt;}
.vb{vertical-align:60.474667pt;}
.v13{vertical-align:87.962667pt;}
.v8{vertical-align:113.493333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.001325pt;}
.ls6e{letter-spacing:0.001433pt;}
.ls5c{letter-spacing:0.001788pt;}
.lsb{letter-spacing:0.001899pt;}
.ls36{letter-spacing:0.001908pt;}
.ls6b{letter-spacing:0.002399pt;}
.ls13{letter-spacing:0.002400pt;}
.ls71{letter-spacing:0.002405pt;}
.ls81{letter-spacing:0.002879pt;}
.ls7d{letter-spacing:0.003370pt;}
.ls2b{letter-spacing:0.003856pt;}
.ls1a{letter-spacing:0.004305pt;}
.ls47{letter-spacing:0.004826pt;}
.lse{letter-spacing:0.005669pt;}
.ls1e{letter-spacing:0.009605pt;}
.ls4e{letter-spacing:0.011891pt;}
.ls21{letter-spacing:0.012443pt;}
.ls4b{letter-spacing:0.014323pt;}
.ls3a{letter-spacing:0.016122pt;}
.ls56{letter-spacing:0.016363pt;}
.ls34{letter-spacing:0.022172pt;}
.ls4c{letter-spacing:0.023395pt;}
.ls10{letter-spacing:0.026021pt;}
.ls2c{letter-spacing:0.029946pt;}
.ls28{letter-spacing:0.058182pt;}
.ls46{letter-spacing:0.290909pt;}
.ls9{letter-spacing:0.581819pt;}
.ls78{letter-spacing:1.250474pt;}
.ls6f{letter-spacing:1.255807pt;}
.ls2f{letter-spacing:1.570910pt;}
.ls7c{letter-spacing:1.589608pt;}
.ls6c{letter-spacing:1.596906pt;}
.ls53{letter-spacing:1.602818pt;}
.ls5b{letter-spacing:1.612566pt;}
.ls64{letter-spacing:1.614971pt;}
.ls7b{letter-spacing:1.616843pt;}
.ls3e{letter-spacing:1.617899pt;}
.ls6a{letter-spacing:1.620305pt;}
.ls6{letter-spacing:1.629092pt;}
.ls19{letter-spacing:2.036365pt;}
.ls18{letter-spacing:2.094547pt;}
.ls1d{letter-spacing:2.560002pt;}
.ls66{letter-spacing:2.640083pt;}
.ls3f{letter-spacing:2.653258pt;}
.ls4f{letter-spacing:2.654249pt;}
.ls69{letter-spacing:2.654275pt;}
.ls43{letter-spacing:2.654375pt;}
.ls22{letter-spacing:2.655975pt;}
.ls37{letter-spacing:2.656704pt;}
.ls11{letter-spacing:2.657546pt;}
.ls55{letter-spacing:2.658591pt;}
.ls63{letter-spacing:2.659608pt;}
.ls2a{letter-spacing:2.662879pt;}
.ls7e{letter-spacing:3.911807pt;}
.ls72{letter-spacing:4.451658pt;}
.ls77{letter-spacing:4.456992pt;}
.ls65{letter-spacing:4.548270pt;}
.ls70{letter-spacing:5.312473pt;}
.ls80{letter-spacing:5.312495pt;}
.ls5f{letter-spacing:5.317806pt;}
.ls68{letter-spacing:5.969546pt;}
.ls33{letter-spacing:6.283642pt;}
.ls5d{letter-spacing:7.419162pt;}
.ls27{letter-spacing:8.029098pt;}
.ls25{letter-spacing:8.087279pt;}
.ls60{letter-spacing:9.697788pt;}
.ls5a{letter-spacing:9.716372pt;}
.ls38{letter-spacing:12.351975pt;}
.ls1c{letter-spacing:12.916374pt;}
.ls2e{letter-spacing:12.974556pt;}
.ls20{letter-spacing:14.545467pt;}
.ls54{letter-spacing:15.581258pt;}
.ls1b{letter-spacing:15.585546pt;}
.ls57{letter-spacing:15.586591pt;}
.ls31{letter-spacing:15.590879pt;}
.ls7{letter-spacing:16.116377pt;}
.ls5e{letter-spacing:16.161788pt;}
.lsa{letter-spacing:16.174559pt;}
.ls5{letter-spacing:17.803651pt;}
.ls48{letter-spacing:18.087733pt;}
.ls2d{letter-spacing:18.676379pt;}
.ls74{letter-spacing:18.734561pt;}
.ls1f{letter-spacing:18.815975pt;}
.lsc{letter-spacing:18.817546pt;}
.ls85{letter-spacing:18.822879pt;}
.ls3{letter-spacing:19.039527pt;}
.ls41{letter-spacing:19.258198pt;}
.ls26{letter-spacing:19.374562pt;}
.ls8{letter-spacing:19.432743pt;}
.ls4{letter-spacing:19.956380pt;}
.ls62{letter-spacing:20.340811pt;}
.ls76{letter-spacing:20.616992pt;}
.ls3d{letter-spacing:21.003654pt;}
.ls7a{letter-spacing:21.934564pt;}
.ls6d{letter-spacing:22.045258pt;}
.ls32{letter-spacing:22.047975pt;}
.ls3b{letter-spacing:22.049546pt;}
.ls44{letter-spacing:22.050591pt;}
.ls14{letter-spacing:22.053663pt;}
.lsf{letter-spacing:22.054879pt;}
.ls52{letter-spacing:22.134879pt;}
.ls42{letter-spacing:22.167291pt;}
.ls50{letter-spacing:22.400019pt;}
.ls51{letter-spacing:23.473546pt;}
.ls4a{letter-spacing:23.474591pt;}
.ls23{letter-spacing:25.018203pt;}
.ls84{letter-spacing:26.123658pt;}
.ls17{letter-spacing:26.530931pt;}
.ls12{letter-spacing:26.589113pt;}
.ls29{letter-spacing:26.763659pt;}
.ls16{letter-spacing:26.938204pt;}
.ls40{letter-spacing:26.996386pt;}
.ls15{letter-spacing:27.054568pt;}
.ls4d{letter-spacing:28.160023pt;}
.ls24{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls73{letter-spacing:126.080105pt;}
.ls0{letter-spacing:306.975635pt;}
.ls49{letter-spacing:358.342117pt;}
.ls67{letter-spacing:518.342250pt;}
.ls59{letter-spacing:527.825894pt;}
.ls75{letter-spacing:663.738735pt;}
.ls61{letter-spacing:664.262372pt;}
.ls30{letter-spacing:681.775114pt;}
.ls39{letter-spacing:776.495193pt;}
.ls7f{letter-spacing:791.564296pt;}
.ls35{letter-spacing:808.146128pt;}
.ls82{letter-spacing:827.753417pt;}
.ls83{letter-spacing:889.600741pt;}
.ls45{letter-spacing:889.775287pt;}
.ls3c{letter-spacing:891.404379pt;}
.lsd{letter-spacing:902.691661pt;}
.ls79{letter-spacing:905.717118pt;}
.ws3e{word-spacing:-58.181867pt;}
.ws54{word-spacing:-48.523677pt;}
.ws43{word-spacing:-42.066082pt;}
.ws22{word-spacing:-42.065490pt;}
.ws3b{word-spacing:-42.007308pt;}
.ws25{word-spacing:-37.899668pt;}
.ws3f{word-spacing:-29.736752pt;}
.ws26{word-spacing:-29.521250pt;}
.ws1d{word-spacing:-29.090933pt;}
.ws45{word-spacing:-28.241478pt;}
.ws51{word-spacing:-28.183296pt;}
.ws16{word-spacing:-24.575109pt;}
.ws42{word-spacing:-21.828466pt;}
.ws5a{word-spacing:-21.783291pt;}
.ws29{word-spacing:-17.165023pt;}
.ws28{word-spacing:-16.162923pt;}
.ws36{word-spacing:-15.243649pt;}
.ws6e{word-spacing:-14.720012pt;}
.wsb{word-spacing:-14.505546pt;}
.ws35{word-spacing:-14.487285pt;}
.ws0{word-spacing:-14.346200pt;}
.ws38{word-spacing:-13.614557pt;}
.ws23{word-spacing:-12.858193pt;}
.ws60{word-spacing:-12.543875pt;}
.ws4c{word-spacing:-12.043646pt;}
.ws48{word-spacing:-11.985465pt;}
.ws3{word-spacing:-11.955200pt;}
.ws39{word-spacing:-11.869101pt;}
.ws67{word-spacing:-11.694555pt;}
.ws65{word-spacing:-11.461828pt;}
.ws31{word-spacing:-11.170918pt;}
.ws2a{word-spacing:-11.112737pt;}
.ws64{word-spacing:-10.996373pt;}
.ws34{word-spacing:-10.938191pt;}
.ws5b{word-spacing:-10.880009pt;}
.ws49{word-spacing:-10.821827pt;}
.ws2b{word-spacing:-10.763645pt;}
.ws56{word-spacing:-10.647282pt;}
.ws58{word-spacing:-10.530918pt;}
.ws1a{word-spacing:-10.414554pt;}
.ws20{word-spacing:-10.201702pt;}
.ws4a{word-spacing:-10.148569pt;}
.ws55{word-spacing:-10.123645pt;}
.ws41{word-spacing:-10.065463pt;}
.ws40{word-spacing:-10.007281pt;}
.ws1b{word-spacing:-9.949099pt;}
.ws1f{word-spacing:-9.890917pt;}
.ws1c{word-spacing:-9.832735pt;}
.ws37{word-spacing:-9.774554pt;}
.ws13{word-spacing:-9.716372pt;}
.ws15{word-spacing:-9.658190pt;}
.ws1e{word-spacing:-9.600008pt;}
.ws3c{word-spacing:-9.541826pt;}
.ws12{word-spacing:-9.483644pt;}
.ws57{word-spacing:-9.425462pt;}
.ws4b{word-spacing:-9.367281pt;}
.ws2c{word-spacing:-9.309099pt;}
.wsf{word-spacing:-9.245293pt;}
.ws75{word-spacing:-9.192159pt;}
.wsc{word-spacing:-9.032757pt;}
.ws32{word-spacing:-8.965826pt;}
.ws30{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws73{word-spacing:-8.820222pt;}
.ws3d{word-spacing:-8.733098pt;}
.ws2f{word-spacing:-8.616734pt;}
.ws74{word-spacing:-8.559866pt;}
.ws2e{word-spacing:-8.558553pt;}
.ws2d{word-spacing:-8.500371pt;}
.ws4f{word-spacing:-8.261825pt;}
.ws6{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws72{word-spacing:-8.134795pt;}
.ws6a{word-spacing:-8.029098pt;}
.ws47{word-spacing:-7.970916pt;}
.ws46{word-spacing:-7.912734pt;}
.ws71{word-spacing:-7.738188pt;}
.ws50{word-spacing:-7.685825pt;}
.ws27{word-spacing:-7.469023pt;}
.ws4e{word-spacing:-7.447279pt;}
.ws11{word-spacing:-7.272733pt;}
.ws59{word-spacing:-7.214551pt;}
.ws76{word-spacing:-6.748001pt;}
.ws10{word-spacing:-6.588599pt;}
.ws61{word-spacing:-6.504733pt;}
.ws77{word-spacing:-6.221976pt;}
.ws78{word-spacing:-6.110395pt;}
.ws66{word-spacing:-5.701823pt;}
.ws62{word-spacing:-5.585459pt;}
.ws19{word-spacing:-5.527277pt;}
.ws33{word-spacing:-5.236368pt;}
.ws14{word-spacing:-5.178186pt;}
.ws5c{word-spacing:-5.020100pt;}
.ws68{word-spacing:-5.003641pt;}
.ws63{word-spacing:-4.712731pt;}
.ws69{word-spacing:-4.654549pt;}
.ws70{word-spacing:-4.538186pt;}
.ws6f{word-spacing:-4.480004pt;}
.wsa{word-spacing:-4.468558pt;}
.ws6b{word-spacing:-4.305458pt;}
.ws6d{word-spacing:-4.078549pt;}
.ws6c{word-spacing:-4.020367pt;}
.ws5e{word-spacing:-3.490912pt;}
.ws53{word-spacing:-3.246548pt;}
.ws52{word-spacing:-3.188366pt;}
.wsd{word-spacing:-3.188032pt;}
.wse{word-spacing:-1.328347pt;}
.ws2{word-spacing:-0.076513pt;}
.ws21{word-spacing:-0.046545pt;}
.ws5d{word-spacing:-0.015599pt;}
.ws7{word-spacing:0.000000pt;}
.ws24{word-spacing:0.011636pt;}
.ws8{word-spacing:2.385457pt;}
.ws3a{word-spacing:3.211639pt;}
.ws4d{word-spacing:4.130913pt;}
.ws9{word-spacing:10.159221pt;}
.ws5f{word-spacing:10.658918pt;}
.ws1{word-spacing:20.786108pt;}
.ws18{word-spacing:30.551973pt;}
.ws44{word-spacing:692.108213pt;}
.ws17{word-spacing:2025.083389pt;}
._0{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._4{margin-left:-4.107285pt;}
._6{margin-left:-2.481378pt;}
._3{margin-left:-1.487748pt;}
._5{width:1.195520pt;}
._1{width:2.371905pt;}
._30{width:3.352687pt;}
._32{width:4.421822pt;}
._31{width:5.319791pt;}
._35{width:6.377164pt;}
._8{width:13.947737pt;}
._33{width:15.519700pt;}
._2f{width:17.280014pt;}
._3d{width:18.449521pt;}
._12{width:20.289550pt;}
._7{width:23.761625pt;}
._11{width:24.721710pt;}
._9{width:25.663642pt;}
._38{width:26.660054pt;}
._b{width:27.565920pt;}
._3f{width:28.482343pt;}
._37{width:31.243662pt;}
._36{width:32.142690pt;}
._2d{width:34.819055pt;}
._3c{width:38.924988pt;}
._40{width:40.455014pt;}
._3b{width:41.742698pt;}
._3e{width:42.964517pt;}
._3a{width:45.149129pt;}
._a{width:47.209433pt;}
._34{width:50.159870pt;}
._2e{width:61.608710pt;}
._39{width:126.508164pt;}
._1f{width:689.973701pt;}
._19{width:698.160296pt;}
._26{width:871.107375pt;}
._13{width:931.433503pt;}
._16{width:1050.702316pt;}
._d{width:1055.016278pt;}
._20{width:1090.795454pt;}
._15{width:1125.097775pt;}
._1d{width:1164.719366pt;}
._27{width:1196.661211pt;}
._25{width:1208.679877pt;}
._23{width:1218.148936pt;}
._1b{width:1237.647544pt;}
._1a{width:1255.992072pt;}
._18{width:1331.494895pt;}
._2a{width:1355.148615pt;}
._1c{width:1468.428710pt;}
._29{width:1474.156832pt;}
._17{width:1558.061986pt;}
._24{width:1561.359229pt;}
._10{width:1572.716914pt;}
._21{width:1592.181540pt;}
._f{width:1611.506141pt;}
._22{width:1630.176971pt;}
._28{width:1633.374302pt;}
._14{width:1655.534951pt;}
._2c{width:1667.643421pt;}
._e{width:1720.906129pt;}
._1e{width:2022.525792pt;}
._2b{width:2031.177091pt;}
._c{width:2032.791823pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:140.582667pt;}
.y46{bottom:142.501333pt;}
.y13f{bottom:145.822667pt;}
.y2a{bottom:154.156000pt;}
.ye9{bottom:157.166667pt;}
.y45{bottom:169.600000pt;}
.y13e{bottom:169.732000pt;}
.y9f{bottom:177.912000pt;}
.y126{bottom:184.310667pt;}
.y29{bottom:192.710667pt;}
.y13d{bottom:193.642667pt;}
.ycd{bottom:196.698667pt;}
.y44{bottom:197.800000pt;}
.ye8{bottom:199.412000pt;}
.yb9{bottom:203.896000pt;}
.y71{bottom:205.416000pt;}
.y5a{bottom:210.344000pt;}
.yfe{bottom:212.470667pt;}
.y86{bottom:213.102667pt;}
.y13c{bottom:217.553333pt;}
.y114{bottom:223.796000pt;}
.y9e{bottom:223.908000pt;}
.y43{bottom:224.898667pt;}
.y125{bottom:226.118667pt;}
.yb8{bottom:230.994667pt;}
.y28{bottom:235.006667pt;}
.y85{bottom:240.201333pt;}
.y70{bottom:241.233333pt;}
.y13b{bottom:241.464000pt;}
.ycb{bottom:244.768000pt;}
.ye7{bottom:245.585333pt;}
.ycc{bottom:248.117333pt;}
.yd{bottom:248.576000pt;}
.y59{bottom:251.086667pt;}
.y42{bottom:251.997333pt;}
.yfd{bottom:255.341333pt;}
.yb7{bottom:258.093333pt;}
.y27{bottom:262.432000pt;}
.y13a{bottom:265.373333pt;}
.y84{bottom:267.300000pt;}
.y124{bottom:267.928000pt;}
.y6f{bottom:268.332000pt;}
.y113{bottom:269.792000pt;}
.yc{bottom:273.150667pt;}
.y9d{bottom:277.064000pt;}
.y41{bottom:279.096000pt;}
.yb6{bottom:281.594667pt;}
.yb5{bottom:285.190667pt;}
.y139{bottom:289.284000pt;}
.y26{bottom:289.857333pt;}
.y58{bottom:290.502667pt;}
.yca{bottom:292.838667pt;}
.ye6{bottom:297.154667pt;}
.yb{bottom:297.725333pt;}
.yfc{bottom:298.213333pt;}
.ye5{bottom:300.750667pt;}
.y83{bottom:300.905333pt;}
.y6e{bottom:302.820000pt;}
.y9c{bottom:304.162667pt;}
.y123{bottom:309.736000pt;}
.y138{bottom:313.194667pt;}
.y25{bottom:317.281333pt;}
.yc9{bottom:319.936000pt;}
.y82{bottom:320.722667pt;}
.ya{bottom:322.298667pt;}
.y112{bottom:323.416000pt;}
.y40{bottom:326.193333pt;}
.y6d{bottom:329.918667pt;}
.yb4{bottom:331.186667pt;}
.y57{bottom:336.498667pt;}
.y137{bottom:337.105333pt;}
.y9b{bottom:338.244000pt;}
.yfb{bottom:341.084000pt;}
.ye4{bottom:342.994667pt;}
.y24{bottom:344.706667pt;}
.y9{bottom:346.873333pt;}
.yc8{bottom:349.154667pt;}
.y111{bottom:350.514667pt;}
.y122{bottom:351.545333pt;}
.y81{bottom:354.465333pt;}
.y6c{bottom:364.406667pt;}
.y99{bottom:365.342667pt;}
.y9a{bottom:370.621333pt;}
.y23{bottom:372.132000pt;}
.yc7{bottom:376.253333pt;}
.y110{bottom:377.613333pt;}
.yfa{bottom:383.954667pt;}
.ye3{bottom:384.266667pt;}
.yb3{bottom:384.377333pt;}
.y3f{bottom:386.637333pt;}
.y56{bottom:390.493333pt;}
.y121{bottom:393.353333pt;}
.y98{bottom:399.425333pt;}
.y80{bottom:401.085333pt;}
.y6b{bottom:402.824000pt;}
.y10f{bottom:404.712000pt;}
.yb2{bottom:411.476000pt;}
.y22{bottom:414.428000pt;}
.ye2{bottom:420.702667pt;}
.yc6{bottom:424.369333pt;}
.ye1{bottom:426.512000pt;}
.y96{bottom:426.522667pt;}
.y136{bottom:430.416000pt;}
.yf9{bottom:430.449333pt;}
.y3e{bottom:430.485333pt;}
.y55{bottom:431.237333pt;}
.y97{bottom:431.801333pt;}
.y10e{bottom:431.809333pt;}
.y120{bottom:435.162667pt;}
.y6a{bottom:437.312000pt;}
.y21{bottom:441.853333pt;}
.yb1{bottom:443.504000pt;}
.yb0{bottom:447.100000pt;}
.y95{bottom:453.621333pt;}
.y7f{bottom:458.798667pt;}
.y10d{bottom:458.908000pt;}
.y69{bottom:464.410667pt;}
.ye0{bottom:468.756000pt;}
.y20{bottom:469.277333pt;}
.y135{bottom:469.577333pt;}
.y54{bottom:471.980000pt;}
.y8{bottom:472.541333pt;}
.y3d{bottom:474.333333pt;}
.y11f{bottom:476.970667pt;}
.yaf{bottom:482.724000pt;}
.y10c{bottom:486.006667pt;}
.yf8{bottom:487.440000pt;}
.yc5{bottom:490.630667pt;}
.y1f{bottom:496.702667pt;}
.y94{bottom:499.617333pt;}
.y68{bottom:500.228000pt;}
.y7e{bottom:502.381333pt;}
.y3c{bottom:502.534667pt;}
.ydf{bottom:507.405333pt;}
.y134{bottom:508.740000pt;}
.yde{bottom:511.000000pt;}
.y53{bottom:512.724000pt;}
.y10b{bottom:513.105333pt;}
.yf7{bottom:514.538667pt;}
.yc4{bottom:517.728000pt;}
.y7{bottom:519.129333pt;}
.y11e{bottom:523.252000pt;}
.yae{bottom:528.720000pt;}
.y3b{bottom:530.734667pt;}
.y67{bottom:536.044000pt;}
.y1e{bottom:539.000000pt;}
.y10a{bottom:540.204000pt;}
.yf6{bottom:542.134667pt;}
.y6{bottom:543.040000pt;}
.yc3{bottom:544.826667pt;}
.y7d{bottom:545.964000pt;}
.y133{bottom:547.902667pt;}
.y93{bottom:552.774667pt;}
.ydd{bottom:553.245333pt;}
.y52{bottom:553.468000pt;}
.y3a{bottom:558.934667pt;}
.y66{bottom:563.142667pt;}
.y5{bottom:566.949333pt;}
.yf5{bottom:569.233333pt;}
.yc2{bottom:571.925333pt;}
.y109{bottom:578.585333pt;}
.y11d{bottom:579.029333pt;}
.y7c{bottom:579.569333pt;}
.y92{bottom:579.872000pt;}
.yad{bottom:581.910667pt;}
.y1d{bottom:585.321333pt;}
.y132{bottom:587.064000pt;}
.y39{bottom:587.134667pt;}
.y7b{bottom:589.546667pt;}
.ydc{bottom:595.489333pt;}
.yf4{bottom:596.332000pt;}
.y51{bottom:599.464000pt;}
.y11c{bottom:606.128000pt;}
.y91{bottom:606.970667pt;}
.y65{bottom:609.138667pt;}
.y38{bottom:615.336000pt;}
.yac{bottom:616.206667pt;}
.y108{bottom:616.968000pt;}
.yc1{bottom:620.041333pt;}
.yf3{bottom:623.430667pt;}
.y131{bottom:623.786667pt;}
.y7a{bottom:633.130667pt;}
.y90{bottom:634.069333pt;}
.ydb{bottom:637.734667pt;}
.yab{bottom:643.305333pt;}
.yc0{bottom:643.952000pt;}
.y107{bottom:644.066667pt;}
.y11b{bottom:647.937333pt;}
.y50{bottom:653.458667pt;}
.y1c{bottom:656.452000pt;}
.y37{bottom:659.184000pt;}
.y64{bottom:662.358667pt;}
.yf2{bottom:666.633333pt;}
.y130{bottom:669.782667pt;}
.yaa{bottom:670.404000pt;}
.y106{bottom:671.164000pt;}
.y79{bottom:679.750667pt;}
.y8f{bottom:680.065333pt;}
.y4f{bottom:680.556000pt;}
.y1b{bottom:683.550667pt;}
.yda{bottom:683.908000pt;}
.y36{bottom:687.384000pt;}
.y63{bottom:689.457333pt;}
.y11a{bottom:689.745333pt;}
.y4{bottom:701.244000pt;}
.y8e{bottom:703.976000pt;}
.yf1{bottom:709.837333pt;}
.ybf{bottom:710.213333pt;}
.y35{bottom:715.584000pt;}
.ya9{bottom:716.400000pt;}
.y62{bottom:716.556000pt;}
.y105{bottom:717.160000pt;}
.y4e{bottom:721.300000pt;}
.y12f{bottom:723.354667pt;}
.y119{bottom:731.554667pt;}
.y1a{bottom:734.885333pt;}
.yd9{bottom:735.477333pt;}
.y78{bottom:737.464000pt;}
.yd8{bottom:739.073333pt;}
.y61{bottom:743.654667pt;}
.y34{bottom:743.785333pt;}
.y12e{bottom:750.453333pt;}
.yf0{bottom:753.041333pt;}
.y8d{bottom:757.132000pt;}
.yd7{bottom:757.468000pt;}
.y19{bottom:758.796000pt;}
.y104{bottom:759.968000pt;}
.ybe{bottom:761.194667pt;}
.y4d{bottom:762.044000pt;}
.ya8{bottom:769.590667pt;}
.y33{bottom:771.985333pt;}
.y118{bottom:773.362667pt;}
.y12d{bottom:777.552000pt;}
.y77{bottom:781.046667pt;}
.yd6{bottom:781.317333pt;}
.y18{bottom:782.706667pt;}
.y8c{bottom:784.230667pt;}
.y60{bottom:789.650667pt;}
.yef{bottom:796.245333pt;}
.ya6{bottom:796.688000pt;}
.y32{bottom:800.185333pt;}
.ya7{bottom:801.966667pt;}
.y12c{bottom:804.649333pt;}
.y17{bottom:806.616000pt;}
.y4c{bottom:808.040000pt;}
.ybd{bottom:812.176000pt;}
.y103{bottom:813.592000pt;}
.y117{bottom:815.172000pt;}
.y8b{bottom:818.312000pt;}
.yd5{bottom:822.589333pt;}
.y76{bottom:824.629333pt;}
.y31{bottom:828.386667pt;}
.y16{bottom:830.526667pt;}
.ya5{bottom:830.984000pt;}
.y12b{bottom:831.748000pt;}
.y3{bottom:838.129333pt;}
.y102{bottom:840.690667pt;}
.yee{bottom:842.738667pt;}
.y5f{bottom:842.870667pt;}
.yd4{bottom:846.092000pt;}
.yd3{bottom:849.688000pt;}
.y4b{bottom:850.848000pt;}
.y75{bottom:851.728000pt;}
.y15{bottom:854.437333pt;}
.y8a{bottom:856.594667pt;}
.y116{bottom:856.981333pt;}
.y12a{bottom:858.846667pt;}
.ybc{bottom:863.157333pt;}
.y2{bottom:866.024000pt;}
.y101{bottom:867.789333pt;}
.ya4{bottom:869.337333pt;}
.y5e{bottom:869.969333pt;}
.y30{bottom:872.234667pt;}
.yd2{bottom:873.190667pt;}
.yd1{bottom:876.786667pt;}
.y14{bottom:878.348000pt;}
.y74{bottom:879.450667pt;}
.y129{bottom:885.945333pt;}
.y89{bottom:894.876000pt;}
.y100{bottom:894.886667pt;}
.yed{bottom:899.730667pt;}
.y2f{bottom:900.434667pt;}
.y115{bottom:903.262667pt;}
.y4a{bottom:904.842667pt;}
.y5d{bottom:905.786667pt;}
.ya3{bottom:907.690667pt;}
.yd0{bottom:908.508000pt;}
.y13{bottom:912.752000pt;}
.y128{bottom:913.044000pt;}
.ybb{bottom:914.138667pt;}
.y12{bottom:917.572000pt;}
.yff{bottom:921.985333pt;}
.y73{bottom:923.033333pt;}
.y1{bottom:924.568000pt;}
.ycf{bottom:924.817333pt;}
.yec{bottom:926.829333pt;}
.y2e{bottom:928.634667pt;}
.y49{bottom:931.941333pt;}
.y88{bottom:933.158667pt;}
.y127{bottom:940.141333pt;}
.y5c{bottom:941.602667pt;}
.y10{bottom:941.637333pt;}
.ya2{bottom:941.986667pt;}
.y11{bottom:946.916000pt;}
.y2d{bottom:956.834667pt;}
.y48{bottom:959.040000pt;}
.yba{bottom:965.120000pt;}
.y72{bottom:966.616000pt;}
.yce{bottom:967.062667pt;}
.y87{bottom:967.240000pt;}
.ya1{bottom:967.634667pt;}
.yeb{bottom:970.032000pt;}
.y5b{bottom:977.420000pt;}
.ya0{bottom:977.612000pt;}
.y2c{bottom:985.036000pt;}
.yf{bottom:985.341333pt;}
.y47{bottom:986.137333pt;}
.ye{bottom:1013.236000pt;}
.y2b{bottom:1059.728000pt;}
.h19{height:2.125355pt;}
.hb{height:14.824448pt;}
.ha{height:24.696550pt;}
.h9{height:31.880400pt;}
.h7{height:33.713664pt;}
.h6{height:39.850400pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h17{height:48.968021pt;}
.h12{height:52.989733pt;}
.hd{height:52.995067pt;}
.h2{height:53.559147pt;}
.h1c{height:53.864021pt;}
.hc{height:55.901733pt;}
.he{height:55.907067pt;}
.h4{height:59.756892pt;}
.h16{height:62.365355pt;}
.h1b{height:66.873733pt;}
.h18{height:67.379067pt;}
.h15{height:70.285733pt;}
.hf{height:82.996400pt;}
.h11{height:83.545733pt;}
.h1a{height:90.088021pt;}
.h13{height:92.355067pt;}
.h10{height:115.618688pt;}
.h14{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x13{left:96.000000pt;}
.x19{left:98.434667pt;}
.x16{left:101.656000pt;}
.x15{left:107.313333pt;}
.x72{left:111.998667pt;}
.x12{left:115.925333pt;}
.x8e{left:117.992000pt;}
.x17{left:122.785333pt;}
.x18{left:123.796000pt;}
.x85{left:128.002667pt;}
.x2d{left:133.416000pt;}
.x6e{left:136.470667pt;}
.x11{left:141.164000pt;}
.x3d{left:142.273333pt;}
.x1{left:143.224000pt;}
.x53{left:147.864000pt;}
.x1c{left:149.830667pt;}
.x10{left:154.448000pt;}
.x55{left:157.526667pt;}
.x74{left:158.876000pt;}
.x33{left:159.865333pt;}
.x30{left:163.017333pt;}
.x31{left:169.836000pt;}
.xb{left:179.502667pt;}
.x3e{left:180.854667pt;}
.xa{left:185.582667pt;}
.xe{left:190.597333pt;}
.x3f{left:195.224000pt;}
.xf{left:196.556000pt;}
.x56{left:204.365333pt;}
.x7a{left:206.142667pt;}
.x81{left:215.405333pt;}
.x7b{left:218.185333pt;}
.x57{left:222.330667pt;}
.x7c{left:224.898667pt;}
.x4c{left:231.865333pt;}
.x69{left:235.165333pt;}
.x82{left:237.877333pt;}
.x45{left:241.964000pt;}
.x2{left:244.284000pt;}
.x6f{left:246.178667pt;}
.x6a{left:247.612000pt;}
.x86{left:254.042667pt;}
.x65{left:256.170667pt;}
.x54{left:258.172000pt;}
.x6c{left:265.045333pt;}
.x52{left:268.500000pt;}
.x8c{left:274.410667pt;}
.x6d{left:277.088000pt;}
.x83{left:282.061333pt;}
.x6b{left:285.534667pt;}
.x8b{left:291.022667pt;}
.x6{left:293.149333pt;}
.x50{left:297.917333pt;}
.x21{left:299.706667pt;}
.x84{left:302.942667pt;}
.x2c{left:303.936000pt;}
.x1e{left:306.072000pt;}
.x32{left:311.244000pt;}
.x88{left:312.290667pt;}
.x4d{left:315.344000pt;}
.x3{left:319.704000pt;}
.x7f{left:325.493333pt;}
.x20{left:326.784000pt;}
.x1b{left:331.561333pt;}
.x1d{left:333.929333pt;}
.x4b{left:335.522667pt;}
.x26{left:337.608000pt;}
.x5{left:339.008000pt;}
.xc{left:340.090667pt;}
.x44{left:341.540000pt;}
.x78{left:343.077333pt;}
.x77{left:345.721333pt;}
.x7{left:349.013333pt;}
.x4{left:350.718667pt;}
.x1f{left:353.502667pt;}
.x22{left:356.100000pt;}
.x51{left:357.928000pt;}
.x2b{left:359.782667pt;}
.x8{left:360.858667pt;}
.x14{left:363.736000pt;}
.x8d{left:365.300000pt;}
.x79{left:366.780000pt;}
.x5d{left:370.305333pt;}
.x4e{left:376.681333pt;}
.x40{left:379.242667pt;}
.x80{left:381.297333pt;}
.x73{left:382.500000pt;}
.x7d{left:386.597333pt;}
.x23{left:391.200000pt;}
.x5e{left:400.534667pt;}
.x41{left:404.113333pt;}
.x5f{left:412.074667pt;}
.x4f{left:416.892000pt;}
.x60{left:428.356000pt;}
.x7e{left:436.954667pt;}
.x66{left:450.721333pt;}
.x89{left:453.446667pt;}
.xd{left:454.897333pt;}
.x70{left:456.458667pt;}
.x27{left:457.941333pt;}
.x3b{left:459.185333pt;}
.x8a{left:467.822667pt;}
.x28{left:472.677333pt;}
.x71{left:475.214667pt;}
.x24{left:480.885333pt;}
.x58{left:487.665333pt;}
.x61{left:488.576000pt;}
.x46{left:491.104000pt;}
.x59{left:493.974667pt;}
.x62{left:500.116000pt;}
.x25{left:504.017333pt;}
.x63{left:506.426667pt;}
.x3c{left:517.962667pt;}
.x34{left:536.686667pt;}
.x36{left:547.393333pt;}
.x35{left:551.130667pt;}
.x42{left:555.610667pt;}
.x37{left:565.185333pt;}
.x43{left:567.284000pt;}
.x38{left:570.729333pt;}
.x2e{left:576.684000pt;}
.x39{left:583.090667pt;}
.x2f{left:599.057333pt;}
.x5a{left:601.729333pt;}
.x87{left:606.217333pt;}
.x67{left:611.132000pt;}
.x3a{left:615.669333pt;}
.x68{left:622.122667pt;}
.x5b{left:626.004000pt;}
.x75{left:636.884000pt;}
.x47{left:655.329333pt;}
.x48{left:664.162667pt;}
.x49{left:669.921333pt;}
.x4a{left:682.368000pt;}
.x29{left:684.236000pt;}
.x64{left:699.038667pt;}
.x76{left:702.981333pt;}
.x2a{left:707.385333pt;}
.x1a{left:710.396000pt;}
.x5c{left:716.369333pt;}
}




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