
    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_509007fa9568b7c42efd0619.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3c57b4f4e59fb68ab054d5af.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_f22d1c6c1ec821958b2f99c0.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_58dcf6096670620caa122056.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f49ff73d31b9f8f9d4b8cccc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d74efa75994c40bdde7843e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d8839194df0326da1c7ddf05.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d14a1aaa1f8329520667cb4b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_91cba1d2487b4d12653c84d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.388000;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_2181437ac506ff42a0b97efa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_1bbda678bb19ea29be770957.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.486000;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_8ea3ed5953601d0657118e5c.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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_98445183bc9f7b4ee2790c8a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901855;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_2d71d5c28ef28e3fa9854935.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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;}
.m10{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);}
.m17{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);}
.m22{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);}
.m19{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);}
.m24{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);}
.m6{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);}
.m14{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);}
.m3{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);}
.m1f{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);}
.m16{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);}
.ma{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);}
.m21{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);}
.m1c{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);}
.mf{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);}
.m27{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.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);}
.md{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);}
.m4{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);}
.m8{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);}
.m11{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);}
.m18{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);}
.m1e{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);}
.m1a{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);}
.m20{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);}
.mc{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);}
.m29{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);}
.m1b{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);}
.m7{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);}
.m25{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);}
.m28{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);}
.m12{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);}
.me{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);}
.m9{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);}
.m23{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);}
.m15{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);}
.m5{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);}
.mb{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);}
.m26{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);}
.m1{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v5{vertical-align:-4.872000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.358000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls33{letter-spacing:0.001584px;}
.ls31{letter-spacing:0.002522px;}
.ls32{letter-spacing:0.002787px;}
.ls1f{letter-spacing:0.003389px;}
.ls12{letter-spacing:0.003699px;}
.ls30{letter-spacing:0.004403px;}
.ls1e{letter-spacing:0.152640px;}
.ls21{letter-spacing:0.178800px;}
.ls22{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.642088px;}
.ls2a{letter-spacing:0.648088px;}
.ls3{letter-spacing:2.998354px;}
.ls2b{letter-spacing:11.951700px;}
.lsc{letter-spacing:11.954850px;}
.ls1c{letter-spacing:11.957700px;}
.ls7{letter-spacing:13.221948px;}
.ls8{letter-spacing:13.677937px;}
.ls27{letter-spacing:13.783629px;}
.ls26{letter-spacing:13.789751px;}
.lsf{letter-spacing:14.107042px;}
.ls1a{letter-spacing:14.120045px;}
.ls28{letter-spacing:14.285669px;}
.lsd{letter-spacing:14.346144px;}
.lse{letter-spacing:14.405920px;}
.ls14{letter-spacing:14.635355px;}
.lsa{letter-spacing:14.704798px;}
.ls9{letter-spacing:14.764573px;}
.ls23{letter-spacing:14.786756px;}
.lsb{letter-spacing:14.824349px;}
.ls19{letter-spacing:14.924514px;}
.ls13{letter-spacing:14.942317px;}
.ls11{letter-spacing:14.943900px;}
.ls2{letter-spacing:14.944200px;}
.ls1d{letter-spacing:15.034200px;}
.ls2c{letter-spacing:15.063451px;}
.ls29{letter-spacing:15.139667px;}
.ls25{letter-spacing:15.145567px;}
.ls10{letter-spacing:15.302554px;}
.ls2f{letter-spacing:16.965900px;}
.ls2d{letter-spacing:17.454475px;}
.ls16{letter-spacing:17.753353px;}
.ls15{letter-spacing:17.806318px;}
.ls20{letter-spacing:19.147494px;}
.ls2e{letter-spacing:20.024826px;}
.ls24{letter-spacing:23.341612px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.ls18{letter-spacing:699.643200px;}
.ls17{letter-spacing:941.371200px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws5e{word-spacing:-14.943900px;}
.wsd{word-spacing:-14.355754px;}
.wsa3{word-spacing:-13.449600px;}
.ws79{word-spacing:-12.420000px;}
.ws7a{word-spacing:-12.060000px;}
.ws27{word-spacing:-11.955150px;}
.ws78{word-spacing:-10.618800px;}
.ws2{word-spacing:-10.460700px;}
.ws77{word-spacing:-10.440000px;}
.wsa9{word-spacing:-3.526760px;}
.wsa7{word-spacing:-3.466985px;}
.ws95{word-spacing:-3.347434px;}
.ws9a{word-spacing:-3.168107px;}
.wsa1{word-spacing:-2.905114px;}
.ws65{word-spacing:-2.821415px;}
.wsae{word-spacing:-2.313331px;}
.ws8a{word-spacing:-2.271473px;}
.ws4c{word-spacing:-2.211697px;}
.ws7d{word-spacing:-2.151922px;}
.ws4a{word-spacing:-2.092146px;}
.ws6e{word-spacing:-1.912819px;}
.wsbb{word-spacing:-1.775347px;}
.wsca{word-spacing:-1.721549px;}
.ws88{word-spacing:-1.721542px;}
.ws52{word-spacing:-1.673717px;}
.ws30{word-spacing:-1.434614px;}
.ws2a{word-spacing:-1.374839px;}
.wsa0{word-spacing:-1.344960px;}
.ws82{word-spacing:-1.195512px;}
.ws80{word-spacing:-1.135736px;}
.ws28{word-spacing:-1.016185px;}
.ws3c{word-spacing:-0.956410px;}
.ws6c{word-spacing:-0.908591px;}
.wsce{word-spacing:-0.860774px;}
.ws6b{word-spacing:-0.860771px;}
.ws81{word-spacing:-0.860406px;}
.ws64{word-spacing:-0.836858px;}
.ws9f{word-spacing:-0.835463px;}
.ws29{word-spacing:-0.657532px;}
.wsa4{word-spacing:-0.645581px;}
.ws20{word-spacing:-0.597756px;}
.wsa5{word-spacing:-0.591782px;}
.ws96{word-spacing:-0.478205px;}
.ws83{word-spacing:-0.468569px;}
.ws47{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.322790px;}
.ws45{word-spacing:-0.298878px;}
.wsaf{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws87{word-spacing:-0.191282px;}
.ws23{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.wsab{word-spacing:-0.107597px;}
.ws73{word-spacing:-0.095641px;}
.ws1d{word-spacing:-0.059776px;}
.ws70{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.wscb{word-spacing:-0.012826px;}
.wsba{word-spacing:-0.011386px;}
.wsb3{word-spacing:-0.010522px;}
.wsc7{word-spacing:-0.009955px;}
.wsac{word-spacing:-0.009667px;}
.wsc6{word-spacing:-0.006902px;}
.wsb0{word-spacing:-0.006682px;}
.wsc1{word-spacing:-0.005414px;}
.ws74{word-spacing:-0.004702px;}
.wsb7{word-spacing:-0.003034px;}
.ws89{word-spacing:-0.002488px;}
.wsb6{word-spacing:-0.002438px;}
.wsa6{word-spacing:-0.000575px;}
.ws4{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.003599px;}
.wsf{word-spacing:0.047821px;}
.ws14{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.wse{word-spacing:0.095641px;}
.ws13{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.wsad{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.ws17{word-spacing:0.215194px;}
.ws2f{word-spacing:0.239102px;}
.wsbc{word-spacing:0.266122px;}
.wsb9{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.ws31{word-spacing:0.358654px;}
.ws4d{word-spacing:0.478205px;}
.ws63{word-spacing:0.537980px;}
.ws4e{word-spacing:0.597756px;}
.ws9c{word-spacing:0.657532px;}
.ws6f{word-spacing:0.717307px;}
.wsb5{word-spacing:0.753178px;}
.ws38{word-spacing:0.777083px;}
.ws2e{word-spacing:0.896634px;}
.ws58{word-spacing:1.016185px;}
.wsb8{word-spacing:1.022170px;}
.ws37{word-spacing:1.075961px;}
.ws99{word-spacing:1.135736px;}
.ws94{word-spacing:1.195512px;}
.wsa2{word-spacing:1.291162px;}
.ws91{word-spacing:1.315063px;}
.wsc5{word-spacing:1.344960px;}
.ws2d{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws2c{word-spacing:1.434614px;}
.wsb2{word-spacing:1.506355px;}
.wsb1{word-spacing:1.515553px;}
.ws62{word-spacing:1.554166px;}
.ws43{word-spacing:1.613941px;}
.ws55{word-spacing:1.673717px;}
.ws32{word-spacing:1.733492px;}
.ws3f{word-spacing:1.793268px;}
.ws60{word-spacing:1.853044px;}
.ws18{word-spacing:2.044339px;}
.ws93{word-spacing:2.092146px;}
.ws2b{word-spacing:2.211697px;}
.ws33{word-spacing:2.271473px;}
.wsaa{word-spacing:2.367130px;}
.ws3{word-spacing:2.509762px;}
.ws21{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wscf{word-spacing:2.582323px;}
.ws90{word-spacing:2.630126px;}
.ws54{word-spacing:2.749678px;}
.ws34{word-spacing:2.809453px;}
.wscd{word-spacing:2.851315px;}
.ws1b{word-spacing:2.868461px;}
.ws3a{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.wsc0{word-spacing:2.905114px;}
.ws76{word-spacing:2.929004px;}
.ws48{word-spacing:2.988780px;}
.ws46{word-spacing:3.048556px;}
.wsc3{word-spacing:3.222307px;}
.ws71{word-spacing:3.227904px;}
.wsb4{word-spacing:3.281702px;}
.ws8d{word-spacing:3.287658px;}
.wsc2{word-spacing:3.335501px;}
.ws98{word-spacing:3.347434px;}
.ws12{word-spacing:3.388661px;}
.ws59{word-spacing:3.407209px;}
.ws36{word-spacing:3.466985px;}
.wsd0{word-spacing:3.496896px;}
.ws61{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wsbf{word-spacing:3.604493px;}
.ws53{word-spacing:3.646312px;}
.ws3e{word-spacing:3.706087px;}
.ws1a{word-spacing:3.819686px;}
.ws5c{word-spacing:3.945190px;}
.ws40{word-spacing:4.004965px;}
.ws5a{word-spacing:4.064741px;}
.ws35{word-spacing:4.124516px;}
.ws7b{word-spacing:4.142477px;}
.ws7c{word-spacing:4.184292px;}
.wsc8{word-spacing:4.303872px;}
.wsc9{word-spacing:4.357670px;}
.ws57{word-spacing:4.423394px;}
.ws51{word-spacing:4.483170px;}
.ws41{word-spacing:4.542946px;}
.ws6d{word-spacing:4.602721px;}
.ws92{word-spacing:4.662497px;}
.wsbd{word-spacing:4.680461px;}
.ws56{word-spacing:4.782048px;}
.ws8c{word-spacing:4.841824px;}
.ws39{word-spacing:5.080926px;}
.ws5d{word-spacing:5.320028px;}
.wsc4{word-spacing:5.326042px;}
.ws9d{word-spacing:5.379840px;}
.ws9{word-spacing:5.481407px;}
.ws42{word-spacing:5.618906px;}
.ws4f{word-spacing:5.798233px;}
.ws75{word-spacing:5.858009px;}
.ws8e{word-spacing:5.977560px;}
.ws97{word-spacing:6.037336px;}
.ws9e{word-spacing:6.402010px;}
.ws3d{word-spacing:6.635092px;}
.ws44{word-spacing:6.694867px;}
.wscc{word-spacing:6.724800px;}
.ws8b{word-spacing:6.874194px;}
.ws49{word-spacing:7.053521px;}
.wsa8{word-spacing:7.292623px;}
.ws5f{word-spacing:7.352399px;}
.ws8f{word-spacing:7.471950px;}
.ws5b{word-spacing:7.830604px;}
.ws7e{word-spacing:7.890379px;}
.ws50{word-spacing:7.950155px;}
.ws9b{word-spacing:8.009930px;}
.ws4b{word-spacing:8.249033px;}
.ws7f{word-spacing:8.428360px;}
.ws7{word-spacing:9.833058px;}
.ws8{word-spacing:11.841512px;}
.wsbe{word-spacing:12.804019px;}
.ws5{word-spacing:15.481836px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.ws68{word-spacing:77.320800px;}
.ws67{word-spacing:93.676800px;}
.ws6a{word-spacing:93.679045px;}
.ws69{word-spacing:93.680555px;}
.ws85{word-spacing:103.023936px;}
.ws66{word-spacing:153.456305px;}
.ws72{word-spacing:190.015200px;}
.ws84{word-spacing:209.943600px;}
.ws86{word-spacing:296.450112px;}
._4{margin-left:-11.943245px;}
._5{margin-left:-7.962163px;}
._8{margin-left:-6.569363px;}
._9{margin-left:-5.254317px;}
._1{margin-left:-3.849538px;}
._14{margin-left:-2.630135px;}
._3{margin-left:-1.464498px;}
._4a{width:1.033738px;}
._50{width:2.905114px;}
._18{width:4.423394px;}
._7{width:11.046559px;}
._0{width:12.971268px;}
._b{width:14.471770px;}
._a{width:16.300915px;}
._4e{width:17.412755px;}
._c{width:18.560448px;}
._f{width:20.562806px;}
._13{width:22.087080px;}
._10{width:23.461919px;}
._2{width:25.314894px;}
._11{width:26.659918px;}
._12{width:28.662396px;}
._17{width:30.186678px;}
._15{width:31.585416px;}
._16{width:32.637478px;}
._4f{width:33.698878px;}
._1b{width:35.088277px;}
._49{width:37.808063px;}
._1a{width:42.440676px;}
._19{width:43.576412px;}
._6{width:54.368762px;}
._4d{width:68.827439px;}
._33{width:81.725405px;}
._2d{width:89.292742px;}
._44{width:91.856467px;}
._4c{width:93.548814px;}
._4b{width:96.537594px;}
._45{width:102.320467px;}
._43{width:104.530291px;}
._20{width:105.635705px;}
._1c{width:130.884982px;}
._41{width:134.539015px;}
._1d{width:142.840132px;}
._40{width:145.823515px;}
._1e{width:152.285528px;}
._46{width:166.442045px;}
._42{width:178.567673px;}
._2c{width:182.166538px;}
._47{width:209.647622px;}
._3d{width:218.313907px;}
._3f{width:220.023821px;}
._30{width:222.909689px;}
._36{width:236.809949px;}
._3b{width:257.312592px;}
._3e{width:260.045760px;}
._39{width:278.890906px;}
._37{width:287.265530px;}
._35{width:302.831194px;}
._3a{width:305.628710px;}
._34{width:314.935834px;}
._38{width:323.973965px;}
._24{width:356.329163px;}
._3c{width:376.479408px;}
._2e{width:673.188458px;}
._25{width:766.582090px;}
._2b{width:794.557141px;}
._27{width:803.356132px;}
._23{width:851.320193px;}
._22{width:860.770732px;}
._d{width:881.989270px;}
._29{width:915.160694px;}
._1f{width:927.737512px;}
._2f{width:939.387798px;}
._28{width:1075.550987px;}
._21{width:1308.341668px;}
._26{width:1429.566889px;}
._2a{width:1455.724757px;}
._32{width:2099.376398px;}
._31{width:2141.993351px;}
._48{width:2513.155616px;}
._e{width:2537.065616px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs12{font-size:36.000000px;}
.fs11{font-size:41.760000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fs10{font-size:48.240000px;}
.fsd{font-size:49.829400px;}
.fsc{font-size:53.798400px;}
.fse{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y15a{bottom:-99.025500px;}
.y159{bottom:-65.365500px;}
.y158{bottom:-31.705500px;}
.y19e{bottom:-12.060000px;}
.y0{bottom:0.000000px;}
.y193{bottom:1.620000px;}
.y191{bottom:1.800000px;}
.y157{bottom:2.134500px;}
.y145{bottom:2.310000px;}
.y162{bottom:2.340000px;}
.y164{bottom:2.520000px;}
.y168{bottom:2.700000px;}
.y178{bottom:6.300000px;}
.y180{bottom:6.660000px;}
.y187{bottom:6.840000px;}
.y17c{bottom:7.200000px;}
.y184{bottom:7.740000px;}
.y38{bottom:9.233944px;}
.y17a{bottom:11.160000px;}
.y17e{bottom:12.600000px;}
.y160{bottom:15.300000px;}
.y15d{bottom:16.740000px;}
.y37{bottom:26.903761px;}
.y15f{bottom:30.105000px;}
.y15c{bottom:30.600000px;}
.y67{bottom:31.890000px;}
.y156{bottom:35.824500px;}
.y5{bottom:66.525004px;}
.y155{bottom:69.664500px;}
.y4{bottom:97.125005px;}
.y154{bottom:103.324500px;}
.y35{bottom:104.646000px;}
.y1ad{bottom:106.093500px;}
.yd9{bottom:116.907000px;}
.yb3{bottom:117.355500px;}
.y1e8{bottom:118.879500px;}
.y9e{bottom:119.596500px;}
.y34{bottom:122.535000px;}
.y66{bottom:124.123500px;}
.y1ac{bottom:124.923000px;}
.y1d3{bottom:130.978500px;}
.y24e{bottom:133.719000px;}
.yd8{bottom:135.736500px;}
.yb2{bottom:136.185000px;}
.y1e7{bottom:136.453500px;}
.y153{bottom:137.164500px;}
.y9d{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y33{bottom:140.422500px;}
.y65{bottom:142.953000px;}
.y1ab{bottom:143.752500px;}
.y21a{bottom:146.047500px;}
.y1d2{bottom:149.808000px;}
.y24d{bottom:150.978000px;}
.yd7{bottom:154.566000px;}
.yb1{bottom:155.013000px;}
.y9c{bottom:157.255500px;}
.y32{bottom:158.310000px;}
.y64{bottom:161.782500px;}
.y1aa{bottom:162.582000px;}
.y1e6{bottom:162.994500px;}
.y219{bottom:163.308000px;}
.y24c{bottom:168.238500px;}
.y1d1{bottom:168.637500px;}
.y152{bottom:170.824500px;}
.yd6{bottom:173.395500px;}
.yb0{bottom:173.842500px;}
.y9b{bottom:176.085000px;}
.y31{bottom:176.199000px;}
.y218{bottom:180.568500px;}
.y63{bottom:180.612000px;}
.y24b{bottom:185.499000px;}
.y1d0{bottom:187.467000px;}
.y1e5{bottom:189.534000px;}
.y102{bottom:192.225000px;}
.yaf{bottom:192.672000px;}
.y30{bottom:194.086500px;}
.y9a{bottom:194.914500px;}
.y1a9{bottom:196.147500px;}
.yd5{bottom:196.707000px;}
.y18{bottom:196.933500px;}
.y217{bottom:197.829000px;}
.y62{bottom:199.441500px;}
.y133{bottom:200.580000px;}
.y24a{bottom:202.759500px;}
.y151{bottom:204.484500px;}
.y1cf{bottom:206.296500px;}
.y1e4{bottom:207.108000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y101{bottom:211.054500px;}
.yae{bottom:211.501500px;}
.y2f{bottom:211.974000px;}
.y99{bottom:213.744000px;}
.y216{bottom:215.088000px;}
.y1a8{bottom:215.380500px;}
.y61{bottom:218.269500px;}
.y132{bottom:219.409500px;}
.y249{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e3{bottom:224.683500px;}
.y1ce{bottom:225.126000px;}
.y2e{bottom:229.863000px;}
.y100{bottom:229.884000px;}
.yad{bottom:230.331000px;}
.y215{bottom:232.348500px;}
.y98{bottom:232.573500px;}
.y1a7{bottom:234.613500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y60{bottom:237.099000px;}
.y248{bottom:237.280500px;}
.y131{bottom:238.239000px;}
.y150{bottom:238.324500px;}
.y1cd{bottom:243.955500px;}
.yff{bottom:248.712000px;}
.yd4{bottom:249.160500px;}
.y214{bottom:249.609000px;}
.y1e2{bottom:251.223000px;}
.y97{bottom:251.403000px;}
.yac{bottom:253.644000px;}
.y247{bottom:254.541000px;}
.y5f{bottom:255.928500px;}
.y146{bottom:257.043000px;}
.y130{bottom:257.068500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1cc{bottom:262.785000px;}
.y18e{bottom:263.707500px;}
.y175{bottom:265.687500px;}
.y213{bottom:266.869500px;}
.yfe{bottom:267.541500px;}
.yd3{bottom:267.990000px;}
.y1e1{bottom:268.797000px;}
.y96{bottom:270.232500px;}
.y246{bottom:271.801500px;}
.y14f{bottom:272.029500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5e{bottom:274.758000px;}
.y12f{bottom:275.898000px;}
.y1cb{bottom:281.613000px;}
.y1a2{bottom:282.247500px;}
.y212{bottom:284.130000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yfd{bottom:286.371000px;}
.yd2{bottom:286.819500px;}
.yab{bottom:287.268000px;}
.y18f{bottom:288.547500px;}
.y95{bottom:289.062000px;}
.y174{bottom:289.807500px;}
.y5d{bottom:293.587500px;}
.y12e{bottom:294.727500px;}
.y1e0{bottom:295.338000px;}
.y2d{bottom:299.892000px;}
.y1ca{bottom:300.442500px;}
.y211{bottom:301.390500px;}
.y1a3{bottom:303.307500px;}
.yfc{bottom:305.200500px;}
.yd1{bottom:305.649000px;}
.y14e{bottom:305.869500px;}
.yaa{bottom:306.097500px;}
.y245{bottom:306.321000px;}
.y94{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y18d{bottom:311.407500px;}
.y5c{bottom:312.417000px;}
.y1df{bottom:312.912000px;}
.y12d{bottom:313.557000px;}
.y176{bottom:313.927500px;}
.y2c{bottom:317.779500px;}
.y210{bottom:318.651000px;}
.y1c9{bottom:319.272000px;}
.y161{bottom:322.747500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y244{bottom:323.581500px;}
.yfb{bottom:324.030000px;}
.yd0{bottom:324.478500px;}
.ya9{bottom:324.927000px;}
.y93{bottom:326.719500px;}
.y1de{bottom:330.486000px;}
.y5b{bottom:331.246500px;}
.y18c{bottom:334.627500px;}
.y2b{bottom:335.667000px;}
.y20f{bottom:335.911500px;}
.y12c{bottom:336.870000px;}
.y172{bottom:336.967500px;}
.y1c8{bottom:338.101500px;}
.y14d{bottom:339.529500px;}
.y243{bottom:340.842000px;}
.y1a1{bottom:342.187500px;}
.yfa{bottom:342.859500px;}
.ycf{bottom:343.308000px;}
.ya8{bottom:343.756500px;}
.y92{bottom:345.549000px;}
.y1dd{bottom:348.060000px;}
.yf{bottom:348.133500px;}
.y5a{bottom:350.076000px;}
.y20e{bottom:353.172000px;}
.y2a{bottom:353.554500px;}
.y242{bottom:358.102500px;}
.y18b{bottom:358.387500px;}
.y1c7{bottom:361.414500px;}
.yf9{bottom:361.689000px;}
.y173{bottom:361.987500px;}
.yce{bottom:362.137500px;}
.ya7{bottom:362.586000px;}
.y1a0{bottom:362.887500px;}
.y91{bottom:364.378500px;}
.y1dc{bottom:365.634000px;}
.y59{bottom:368.905500px;}
.y20d{bottom:370.431000px;}
.y12b{bottom:370.494000px;}
.y14c{bottom:373.189500px;}
.y241{bottom:375.363000px;}
.y29{bottom:380.409000px;}
.yf8{bottom:380.518500px;}
.ycd{bottom:380.967000px;}
.ya6{bottom:381.415500px;}
.y90{bottom:383.208000px;}
.ye{bottom:386.785499px;}
.y20c{bottom:387.691500px;}
.y58{bottom:387.735000px;}
.y12a{bottom:389.323500px;}
.y240{bottom:392.623500px;}
.y1c6{bottom:393.855000px;}
.y28{bottom:398.298000px;}
.yf7{bottom:399.348000px;}
.ycc{bottom:399.796500px;}
.ya5{bottom:400.245000px;}
.y1db{bottom:401.142000px;}
.y8f{bottom:402.037500px;}
.y20b{bottom:404.952000px;}
.y14b{bottom:407.029500px;}
.yd{bottom:408.044999px;}
.y1c5{bottom:408.051000px;}
.y129{bottom:408.153000px;}
.y23f{bottom:409.884000px;}
.y57{bottom:411.048000px;}
.y27{bottom:416.185500px;}
.yf6{bottom:418.177500px;}
.ya4{bottom:419.074500px;}
.y1da{bottom:419.971500px;}
.y8e{bottom:420.867000px;}
.y20a{bottom:422.212500px;}
.y1c4{bottom:422.248500px;}
.ycb{bottom:423.109500px;}
.y128{bottom:426.982500px;}
.y23e{bottom:427.144500px;}
.y1a6{bottom:432.547500px;}
.y26{bottom:434.073000px;}
.yf5{bottom:437.007000px;}
.ya3{bottom:437.904000px;}
.y1d9{bottom:438.801000px;}
.y209{bottom:439.473000px;}
.y8d{bottom:439.696500px;}
.y14a{bottom:440.689500px;}
.y1c3{bottom:441.091500px;}
.y189{bottom:442.087500px;}
.y23d{bottom:444.403500px;}
.y127{bottom:445.812000px;}
.y171{bottom:445.867500px;}
.y25{bottom:451.962000px;}
.ya2{bottom:456.733500px;}
.y1c2{bottom:457.530000px;}
.y1d8{bottom:457.630500px;}
.y8c{bottom:458.526000px;}
.yf4{bottom:460.320000px;}
.y19d{bottom:461.527500px;}
.y23c{bottom:461.664000px;}
.y126{bottom:464.641500px;}
.y188{bottom:466.927500px;}
.y16f{bottom:469.447500px;}
.y24{bottom:469.849500px;}
.y1c1{bottom:473.968500px;}
.y208{bottom:473.994000px;}
.y149{bottom:474.529500px;}
.ya1{bottom:475.563000px;}
.y1d7{bottom:476.458500px;}
.y8b{bottom:477.355500px;}
.y23b{bottom:478.924500px;}
.yf3{bottom:480.493500px;}
.y125{bottom:483.471000px;}
.y19f{bottom:484.927500px;}
.y56{bottom:486.198000px;}
.y23{bottom:487.737000px;}
.y18a{bottom:488.707500px;}
.y207{bottom:491.254500px;}
.y170{bottom:492.307500px;}
.yca{bottom:494.392500px;}
.y1d6{bottom:495.288000px;}
.y8a{bottom:496.185000px;}
.y1c0{bottom:497.610000px;}
.ya0{bottom:498.874500px;}
.y124{bottom:502.299000px;}
.yc{bottom:502.864502px;}
.y22{bottom:505.626000px;}
.y55{bottom:505.654500px;}
.y19a{bottom:506.347500px;}
.y15e{bottom:507.607500px;}
.y148{bottom:508.189500px;}
.y206{bottom:508.513500px;}
.y1be{bottom:508.867500px;}
.yc9{bottom:513.222000px;}
.y23a{bottom:513.445500px;}
.y186{bottom:513.547500px;}
.yf2{bottom:514.117500px;}
.y16c{bottom:514.627500px;}
.y89{bottom:515.014500px;}
.y9f{bottom:519.049500px;}
.y1a5{bottom:520.747500px;}
.yb{bottom:520.864502px;}
.y123{bottom:521.128500px;}
.y1bf{bottom:521.250000px;}
.y198{bottom:524.887500px;}
.y205{bottom:525.774000px;}
.y239{bottom:530.706000px;}
.yc8{bottom:532.051500px;}
.yf1{bottom:532.947000px;}
.y88{bottom:533.844000px;}
.y182{bottom:536.812500px;}
.ya{bottom:538.864499px;}
.y122{bottom:539.958000px;}
.y16b{bottom:540.052500px;}
.y147{bottom:542.059500px;}
.y204{bottom:543.034500px;}
.y54{bottom:543.045000px;}
.y19b{bottom:545.632500px;}
.y238{bottom:547.966500px;}
.yc7{bottom:550.881000px;}
.yf0{bottom:551.776500px;}
.y87{bottom:552.673500px;}
.y1bd{bottom:552.870000px;}
.y9{bottom:556.864499px;}
.y185{bottom:560.032500px;}
.y203{bottom:560.295000px;}
.y53{bottom:562.501500px;}
.y197{bottom:562.912500px;}
.y16e{bottom:563.452500px;}
.y237{bottom:565.227000px;}
.yc6{bottom:569.710500px;}
.yef{bottom:570.606000px;}
.y86{bottom:571.503000px;}
.y1d5{bottom:575.089500px;}
.y121{bottom:575.608500px;}
.y202{bottom:577.555500px;}
.y52{bottom:581.959500px;}
.y236{bottom:582.487500px;}
.y199{bottom:582.532500px;}
.y181{bottom:583.432500px;}
.y16a{bottom:587.212500px;}
.yc5{bottom:588.538500px;}
.yee{bottom:589.435500px;}
.y11f{bottom:589.806000px;}
.y1bc{bottom:589.884000px;}
.y85{bottom:590.332500px;}
.y120{bottom:594.145500px;}
.y201{bottom:594.816000px;}
.y235{bottom:599.746500px;}
.y51{bottom:601.416000px;}
.y183{bottom:603.772500px;}
.y19c{bottom:606.652500px;}
.yc4{bottom:607.368000px;}
.yed{bottom:608.265000px;}
.y1bb{bottom:608.713500px;}
.y84{bottom:609.162000px;}
.y16d{bottom:610.432500px;}
.y11e{bottom:610.999500px;}
.y200{bottom:612.076500px;}
.y234{bottom:617.007000px;}
.y50{bottom:620.872500px;}
.y1a4{bottom:622.492500px;}
.y11d{bottom:625.197000px;}
.yc3{bottom:626.197500px;}
.yec{bottom:627.094500px;}
.y1ba{bottom:627.543000px;}
.y83{bottom:627.991500px;}
.y1ff{bottom:633.819000px;}
.y233{bottom:634.267500px;}
.y4f{bottom:640.330500px;}
.yc2{bottom:645.027000px;}
.y8{bottom:645.510000px;}
.yeb{bottom:645.924000px;}
.y1b9{bottom:646.372500px;}
.y11c{bottom:646.596000px;}
.y82{bottom:646.821000px;}
.y232{bottom:651.528000px;}
.y4e{bottom:659.787000px;}
.y11b{bottom:660.792000px;}
.yc1{bottom:663.856500px;}
.yea{bottom:664.753500px;}
.y1b8{bottom:665.202000px;}
.y81{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1fe{bottom:667.443000px;}
.y17b{bottom:668.032500px;}
.y231{bottom:668.788500px;}
.y167{bottom:670.732500px;}
.y11a{bottom:674.989500px;}
.y4d{bottom:679.243500px;}
.yc0{bottom:682.686000px;}
.ye9{bottom:683.583000px;}
.y1b7{bottom:684.031500px;}
.y80{bottom:684.480000px;}
.y230{bottom:686.049000px;}
.y1fd{bottom:686.272500px;}
.y196{bottom:687.112500px;}
.y119{bottom:689.185500px;}
.y17f{bottom:693.232500px;}
.y169{bottom:695.032500px;}
.y4c{bottom:698.701500px;}
.ybf{bottom:701.515500px;}
.ye8{bottom:702.412500px;}
.y1b6{bottom:702.861000px;}
.y7f{bottom:703.309500px;}
.y118{bottom:703.383000px;}
.y1fc{bottom:705.102000px;}
.y195{bottom:708.532500px;}
.y15b{bottom:709.612500px;}
.y179{bottom:711.052500px;}
.y4b{bottom:718.158000px;}
.y165{bottom:719.692500px;}
.ybe{bottom:720.345000px;}
.y22f{bottom:720.570000px;}
.ye7{bottom:721.242000px;}
.y1b5{bottom:721.690500px;}
.y7e{bottom:722.139000px;}
.y1fb{bottom:723.931500px;}
.y144{bottom:724.402500px;}
.y117{bottom:724.782000px;}
.y6{bottom:726.298500px;}
.y194{bottom:726.352500px;}
.y17d{bottom:734.632500px;}
.y4a{bottom:737.616000px;}
.y22e{bottom:737.829000px;}
.ybd{bottom:739.174500px;}
.ye6{bottom:740.071500px;}
.y1b4{bottom:740.520000px;}
.y7d{bottom:740.968500px;}
.y166{bottom:741.832500px;}
.y1fa{bottom:742.761000px;}
.y116{bottom:746.181000px;}
.y192{bottom:746.512500px;}
.y3{bottom:752.599495px;}
.y22d{bottom:755.089500px;}
.y49{bottom:757.072500px;}
.ybc{bottom:758.004000px;}
.ye5{bottom:758.901000px;}
.y1b3{bottom:759.349500px;}
.y7c{bottom:759.798000px;}
.y115{bottom:760.378500px;}
.y1f9{bottom:761.590500px;}
.y177{bottom:762.712500px;}
.y163{bottom:765.232500px;}
.y190{bottom:765.772500px;}
.y22c{bottom:772.350000px;}
.y114{bottom:774.574500px;}
.y48{bottom:776.529000px;}
.ybb{bottom:776.833500px;}
.ye4{bottom:777.730500px;}
.y1b2{bottom:778.179000px;}
.y7b{bottom:778.627500px;}
.y1f8{bottom:780.420000px;}
.y251{bottom:785.053500px;}
.y113{bottom:788.772000px;}
.y22b{bottom:789.610500px;}
.yba{bottom:795.663000px;}
.y47{bottom:795.987000px;}
.ye3{bottom:796.560000px;}
.y1b1{bottom:797.008500px;}
.y7a{bottom:797.457000px;}
.y1f7{bottom:799.249500px;}
.y1d4{bottom:801.490500px;}
.y250{bottom:802.312500px;}
.y112{bottom:802.968000px;}
.y22a{bottom:806.871000px;}
.y143{bottom:810.301500px;}
.yb9{bottom:814.492500px;}
.ye2{bottom:815.389500px;}
.y1b0{bottom:815.838000px;}
.y79{bottom:816.286500px;}
.y1f6{bottom:818.079000px;}
.y24f{bottom:819.573000px;}
.y229{bottom:824.131500px;}
.y111{bottom:824.367000px;}
.y142{bottom:829.131000px;}
.yb8{bottom:833.322000px;}
.ye1{bottom:834.219000px;}
.y46{bottom:834.571500px;}
.y78{bottom:835.114500px;}
.y1f5{bottom:836.908500px;}
.y1af{bottom:839.149500px;}
.y228{bottom:841.392000px;}
.y110{bottom:845.766000px;}
.y141{bottom:847.960500px;}
.y45{bottom:850.711500px;}
.yb7{bottom:852.151500px;}
.y77{bottom:853.944000px;}
.y1f4{bottom:855.738000px;}
.ye0{bottom:857.532000px;}
.y227{bottom:858.652500px;}
.y10f{bottom:859.963500px;}
.y140{bottom:866.790000px;}
.yb6{bottom:870.981000px;}
.y44{bottom:871.191000px;}
.y76{bottom:872.773500px;}
.y10e{bottom:874.159500px;}
.y1f3{bottom:874.567500px;}
.y226{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y43{bottom:882.990000px;}
.y13f{bottom:885.619500px;}
.y10d{bottom:888.357000px;}
.ydf{bottom:891.156000px;}
.y75{bottom:891.603000px;}
.y225{bottom:893.172000px;}
.y1f2{bottom:893.397000px;}
.yb5{bottom:894.294000px;}
.y10c{bottom:902.553000px;}
.y42{bottom:903.469500px;}
.y13e{bottom:904.449000px;}
.yde{bottom:909.984000px;}
.y74{bottom:910.432500px;}
.y1f1{bottom:912.226500px;}
.yb4{bottom:914.467500px;}
.y41{bottom:915.270000px;}
.y10b{bottom:916.750500px;}
.y13d{bottom:923.278500px;}
.y224{bottom:927.693000px;}
.ydd{bottom:928.813500px;}
.y73{bottom:929.262000px;}
.y10a{bottom:930.946500px;}
.y1f0{bottom:931.056000px;}
.y40{bottom:931.410000px;}
.y1ae{bottom:934.687500px;}
.y3f{bottom:935.749500px;}
.y13c{bottom:942.108000px;}
.y223{bottom:944.953500px;}
.y109{bottom:945.144000px;}
.y3e{bottom:947.548500px;}
.ydc{bottom:947.643000px;}
.y72{bottom:948.091500px;}
.y1ef{bottom:949.885500px;}
.y3d{bottom:951.888000px;}
.y222{bottom:962.214000px;}
.y13b{bottom:965.421000px;}
.ydb{bottom:966.472500px;}
.y108{bottom:966.543000px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.y1ee{bottom:968.715000px;}
.y221{bottom:979.474500px;}
.y70{bottom:985.750500px;}
.y1ed{bottom:987.544500px;}
.y107{bottom:988.149000px;}
.yda{bottom:989.785500px;}
.y105{bottom:991.443000px;}
.y3c{bottom:996.565500px;}
.y220{bottom:996.735000px;}
.y13a{bottom:997.860000px;}
.y6f{bottom:1004.580000px;}
.y104{bottom:1005.639000px;}
.y1ec{bottom:1006.374000px;}
.y106{bottom:1009.755000px;}
.y139{bottom:1012.057500px;}
.y21f{bottom:1013.995500px;}
.y6e{bottom:1023.409500px;}
.y1eb{bottom:1025.203500px;}
.y138{bottom:1030.900500px;}
.y21e{bottom:1031.254500px;}
.y3b{bottom:1036.485000px;}
.y6d{bottom:1042.239000px;}
.y103{bottom:1042.794000px;}
.y137{bottom:1047.339000px;}
.y1ea{bottom:1048.515000px;}
.y6c{bottom:1061.068500px;}
.y136{bottom:1063.777500px;}
.y3a{bottom:1064.728500px;}
.y21d{bottom:1065.775500px;}
.y6b{bottom:1079.898000px;}
.y1e9{bottom:1080.795000px;}
.y21c{bottom:1083.036000px;}
.y135{bottom:1087.419000px;}
.y39{bottom:1092.972000px;}
.y6a{bottom:1098.727500px;}
.y21b{bottom:1100.296500px;}
.y69{bottom:1117.557000px;}
.y134{bottom:1119.037500px;}
.y36{bottom:1136.460000px;}
.y68{bottom:1177.662000px;}
.h24{height:12.240000px;}
.h26{height:12.420000px;}
.h2f{height:12.960000px;}
.h31{height:12.996000px;}
.h30{height:13.140000px;}
.h23{height:13.680000px;}
.h27{height:16.020000px;}
.h2b{height:16.380000px;}
.h2e{height:16.560000px;}
.h2d{height:16.596000px;}
.h29{height:16.920000px;}
.h2c{height:17.460000px;}
.h1d{height:18.720000px;}
.h28{height:21.060000px;}
.h1b{height:22.124254px;}
.h2a{height:22.320000px;}
.h10{height:26.110157px;}
.h33{height:27.655250px;}
.h17{height:27.974981px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h32{height:33.072749px;}
.h18{height:34.574294px;}
.h11{height:34.813397px;}
.h16{height:35.052500px;}
.h35{height:38.896243px;}
.h1c{height:39.057638px;}
.h12{height:39.165235px;}
.h13{height:39.434227px;}
.h34{height:39.706243px;}
.h25{height:40.985156px;}
.h22{height:41.436000px;}
.h20{height:41.940000px;}
.h19{height:42.460829px;}
.h14{height:43.217759px;}
.h1a{height:43.468157px;}
.h15{height:43.516637px;}
.hd{height:43.815515px;}
.h36{height:44.473046px;}
.h6{height:45.900000px;}
.h21{height:47.344922px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.541601px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h1e{height:65.884219px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h1f{height:529.618500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w23{width:42.832500px;}
.w12{width:43.200000px;}
.w10{width:43.560000px;}
.w1a{width:44.856000px;}
.w19{width:45.036000px;}
.w1c{width:45.576000px;}
.w17{width:45.756000px;}
.w18{width:46.296000px;}
.w20{width:47.016000px;}
.w13{width:47.700000px;}
.w1e{width:47.736000px;}
.w1d{width:48.456000px;}
.w21{width:48.996000px;}
.w22{width:49.716000px;}
.w1b{width:50.436000px;}
.w11{width:50.580000px;}
.w14{width:51.120000px;}
.w15{width:51.300000px;}
.wb{width:52.380000px;}
.wa{width:52.560000px;}
.w1f{width:53.136000px;}
.w16{width:54.576000px;}
.w24{width:54.756000px;}
.w5{width:57.420000px;}
.wc{width:58.500000px;}
.wf{width:59.400000px;}
.we{width:59.940000px;}
.wd{width:68.220000px;}
.w9{width:79.920000px;}
.w8{width:99.360000px;}
.w7{width:109.980000px;}
.w4{width:197.527766px;}
.w6{width:408.315750px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x24{left:-7.185750px;}
.x0{left:0.000000px;}
.x23{left:10.875000px;}
.x2b{left:18.900000px;}
.x28{left:24.300000px;}
.x2d{left:26.280000px;}
.x2a{left:30.600000px;}
.x27{left:43.200000px;}
.x25{left:45.908250px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x14{left:62.541000px;}
.x53{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x30{left:259.144500px;}
.x31{left:260.584500px;}
.x9{left:269.746500px;}
.x20{left:270.777000px;}
.x51{left:278.056500px;}
.x4e{left:279.738000px;}
.xb{left:281.479500px;}
.x52{left:284.184000px;}
.x2e{left:312.418500px;}
.x2f{left:314.578500px;}
.x21{left:318.193500px;}
.x39{left:347.698500px;}
.x35{left:348.778500px;}
.x34{left:350.218500px;}
.x37{left:351.658500px;}
.x32{left:354.718500px;}
.x33{left:355.978500px;}
.x36{left:357.418500px;}
.x38{left:358.858500px;}
.x49{left:371.778000px;}
.x45{left:375.382500px;}
.x4a{left:384.069000px;}
.x46{left:387.673500px;}
.x4b{left:402.133500px;}
.x12{left:406.566000px;}
.x26{left:410.023500px;}
.x29{left:413.083500px;}
.x13{left:415.183500px;}
.x2c{left:422.983500px;}
.x22{left:435.148500px;}
.x3{left:454.959000px;}
.x1f{left:471.625500px;}
.x3f{left:498.301500px;}
.x40{left:506.919000px;}
.xc{left:514.693500px;}
.xd{left:528.601500px;}
.x3c{left:551.143500px;}
.x3a{left:560.323500px;}
.x16{left:572.193000px;}
.x50{left:586.968000px;}
.x3b{left:615.073500px;}
.x4c{left:636.712500px;}
.x4d{left:649.005000px;}
.x3d{left:656.898000px;}
.x15{left:661.627500px;}
.x3e{left:665.515500px;}
.x19{left:668.113500px;}
.x4f{left:676.608000px;}
.x41{left:679.099500px;}
.x42{left:687.717000px;}
.x1e{left:698.649000px;}
.x1a{left:705.610500px;}
.x1d{left:709.699500px;}
.x1b{left:715.444500px;}
.x47{left:723.562500px;}
.x48{left:735.853500px;}
.xe{left:738.619500px;}
.xf{left:747.237000px;}
.x1c{left:757.029000px;}
.x17{left:762.774000px;}
.x43{left:763.899000px;}
.x44{left:770.325000px;}
.x10{left:792.030000px;}
.x11{left:800.647500px;}
.x18{left:804.358500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v5{vertical-align:-4.330667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.429333pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls33{letter-spacing:0.001408pt;}
.ls31{letter-spacing:0.002242pt;}
.ls32{letter-spacing:0.002478pt;}
.ls1f{letter-spacing:0.003012pt;}
.ls12{letter-spacing:0.003288pt;}
.ls30{letter-spacing:0.003914pt;}
.ls1e{letter-spacing:0.135680pt;}
.ls21{letter-spacing:0.158933pt;}
.ls22{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.570745pt;}
.ls2a{letter-spacing:0.576078pt;}
.ls3{letter-spacing:2.665203pt;}
.ls2b{letter-spacing:10.623733pt;}
.lsc{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:10.629067pt;}
.ls7{letter-spacing:11.752843pt;}
.ls8{letter-spacing:12.158167pt;}
.ls27{letter-spacing:12.252114pt;}
.ls26{letter-spacing:12.257556pt;}
.lsf{letter-spacing:12.539593pt;}
.ls1a{letter-spacing:12.551151pt;}
.ls28{letter-spacing:12.698373pt;}
.lsd{letter-spacing:12.752128pt;}
.lse{letter-spacing:12.805262pt;}
.ls14{letter-spacing:13.009204pt;}
.lsa{letter-spacing:13.070931pt;}
.ls9{letter-spacing:13.124065pt;}
.ls23{letter-spacing:13.143783pt;}
.lsb{letter-spacing:13.177199pt;}
.ls19{letter-spacing:13.266234pt;}
.ls13{letter-spacing:13.282060pt;}
.ls11{letter-spacing:13.283467pt;}
.ls2{letter-spacing:13.283733pt;}
.ls1d{letter-spacing:13.363733pt;}
.ls2c{letter-spacing:13.389734pt;}
.ls29{letter-spacing:13.457482pt;}
.ls25{letter-spacing:13.462726pt;}
.ls10{letter-spacing:13.602270pt;}
.ls2f{letter-spacing:15.080800pt;}
.ls2d{letter-spacing:15.515089pt;}
.ls16{letter-spacing:15.780758pt;}
.ls15{letter-spacing:15.827838pt;}
.ls20{letter-spacing:17.019995pt;}
.ls2e{letter-spacing:17.799845pt;}
.ls24{letter-spacing:20.748099pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.ls18{letter-spacing:621.905067pt;}
.ls17{letter-spacing:836.774400pt;}
.wsc{word-spacing:-20.194365pt;}
.ws5e{word-spacing:-13.283467pt;}
.wsd{word-spacing:-12.760670pt;}
.wsa3{word-spacing:-11.955200pt;}
.ws79{word-spacing:-11.040000pt;}
.ws7a{word-spacing:-10.720000pt;}
.ws27{word-spacing:-10.626800pt;}
.ws78{word-spacing:-9.438933pt;}
.ws2{word-spacing:-9.298400pt;}
.ws77{word-spacing:-9.280000pt;}
.wsa9{word-spacing:-3.134898pt;}
.wsa7{word-spacing:-3.081764pt;}
.ws95{word-spacing:-2.975497pt;}
.ws9a{word-spacing:-2.816095pt;}
.wsa1{word-spacing:-2.582323pt;}
.ws65{word-spacing:-2.507925pt;}
.wsae{word-spacing:-2.056294pt;}
.ws8a{word-spacing:-2.019087pt;}
.ws4c{word-spacing:-1.965953pt;}
.ws7d{word-spacing:-1.912819pt;}
.ws4a{word-spacing:-1.859685pt;}
.ws6e{word-spacing:-1.700284pt;}
.wsbb{word-spacing:-1.578086pt;}
.wsca{word-spacing:-1.530266pt;}
.ws88{word-spacing:-1.530259pt;}
.ws52{word-spacing:-1.487748pt;}
.ws30{word-spacing:-1.275213pt;}
.ws2a{word-spacing:-1.222079pt;}
.wsa0{word-spacing:-1.195520pt;}
.ws82{word-spacing:-1.062677pt;}
.ws80{word-spacing:-1.009543pt;}
.ws28{word-spacing:-0.903276pt;}
.ws3c{word-spacing:-0.850142pt;}
.ws6c{word-spacing:-0.807637pt;}
.wsce{word-spacing:-0.765133pt;}
.ws6b{word-spacing:-0.765130pt;}
.ws81{word-spacing:-0.764805pt;}
.ws64{word-spacing:-0.743874pt;}
.ws9f{word-spacing:-0.742634pt;}
.ws29{word-spacing:-0.584473pt;}
.wsa4{word-spacing:-0.573850pt;}
.ws20{word-spacing:-0.531339pt;}
.wsa5{word-spacing:-0.526029pt;}
.ws96{word-spacing:-0.425071pt;}
.ws83{word-spacing:-0.416506pt;}
.ws47{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.286925pt;}
.ws45{word-spacing:-0.265669pt;}
.wsaf{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws87{word-spacing:-0.170029pt;}
.ws23{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.wsab{word-spacing:-0.095642pt;}
.ws73{word-spacing:-0.085014pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws70{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.042507pt;}
.wscb{word-spacing:-0.011401pt;}
.wsba{word-spacing:-0.010121pt;}
.wsb3{word-spacing:-0.009353pt;}
.wsc7{word-spacing:-0.008849pt;}
.wsac{word-spacing:-0.008593pt;}
.wsc6{word-spacing:-0.006135pt;}
.wsb0{word-spacing:-0.005939pt;}
.wsc1{word-spacing:-0.004813pt;}
.ws74{word-spacing:-0.004179pt;}
.wsb7{word-spacing:-0.002697pt;}
.ws89{word-spacing:-0.002212pt;}
.wsb6{word-spacing:-0.002167pt;}
.wsa6{word-spacing:-0.000511pt;}
.ws4{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.003199pt;}
.wsf{word-spacing:0.042507pt;}
.ws14{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.wse{word-spacing:0.085014pt;}
.ws13{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.wsad{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.ws17{word-spacing:0.191283pt;}
.ws2f{word-spacing:0.212535pt;}
.wsbc{word-spacing:0.236553pt;}
.wsb9{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.ws31{word-spacing:0.318803pt;}
.ws4d{word-spacing:0.425071pt;}
.ws63{word-spacing:0.478205pt;}
.ws4e{word-spacing:0.531339pt;}
.ws9c{word-spacing:0.584473pt;}
.ws6f{word-spacing:0.637606pt;}
.wsb5{word-spacing:0.669491pt;}
.ws38{word-spacing:0.690740pt;}
.ws2e{word-spacing:0.797008pt;}
.ws58{word-spacing:0.903276pt;}
.wsb8{word-spacing:0.908595pt;}
.ws37{word-spacing:0.956410pt;}
.ws99{word-spacing:1.009543pt;}
.ws94{word-spacing:1.062677pt;}
.wsa2{word-spacing:1.147699pt;}
.ws91{word-spacing:1.168945pt;}
.wsc5{word-spacing:1.195520pt;}
.ws2d{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws2c{word-spacing:1.275213pt;}
.wsb2{word-spacing:1.338982pt;}
.wsb1{word-spacing:1.347158pt;}
.ws62{word-spacing:1.381481pt;}
.ws43{word-spacing:1.434614pt;}
.ws55{word-spacing:1.487748pt;}
.ws32{word-spacing:1.540882pt;}
.ws3f{word-spacing:1.594016pt;}
.ws60{word-spacing:1.647150pt;}
.ws18{word-spacing:1.817190pt;}
.ws93{word-spacing:1.859685pt;}
.ws2b{word-spacing:1.965953pt;}
.ws33{word-spacing:2.019087pt;}
.wsaa{word-spacing:2.104115pt;}
.ws3{word-spacing:2.230899pt;}
.ws21{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wscf{word-spacing:2.295398pt;}
.ws90{word-spacing:2.337890pt;}
.ws54{word-spacing:2.444158pt;}
.ws34{word-spacing:2.497292pt;}
.wscd{word-spacing:2.534502pt;}
.ws1b{word-spacing:2.549743pt;}
.ws3a{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.wsc0{word-spacing:2.582323pt;}
.ws76{word-spacing:2.603559pt;}
.ws48{word-spacing:2.656693pt;}
.ws46{word-spacing:2.709827pt;}
.wsc3{word-spacing:2.864273pt;}
.ws71{word-spacing:2.869248pt;}
.wsb4{word-spacing:2.917069pt;}
.ws8d{word-spacing:2.922363pt;}
.wsc2{word-spacing:2.964890pt;}
.ws98{word-spacing:2.975497pt;}
.ws12{word-spacing:3.012143pt;}
.ws59{word-spacing:3.028630pt;}
.ws36{word-spacing:3.081764pt;}
.wsd0{word-spacing:3.108352pt;}
.ws61{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wsbf{word-spacing:3.203994pt;}
.ws53{word-spacing:3.241166pt;}
.ws3e{word-spacing:3.294300pt;}
.ws1a{word-spacing:3.395277pt;}
.ws5c{word-spacing:3.506835pt;}
.ws40{word-spacing:3.559969pt;}
.ws5a{word-spacing:3.613103pt;}
.ws35{word-spacing:3.666237pt;}
.ws7b{word-spacing:3.682202pt;}
.ws7c{word-spacing:3.719371pt;}
.wsc8{word-spacing:3.825664pt;}
.wsc9{word-spacing:3.873485pt;}
.ws57{word-spacing:3.931906pt;}
.ws51{word-spacing:3.985040pt;}
.ws41{word-spacing:4.038174pt;}
.ws6d{word-spacing:4.091308pt;}
.ws92{word-spacing:4.144442pt;}
.wsbd{word-spacing:4.160410pt;}
.ws56{word-spacing:4.250709pt;}
.ws8c{word-spacing:4.303843pt;}
.ws39{word-spacing:4.516379pt;}
.ws5d{word-spacing:4.728914pt;}
.wsc4{word-spacing:4.734259pt;}
.ws9d{word-spacing:4.782080pt;}
.ws9{word-spacing:4.872362pt;}
.ws42{word-spacing:4.994583pt;}
.ws4f{word-spacing:5.153985pt;}
.ws75{word-spacing:5.207119pt;}
.ws8e{word-spacing:5.313387pt;}
.ws97{word-spacing:5.366521pt;}
.ws9e{word-spacing:5.690675pt;}
.ws3d{word-spacing:5.897859pt;}
.ws44{word-spacing:5.950993pt;}
.wscc{word-spacing:5.977600pt;}
.ws8b{word-spacing:6.110395pt;}
.ws49{word-spacing:6.269796pt;}
.wsa8{word-spacing:6.482332pt;}
.ws5f{word-spacing:6.535466pt;}
.ws8f{word-spacing:6.641733pt;}
.ws5b{word-spacing:6.960537pt;}
.ws7e{word-spacing:7.013670pt;}
.ws50{word-spacing:7.066804pt;}
.ws9b{word-spacing:7.119938pt;}
.ws4b{word-spacing:7.332474pt;}
.ws7f{word-spacing:7.491875pt;}
.ws7{word-spacing:8.740496pt;}
.ws8{word-spacing:10.525789pt;}
.wsbe{word-spacing:11.381350pt;}
.ws5{word-spacing:13.761632pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.ws68{word-spacing:68.729600pt;}
.ws67{word-spacing:83.268267pt;}
.ws6a{word-spacing:83.270262pt;}
.ws69{word-spacing:83.271605pt;}
.ws85{word-spacing:91.576832pt;}
.ws66{word-spacing:136.405605pt;}
.ws72{word-spacing:168.902400pt;}
.ws84{word-spacing:186.616533pt;}
.ws86{word-spacing:263.511211pt;}
._4{margin-left:-10.616218pt;}
._5{margin-left:-7.077478pt;}
._8{margin-left:-5.839434pt;}
._9{margin-left:-4.670504pt;}
._1{margin-left:-3.421811pt;}
._14{margin-left:-2.337898pt;}
._3{margin-left:-1.301776pt;}
._4a{width:0.918878pt;}
._50{width:2.582323pt;}
._18{width:3.931906pt;}
._7{width:9.819163pt;}
._0{width:11.530016pt;}
._b{width:12.863795pt;}
._a{width:14.489702pt;}
._4e{width:15.478005pt;}
._c{width:16.498176pt;}
._f{width:18.278050pt;}
._13{width:19.632960pt;}
._10{width:20.855039pt;}
._2{width:22.502128pt;}
._11{width:23.697705pt;}
._12{width:25.477685pt;}
._17{width:26.832603pt;}
._15{width:28.075925pt;}
._16{width:29.011091pt;}
._4f{width:29.954558pt;}
._1b{width:31.189580pt;}
._49{width:33.607167pt;}
._1a{width:37.725045pt;}
._19{width:38.734589pt;}
._6{width:48.327789pt;}
._4d{width:61.179946pt;}
._33{width:72.644805pt;}
._2d{width:79.371326pt;}
._44{width:81.650193pt;}
._4c{width:83.154501pt;}
._4b{width:85.811195pt;}
._45{width:90.951526pt;}
._43{width:92.915814pt;}
._20{width:93.898405pt;}
._1c{width:116.342206pt;}
._41{width:119.590235pt;}
._1d{width:126.969006pt;}
._40{width:129.620902pt;}
._1e{width:135.364914pt;}
._46{width:147.948484pt;}
._42{width:158.726821pt;}
._2c{width:161.925811pt;}
._47{width:186.353442pt;}
._3d{width:194.056806pt;}
._3f{width:195.576730pt;}
._30{width:198.141946pt;}
._36{width:210.497732pt;}
._3b{width:228.722304pt;}
._3e{width:231.151787pt;}
._39{width:247.903027pt;}
._37{width:255.347138pt;}
._35{width:269.183283pt;}
._3a{width:271.669965pt;}
._34{width:279.942963pt;}
._38{width:287.976858pt;}
._24{width:316.737034pt;}
._3c{width:334.648363pt;}
._2e{width:598.389741pt;}
._25{width:681.406302pt;}
._2b{width:706.273014pt;}
._27{width:714.094339pt;}
._23{width:756.729061pt;}
._22{width:765.129539pt;}
._d{width:783.990462pt;}
._29{width:813.476173pt;}
._1f{width:824.655566pt;}
._2f{width:835.011376pt;}
._28{width:956.045322pt;}
._21{width:1162.970371pt;}
._26{width:1270.726123pt;}
._2a{width:1293.977562pt;}
._32{width:1866.112354pt;}
._31{width:1903.994090pt;}
._48{width:2233.916103pt;}
._e{width:2255.169437pt;}
.fsa{font-size:31.880533pt;}
.fs12{font-size:32.000000pt;}
.fs11{font-size:37.120000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fs10{font-size:42.880000pt;}
.fsd{font-size:44.292800pt;}
.fsc{font-size:47.820800pt;}
.fse{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y15a{bottom:-88.022667pt;}
.y159{bottom:-58.102667pt;}
.y158{bottom:-28.182667pt;}
.y19e{bottom:-10.720000pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:1.440000pt;}
.y191{bottom:1.600000pt;}
.y157{bottom:1.897333pt;}
.y145{bottom:2.053333pt;}
.y162{bottom:2.080000pt;}
.y164{bottom:2.240000pt;}
.y168{bottom:2.400000pt;}
.y178{bottom:5.600000pt;}
.y180{bottom:5.920000pt;}
.y187{bottom:6.080000pt;}
.y17c{bottom:6.400000pt;}
.y184{bottom:6.880000pt;}
.y38{bottom:8.207950pt;}
.y17a{bottom:9.920000pt;}
.y17e{bottom:11.200000pt;}
.y160{bottom:13.600000pt;}
.y15d{bottom:14.880000pt;}
.y37{bottom:23.914454pt;}
.y15f{bottom:26.760000pt;}
.y15c{bottom:27.200000pt;}
.y67{bottom:28.346667pt;}
.y156{bottom:31.844000pt;}
.y5{bottom:59.133337pt;}
.y155{bottom:61.924000pt;}
.y4{bottom:86.333337pt;}
.y154{bottom:91.844000pt;}
.y35{bottom:93.018667pt;}
.y1ad{bottom:94.305333pt;}
.yd9{bottom:103.917333pt;}
.yb3{bottom:104.316000pt;}
.y1e8{bottom:105.670667pt;}
.y9e{bottom:106.308000pt;}
.y34{bottom:108.920000pt;}
.y66{bottom:110.332000pt;}
.y1ac{bottom:111.042667pt;}
.y1d3{bottom:116.425333pt;}
.y24e{bottom:118.861333pt;}
.yd8{bottom:120.654667pt;}
.yb2{bottom:121.053333pt;}
.y1e7{bottom:121.292000pt;}
.y153{bottom:121.924000pt;}
.y9d{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y33{bottom:124.820000pt;}
.y65{bottom:127.069333pt;}
.y1ab{bottom:127.780000pt;}
.y21a{bottom:129.820000pt;}
.y1d2{bottom:133.162667pt;}
.y24d{bottom:134.202667pt;}
.yd7{bottom:137.392000pt;}
.yb1{bottom:137.789333pt;}
.y9c{bottom:139.782667pt;}
.y32{bottom:140.720000pt;}
.y64{bottom:143.806667pt;}
.y1aa{bottom:144.517333pt;}
.y1e6{bottom:144.884000pt;}
.y219{bottom:145.162667pt;}
.y24c{bottom:149.545333pt;}
.y1d1{bottom:149.900000pt;}
.y152{bottom:151.844000pt;}
.yd6{bottom:154.129333pt;}
.yb0{bottom:154.526667pt;}
.y9b{bottom:156.520000pt;}
.y31{bottom:156.621333pt;}
.y218{bottom:160.505333pt;}
.y63{bottom:160.544000pt;}
.y24b{bottom:164.888000pt;}
.y1d0{bottom:166.637333pt;}
.y1e5{bottom:168.474667pt;}
.y102{bottom:170.866667pt;}
.yaf{bottom:171.264000pt;}
.y30{bottom:172.521333pt;}
.y9a{bottom:173.257333pt;}
.y1a9{bottom:174.353333pt;}
.yd5{bottom:174.850667pt;}
.y18{bottom:175.052000pt;}
.y217{bottom:175.848000pt;}
.y62{bottom:177.281333pt;}
.y133{bottom:178.293333pt;}
.y24a{bottom:180.230667pt;}
.y151{bottom:181.764000pt;}
.y1cf{bottom:183.374667pt;}
.y1e4{bottom:184.096000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y101{bottom:187.604000pt;}
.yae{bottom:188.001333pt;}
.y2f{bottom:188.421333pt;}
.y99{bottom:189.994667pt;}
.y216{bottom:191.189333pt;}
.y1a8{bottom:191.449333pt;}
.y61{bottom:194.017333pt;}
.y132{bottom:195.030667pt;}
.y249{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e3{bottom:199.718667pt;}
.y1ce{bottom:200.112000pt;}
.y2e{bottom:204.322667pt;}
.y100{bottom:204.341333pt;}
.yad{bottom:204.738667pt;}
.y215{bottom:206.532000pt;}
.y98{bottom:206.732000pt;}
.y1a7{bottom:208.545333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y60{bottom:210.754667pt;}
.y248{bottom:210.916000pt;}
.y131{bottom:211.768000pt;}
.y150{bottom:211.844000pt;}
.y1cd{bottom:216.849333pt;}
.yff{bottom:221.077333pt;}
.yd4{bottom:221.476000pt;}
.y214{bottom:221.874667pt;}
.y1e2{bottom:223.309333pt;}
.y97{bottom:223.469333pt;}
.yac{bottom:225.461333pt;}
.y247{bottom:226.258667pt;}
.y5f{bottom:227.492000pt;}
.y146{bottom:228.482667pt;}
.y130{bottom:228.505333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1cc{bottom:233.586667pt;}
.y18e{bottom:234.406667pt;}
.y175{bottom:236.166667pt;}
.y213{bottom:237.217333pt;}
.yfe{bottom:237.814667pt;}
.yd3{bottom:238.213333pt;}
.y1e1{bottom:238.930667pt;}
.y96{bottom:240.206667pt;}
.y246{bottom:241.601333pt;}
.y14f{bottom:241.804000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5e{bottom:244.229333pt;}
.y12f{bottom:245.242667pt;}
.y1cb{bottom:250.322667pt;}
.y1a2{bottom:250.886667pt;}
.y212{bottom:252.560000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yfd{bottom:254.552000pt;}
.yd2{bottom:254.950667pt;}
.yab{bottom:255.349333pt;}
.y18f{bottom:256.486667pt;}
.y95{bottom:256.944000pt;}
.y174{bottom:257.606667pt;}
.y5d{bottom:260.966667pt;}
.y12e{bottom:261.980000pt;}
.y1e0{bottom:262.522667pt;}
.y2d{bottom:266.570667pt;}
.y1ca{bottom:267.060000pt;}
.y211{bottom:267.902667pt;}
.y1a3{bottom:269.606667pt;}
.yfc{bottom:271.289333pt;}
.yd1{bottom:271.688000pt;}
.y14e{bottom:271.884000pt;}
.yaa{bottom:272.086667pt;}
.y245{bottom:272.285333pt;}
.y94{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y18d{bottom:276.806667pt;}
.y5c{bottom:277.704000pt;}
.y1df{bottom:278.144000pt;}
.y12d{bottom:278.717333pt;}
.y176{bottom:279.046667pt;}
.y2c{bottom:282.470667pt;}
.y210{bottom:283.245333pt;}
.y1c9{bottom:283.797333pt;}
.y161{bottom:286.886667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y244{bottom:287.628000pt;}
.yfb{bottom:288.026667pt;}
.yd0{bottom:288.425333pt;}
.ya9{bottom:288.824000pt;}
.y93{bottom:290.417333pt;}
.y1de{bottom:293.765333pt;}
.y5b{bottom:294.441333pt;}
.y18c{bottom:297.446667pt;}
.y2b{bottom:298.370667pt;}
.y20f{bottom:298.588000pt;}
.y12c{bottom:299.440000pt;}
.y172{bottom:299.526667pt;}
.y1c8{bottom:300.534667pt;}
.y14d{bottom:301.804000pt;}
.y243{bottom:302.970667pt;}
.y1a1{bottom:304.166667pt;}
.yfa{bottom:304.764000pt;}
.ycf{bottom:305.162667pt;}
.ya8{bottom:305.561333pt;}
.y92{bottom:307.154667pt;}
.y1dd{bottom:309.386667pt;}
.yf{bottom:309.452000pt;}
.y5a{bottom:311.178667pt;}
.y20e{bottom:313.930667pt;}
.y2a{bottom:314.270667pt;}
.y242{bottom:318.313333pt;}
.y18b{bottom:318.566667pt;}
.y1c7{bottom:321.257333pt;}
.yf9{bottom:321.501333pt;}
.y173{bottom:321.766667pt;}
.yce{bottom:321.900000pt;}
.ya7{bottom:322.298667pt;}
.y1a0{bottom:322.566667pt;}
.y91{bottom:323.892000pt;}
.y1dc{bottom:325.008000pt;}
.y59{bottom:327.916000pt;}
.y20d{bottom:329.272000pt;}
.y12b{bottom:329.328000pt;}
.y14c{bottom:331.724000pt;}
.y241{bottom:333.656000pt;}
.y29{bottom:338.141333pt;}
.yf8{bottom:338.238667pt;}
.ycd{bottom:338.637333pt;}
.ya6{bottom:339.036000pt;}
.y90{bottom:340.629333pt;}
.ye{bottom:343.809333pt;}
.y20c{bottom:344.614667pt;}
.y58{bottom:344.653333pt;}
.y12a{bottom:346.065333pt;}
.y240{bottom:348.998667pt;}
.y1c6{bottom:350.093333pt;}
.y28{bottom:354.042667pt;}
.yf7{bottom:354.976000pt;}
.ycc{bottom:355.374667pt;}
.ya5{bottom:355.773333pt;}
.y1db{bottom:356.570667pt;}
.y8f{bottom:357.366667pt;}
.y20b{bottom:359.957333pt;}
.y14b{bottom:361.804000pt;}
.yd{bottom:362.706666pt;}
.y1c5{bottom:362.712000pt;}
.y129{bottom:362.802667pt;}
.y23f{bottom:364.341333pt;}
.y57{bottom:365.376000pt;}
.y27{bottom:369.942667pt;}
.yf6{bottom:371.713333pt;}
.ya4{bottom:372.510667pt;}
.y1da{bottom:373.308000pt;}
.y8e{bottom:374.104000pt;}
.y20a{bottom:375.300000pt;}
.y1c4{bottom:375.332000pt;}
.ycb{bottom:376.097333pt;}
.y128{bottom:379.540000pt;}
.y23e{bottom:379.684000pt;}
.y1a6{bottom:384.486667pt;}
.y26{bottom:385.842667pt;}
.yf5{bottom:388.450667pt;}
.ya3{bottom:389.248000pt;}
.y1d9{bottom:390.045333pt;}
.y209{bottom:390.642667pt;}
.y8d{bottom:390.841333pt;}
.y14a{bottom:391.724000pt;}
.y1c3{bottom:392.081333pt;}
.y189{bottom:392.966667pt;}
.y23d{bottom:395.025333pt;}
.y127{bottom:396.277333pt;}
.y171{bottom:396.326667pt;}
.y25{bottom:401.744000pt;}
.ya2{bottom:405.985333pt;}
.y1c2{bottom:406.693333pt;}
.y1d8{bottom:406.782667pt;}
.y8c{bottom:407.578667pt;}
.yf4{bottom:409.173333pt;}
.y19d{bottom:410.246667pt;}
.y23c{bottom:410.368000pt;}
.y126{bottom:413.014667pt;}
.y188{bottom:415.046667pt;}
.y16f{bottom:417.286667pt;}
.y24{bottom:417.644000pt;}
.y1c1{bottom:421.305333pt;}
.y208{bottom:421.328000pt;}
.y149{bottom:421.804000pt;}
.ya1{bottom:422.722667pt;}
.y1d7{bottom:423.518667pt;}
.y8b{bottom:424.316000pt;}
.y23b{bottom:425.710667pt;}
.yf3{bottom:427.105333pt;}
.y125{bottom:429.752000pt;}
.y19f{bottom:431.046667pt;}
.y56{bottom:432.176000pt;}
.y23{bottom:433.544000pt;}
.y18a{bottom:434.406667pt;}
.y207{bottom:436.670667pt;}
.y170{bottom:437.606667pt;}
.yca{bottom:439.460000pt;}
.y1d6{bottom:440.256000pt;}
.y8a{bottom:441.053333pt;}
.y1c0{bottom:442.320000pt;}
.ya0{bottom:443.444000pt;}
.y124{bottom:446.488000pt;}
.yc{bottom:446.990669pt;}
.y22{bottom:449.445333pt;}
.y55{bottom:449.470667pt;}
.y19a{bottom:450.086667pt;}
.y15e{bottom:451.206667pt;}
.y148{bottom:451.724000pt;}
.y206{bottom:452.012000pt;}
.y1be{bottom:452.326667pt;}
.yc9{bottom:456.197333pt;}
.y23a{bottom:456.396000pt;}
.y186{bottom:456.486667pt;}
.yf2{bottom:456.993333pt;}
.y16c{bottom:457.446667pt;}
.y89{bottom:457.790667pt;}
.y9f{bottom:461.377333pt;}
.y1a5{bottom:462.886667pt;}
.yb{bottom:462.990669pt;}
.y123{bottom:463.225333pt;}
.y1bf{bottom:463.333333pt;}
.y198{bottom:466.566667pt;}
.y205{bottom:467.354667pt;}
.y239{bottom:471.738667pt;}
.yc8{bottom:472.934667pt;}
.yf1{bottom:473.730667pt;}
.y88{bottom:474.528000pt;}
.y182{bottom:477.166667pt;}
.ya{bottom:478.990666pt;}
.y122{bottom:479.962667pt;}
.y16b{bottom:480.046667pt;}
.y147{bottom:481.830667pt;}
.y204{bottom:482.697333pt;}
.y54{bottom:482.706667pt;}
.y19b{bottom:485.006667pt;}
.y238{bottom:487.081333pt;}
.yc7{bottom:489.672000pt;}
.yf0{bottom:490.468000pt;}
.y87{bottom:491.265333pt;}
.y1bd{bottom:491.440000pt;}
.y9{bottom:494.990666pt;}
.y185{bottom:497.806667pt;}
.y203{bottom:498.040000pt;}
.y53{bottom:500.001333pt;}
.y197{bottom:500.366667pt;}
.y16e{bottom:500.846667pt;}
.y237{bottom:502.424000pt;}
.yc6{bottom:506.409333pt;}
.yef{bottom:507.205333pt;}
.y86{bottom:508.002667pt;}
.y1d5{bottom:511.190667pt;}
.y121{bottom:511.652000pt;}
.y202{bottom:513.382667pt;}
.y52{bottom:517.297333pt;}
.y236{bottom:517.766667pt;}
.y199{bottom:517.806667pt;}
.y181{bottom:518.606667pt;}
.y16a{bottom:521.966667pt;}
.yc5{bottom:523.145333pt;}
.yee{bottom:523.942667pt;}
.y11f{bottom:524.272000pt;}
.y1bc{bottom:524.341333pt;}
.y85{bottom:524.740000pt;}
.y120{bottom:528.129333pt;}
.y201{bottom:528.725333pt;}
.y235{bottom:533.108000pt;}
.y51{bottom:534.592000pt;}
.y183{bottom:536.686667pt;}
.y19c{bottom:539.246667pt;}
.yc4{bottom:539.882667pt;}
.yed{bottom:540.680000pt;}
.y1bb{bottom:541.078667pt;}
.y84{bottom:541.477333pt;}
.y16d{bottom:542.606667pt;}
.y11e{bottom:543.110667pt;}
.y200{bottom:544.068000pt;}
.y234{bottom:548.450667pt;}
.y50{bottom:551.886667pt;}
.y1a4{bottom:553.326667pt;}
.y11d{bottom:555.730667pt;}
.yc3{bottom:556.620000pt;}
.yec{bottom:557.417333pt;}
.y1ba{bottom:557.816000pt;}
.y83{bottom:558.214667pt;}
.y1ff{bottom:563.394667pt;}
.y233{bottom:563.793333pt;}
.y4f{bottom:569.182667pt;}
.yc2{bottom:573.357333pt;}
.y8{bottom:573.786667pt;}
.yeb{bottom:574.154667pt;}
.y1b9{bottom:574.553333pt;}
.y11c{bottom:574.752000pt;}
.y82{bottom:574.952000pt;}
.y232{bottom:579.136000pt;}
.y4e{bottom:586.477333pt;}
.y11b{bottom:587.370667pt;}
.yc1{bottom:590.094667pt;}
.yea{bottom:590.892000pt;}
.y1b8{bottom:591.290667pt;}
.y81{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1fe{bottom:593.282667pt;}
.y17b{bottom:593.806667pt;}
.y231{bottom:594.478667pt;}
.y167{bottom:596.206667pt;}
.y11a{bottom:599.990667pt;}
.y4d{bottom:603.772000pt;}
.yc0{bottom:606.832000pt;}
.ye9{bottom:607.629333pt;}
.y1b7{bottom:608.028000pt;}
.y80{bottom:608.426667pt;}
.y230{bottom:609.821333pt;}
.y1fd{bottom:610.020000pt;}
.y196{bottom:610.766667pt;}
.y119{bottom:612.609333pt;}
.y17f{bottom:616.206667pt;}
.y169{bottom:617.806667pt;}
.y4c{bottom:621.068000pt;}
.ybf{bottom:623.569333pt;}
.ye8{bottom:624.366667pt;}
.y1b6{bottom:624.765333pt;}
.y7f{bottom:625.164000pt;}
.y118{bottom:625.229333pt;}
.y1fc{bottom:626.757333pt;}
.y195{bottom:629.806667pt;}
.y15b{bottom:630.766667pt;}
.y179{bottom:632.046667pt;}
.y4b{bottom:638.362667pt;}
.y165{bottom:639.726667pt;}
.ybe{bottom:640.306667pt;}
.y22f{bottom:640.506667pt;}
.ye7{bottom:641.104000pt;}
.y1b5{bottom:641.502667pt;}
.y7e{bottom:641.901333pt;}
.y1fb{bottom:643.494667pt;}
.y144{bottom:643.913333pt;}
.y117{bottom:644.250667pt;}
.y6{bottom:645.598667pt;}
.y194{bottom:645.646667pt;}
.y17d{bottom:653.006667pt;}
.y4a{bottom:655.658667pt;}
.y22e{bottom:655.848000pt;}
.ybd{bottom:657.044000pt;}
.ye6{bottom:657.841333pt;}
.y1b4{bottom:658.240000pt;}
.y7d{bottom:658.638667pt;}
.y166{bottom:659.406667pt;}
.y1fa{bottom:660.232000pt;}
.y116{bottom:663.272000pt;}
.y192{bottom:663.566667pt;}
.y3{bottom:668.977329pt;}
.y22d{bottom:671.190667pt;}
.y49{bottom:672.953333pt;}
.ybc{bottom:673.781333pt;}
.ye5{bottom:674.578667pt;}
.y1b3{bottom:674.977333pt;}
.y7c{bottom:675.376000pt;}
.y115{bottom:675.892000pt;}
.y1f9{bottom:676.969333pt;}
.y177{bottom:677.966667pt;}
.y163{bottom:680.206667pt;}
.y190{bottom:680.686667pt;}
.y22c{bottom:686.533333pt;}
.y114{bottom:688.510667pt;}
.y48{bottom:690.248000pt;}
.ybb{bottom:690.518667pt;}
.ye4{bottom:691.316000pt;}
.y1b2{bottom:691.714667pt;}
.y7b{bottom:692.113333pt;}
.y1f8{bottom:693.706667pt;}
.y251{bottom:697.825333pt;}
.y113{bottom:701.130667pt;}
.y22b{bottom:701.876000pt;}
.yba{bottom:707.256000pt;}
.y47{bottom:707.544000pt;}
.ye3{bottom:708.053333pt;}
.y1b1{bottom:708.452000pt;}
.y7a{bottom:708.850667pt;}
.y1f7{bottom:710.444000pt;}
.y1d4{bottom:712.436000pt;}
.y250{bottom:713.166667pt;}
.y112{bottom:713.749333pt;}
.y22a{bottom:717.218667pt;}
.y143{bottom:720.268000pt;}
.yb9{bottom:723.993333pt;}
.ye2{bottom:724.790667pt;}
.y1b0{bottom:725.189333pt;}
.y79{bottom:725.588000pt;}
.y1f6{bottom:727.181333pt;}
.y24f{bottom:728.509333pt;}
.y229{bottom:732.561333pt;}
.y111{bottom:732.770667pt;}
.y142{bottom:737.005333pt;}
.yb8{bottom:740.730667pt;}
.ye1{bottom:741.528000pt;}
.y46{bottom:741.841333pt;}
.y78{bottom:742.324000pt;}
.y1f5{bottom:743.918667pt;}
.y1af{bottom:745.910667pt;}
.y228{bottom:747.904000pt;}
.y110{bottom:751.792000pt;}
.y141{bottom:753.742667pt;}
.y45{bottom:756.188000pt;}
.yb7{bottom:757.468000pt;}
.y77{bottom:759.061333pt;}
.y1f4{bottom:760.656000pt;}
.ye0{bottom:762.250667pt;}
.y227{bottom:763.246667pt;}
.y10f{bottom:764.412000pt;}
.y140{bottom:770.480000pt;}
.yb6{bottom:774.205333pt;}
.y44{bottom:774.392000pt;}
.y76{bottom:775.798667pt;}
.y10e{bottom:777.030667pt;}
.y1f3{bottom:777.393333pt;}
.y226{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y43{bottom:784.880000pt;}
.y13f{bottom:787.217333pt;}
.y10d{bottom:789.650667pt;}
.ydf{bottom:792.138667pt;}
.y75{bottom:792.536000pt;}
.y225{bottom:793.930667pt;}
.y1f2{bottom:794.130667pt;}
.yb5{bottom:794.928000pt;}
.y10c{bottom:802.269333pt;}
.y42{bottom:803.084000pt;}
.y13e{bottom:803.954667pt;}
.yde{bottom:808.874667pt;}
.y74{bottom:809.273333pt;}
.y1f1{bottom:810.868000pt;}
.yb4{bottom:812.860000pt;}
.y41{bottom:813.573333pt;}
.y10b{bottom:814.889333pt;}
.y13d{bottom:820.692000pt;}
.y224{bottom:824.616000pt;}
.ydd{bottom:825.612000pt;}
.y73{bottom:826.010667pt;}
.y10a{bottom:827.508000pt;}
.y1f0{bottom:827.605333pt;}
.y40{bottom:827.920000pt;}
.y1ae{bottom:830.833333pt;}
.y3f{bottom:831.777333pt;}
.y13c{bottom:837.429333pt;}
.y223{bottom:839.958667pt;}
.y109{bottom:840.128000pt;}
.y3e{bottom:842.265333pt;}
.ydc{bottom:842.349333pt;}
.y72{bottom:842.748000pt;}
.y1ef{bottom:844.342667pt;}
.y3d{bottom:846.122667pt;}
.y222{bottom:855.301333pt;}
.y13b{bottom:858.152000pt;}
.ydb{bottom:859.086667pt;}
.y108{bottom:859.149333pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.y1ee{bottom:861.080000pt;}
.y221{bottom:870.644000pt;}
.y70{bottom:876.222667pt;}
.y1ed{bottom:877.817333pt;}
.y107{bottom:878.354667pt;}
.yda{bottom:879.809333pt;}
.y105{bottom:881.282667pt;}
.y3c{bottom:885.836000pt;}
.y220{bottom:885.986667pt;}
.y13a{bottom:886.986667pt;}
.y6f{bottom:892.960000pt;}
.y104{bottom:893.901333pt;}
.y1ec{bottom:894.554667pt;}
.y106{bottom:897.560000pt;}
.y139{bottom:899.606667pt;}
.y21f{bottom:901.329333pt;}
.y6e{bottom:909.697333pt;}
.y1eb{bottom:911.292000pt;}
.y138{bottom:916.356000pt;}
.y21e{bottom:916.670667pt;}
.y3b{bottom:921.320000pt;}
.y6d{bottom:926.434667pt;}
.y103{bottom:926.928000pt;}
.y137{bottom:930.968000pt;}
.y1ea{bottom:932.013333pt;}
.y6c{bottom:943.172000pt;}
.y136{bottom:945.580000pt;}
.y3a{bottom:946.425333pt;}
.y21d{bottom:947.356000pt;}
.y6b{bottom:959.909333pt;}
.y1e9{bottom:960.706667pt;}
.y21c{bottom:962.698667pt;}
.y135{bottom:966.594667pt;}
.y39{bottom:971.530667pt;}
.y6a{bottom:976.646667pt;}
.y21b{bottom:978.041333pt;}
.y69{bottom:993.384000pt;}
.y134{bottom:994.700000pt;}
.y36{bottom:1010.186667pt;}
.y68{bottom:1046.810667pt;}
.h24{height:10.880000pt;}
.h26{height:11.040000pt;}
.h2f{height:11.520000pt;}
.h31{height:11.552000pt;}
.h30{height:11.680000pt;}
.h23{height:12.160000pt;}
.h27{height:14.240000pt;}
.h2b{height:14.560000pt;}
.h2e{height:14.720000pt;}
.h2d{height:14.752000pt;}
.h29{height:15.040000pt;}
.h2c{height:15.520000pt;}
.h1d{height:16.640000pt;}
.h28{height:18.720000pt;}
.h1b{height:19.666003pt;}
.h2a{height:19.840000pt;}
.h10{height:23.209028pt;}
.h33{height:24.582445pt;}
.h17{height:24.866650pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h32{height:29.397999pt;}
.h18{height:30.732706pt;}
.h11{height:30.945242pt;}
.h16{height:31.157778pt;}
.h35{height:34.574438pt;}
.h1c{height:34.717901pt;}
.h12{height:34.813542pt;}
.h13{height:35.052646pt;}
.h34{height:35.294438pt;}
.h25{height:36.431250pt;}
.h22{height:36.832000pt;}
.h20{height:37.280000pt;}
.h19{height:37.742959pt;}
.h14{height:38.415786pt;}
.h1a{height:38.638362pt;}
.h15{height:38.681455pt;}
.hd{height:38.947124pt;}
.h36{height:39.531597pt;}
.h6{height:40.800000pt;}
.h21{height:42.084375pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.481423pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h1e{height:58.563750pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h1f{height:470.772000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w23{width:38.073333pt;}
.w12{width:38.400000pt;}
.w10{width:38.720000pt;}
.w1a{width:39.872000pt;}
.w19{width:40.032000pt;}
.w1c{width:40.512000pt;}
.w17{width:40.672000pt;}
.w18{width:41.152000pt;}
.w20{width:41.792000pt;}
.w13{width:42.400000pt;}
.w1e{width:42.432000pt;}
.w1d{width:43.072000pt;}
.w21{width:43.552000pt;}
.w22{width:44.192000pt;}
.w1b{width:44.832000pt;}
.w11{width:44.960000pt;}
.w14{width:45.440000pt;}
.w15{width:45.600000pt;}
.wb{width:46.560000pt;}
.wa{width:46.720000pt;}
.w1f{width:47.232000pt;}
.w16{width:48.512000pt;}
.w24{width:48.672000pt;}
.w5{width:51.040000pt;}
.wc{width:52.000000pt;}
.wf{width:52.800000pt;}
.we{width:53.280000pt;}
.wd{width:60.640000pt;}
.w9{width:71.040000pt;}
.w8{width:88.320000pt;}
.w7{width:97.760000pt;}
.w4{width:175.580236pt;}
.w6{width:362.947333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x24{left:-6.387333pt;}
.x0{left:0.000000pt;}
.x23{left:9.666667pt;}
.x2b{left:16.800000pt;}
.x28{left:21.600000pt;}
.x2d{left:23.360000pt;}
.x2a{left:27.200000pt;}
.x27{left:38.400000pt;}
.x25{left:40.807333pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x14{left:55.592000pt;}
.x53{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x30{left:230.350667pt;}
.x31{left:231.630667pt;}
.x9{left:239.774667pt;}
.x20{left:240.690667pt;}
.x51{left:247.161333pt;}
.x4e{left:248.656000pt;}
.xb{left:250.204000pt;}
.x52{left:252.608000pt;}
.x2e{left:277.705333pt;}
.x2f{left:279.625333pt;}
.x21{left:282.838667pt;}
.x39{left:309.065333pt;}
.x35{left:310.025333pt;}
.x34{left:311.305333pt;}
.x37{left:312.585333pt;}
.x32{left:315.305333pt;}
.x33{left:316.425333pt;}
.x36{left:317.705333pt;}
.x38{left:318.985333pt;}
.x49{left:330.469333pt;}
.x45{left:333.673333pt;}
.x4a{left:341.394667pt;}
.x46{left:344.598667pt;}
.x4b{left:357.452000pt;}
.x12{left:361.392000pt;}
.x26{left:364.465333pt;}
.x29{left:367.185333pt;}
.x13{left:369.052000pt;}
.x2c{left:375.985333pt;}
.x22{left:386.798667pt;}
.x3{left:404.408000pt;}
.x1f{left:419.222667pt;}
.x3f{left:442.934667pt;}
.x40{left:450.594667pt;}
.xc{left:457.505333pt;}
.xd{left:469.868000pt;}
.x3c{left:489.905333pt;}
.x3a{left:498.065333pt;}
.x16{left:508.616000pt;}
.x50{left:521.749333pt;}
.x3b{left:546.732000pt;}
.x4c{left:565.966667pt;}
.x4d{left:576.893333pt;}
.x3d{left:583.909333pt;}
.x15{left:588.113333pt;}
.x3e{left:591.569333pt;}
.x19{left:593.878667pt;}
.x4f{left:601.429333pt;}
.x41{left:603.644000pt;}
.x42{left:611.304000pt;}
.x1e{left:621.021333pt;}
.x1a{left:627.209333pt;}
.x1d{left:630.844000pt;}
.x1b{left:635.950667pt;}
.x47{left:643.166667pt;}
.x48{left:654.092000pt;}
.xe{left:656.550667pt;}
.xf{left:664.210667pt;}
.x1c{left:672.914667pt;}
.x17{left:678.021333pt;}
.x43{left:679.021333pt;}
.x44{left:684.733333pt;}
.x10{left:704.026667pt;}
.x11{left:711.686667pt;}
.x18{left:714.985333pt;}
}




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