
    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_004e3ed82b4ee89919d65ffd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5d316d2bba1b9a64a617c30a.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_3f9c3469123e8d21e8877201.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_9309d0b8fd04cebbee7d8761.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_4d46070eb08217f3cd2ffa26.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_bb5f92baed6f1335c8ba9e62.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_23d9dff0c7f469b4d0275e65.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_ad62a8efc5a28d6056328c35.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_27c9d5055486e67c9e956efd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854000;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_c12f89f9adcd5ee25ac5c354.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5d26ed2a3d7728aeef5d976.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_0ec3a603da149ee7cdb110f5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_626895e83eec2dbb84776773.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_821c5f3f5aaff723b055ff3e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_be648f9273f1ce5d9f3dc1bd.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_a7511be034240f0c76035be9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0159cec1be5a7257b7f8a1b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.755205;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_d4dac803f454d2e105f0ae2f.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_666d7a0476b7d70cdafde8b9.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_9d66a333a2c715ca02186a81.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d473c9d480b59df617b0a11f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9681615ea15903e8fe32ece4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8052c6e3d1afaee580f7f21b.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_fe46f9b5edc38a7f592a0357.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.735186;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_8ac011966a88a307e8c0cce8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_bb6cacd8ead34578551d73a0.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.m7{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);}
.m5{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);}
.m4{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);}
.m11{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);}
.m13{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);}
.m1f{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);}
.m8{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);}
.mc{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);}
.m9{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);}
.md{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);}
.me{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);}
.mb{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);}
.m3{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);}
.m2{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);}
.m14{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);}
.m18{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);}
.m1c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.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);}
.ma{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);}
.m20{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);}
.m15{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);}
.mf{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);}
.m1b{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);}
.m19{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);}
.m1a{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);}
.m16{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);}
.m12{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);}
.m10{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);}
.m1d{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);}
.m1e{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);}
.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);}
.m6{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);}
.vc{vertical-align:-53.046000px;}
.v1{vertical-align:-25.104000px;}
.v2{vertical-align:-22.854000px;}
.v9{vertical-align:-18.366000px;}
.ve{vertical-align:-15.144000px;}
.v3{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.784000px;}
.v10{vertical-align:14.778000px;}
.v5{vertical-align:16.176000px;}
.v11{vertical-align:18.750000px;}
.v8{vertical-align:21.690000px;}
.va{vertical-align:23.754000px;}
.v4{vertical-align:27.030000px;}
.v7{vertical-align:43.206000px;}
.v13{vertical-align:48.576000px;}
.v12{vertical-align:58.140000px;}
.vf{vertical-align:67.770000px;}
.vd{vertical-align:73.686000px;}
.vb{vertical-align:82.782000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000065px;}
.ls66{letter-spacing:0.001050px;}
.ls15{letter-spacing:0.001576px;}
.ls5{letter-spacing:0.001590px;}
.ls41{letter-spacing:0.001593px;}
.ls43{letter-spacing:0.002012px;}
.ls4{letter-spacing:0.002137px;}
.ls7{letter-spacing:0.002147px;}
.ls55{letter-spacing:0.002338px;}
.ls34{letter-spacing:0.002400px;}
.ls30{letter-spacing:0.002613px;}
.ls63{letter-spacing:0.002698px;}
.ls44{letter-spacing:0.002712px;}
.ls2b{letter-spacing:0.003239px;}
.ls53{letter-spacing:0.003241px;}
.ls23{letter-spacing:0.003637px;}
.ls5e{letter-spacing:0.004338px;}
.ls2d{letter-spacing:0.005221px;}
.ls58{letter-spacing:0.006711px;}
.ls4b{letter-spacing:0.009730px;}
.ls48{letter-spacing:0.011221px;}
.ls49{letter-spacing:0.015730px;}
.lsd{letter-spacing:0.017313px;}
.lse{letter-spacing:0.031228px;}
.ls18{letter-spacing:0.298878px;}
.ls14{letter-spacing:0.327273px;}
.ls4d{letter-spacing:1.659241px;}
.ls29{letter-spacing:1.661781px;}
.ls3e{letter-spacing:1.819576px;}
.ls1e{letter-spacing:1.820137px;}
.ls22{letter-spacing:1.832729px;}
.ls5d{letter-spacing:1.837529px;}
.ls3f{letter-spacing:2.984915px;}
.ls54{letter-spacing:2.986362px;}
.lsa{letter-spacing:2.986472px;}
.ls1a{letter-spacing:2.987197px;}
.lsb{letter-spacing:2.989739px;}
.ls19{letter-spacing:2.992362px;}
.ls11{letter-spacing:2.992472px;}
.ls4f{letter-spacing:2.993197px;}
.ls12{letter-spacing:2.995739px;}
.ls4e{letter-spacing:5.914362px;}
.ls5f{letter-spacing:5.974168px;}
.ls3c{letter-spacing:5.978521px;}
.ls31{letter-spacing:5.980168px;}
.ls36{letter-spacing:6.545460px;}
.ls1f{letter-spacing:6.715739px;}
.ls47{letter-spacing:7.003642px;}
.ls2c{letter-spacing:7.069097px;}
.ls3a{letter-spacing:7.777639px;}
.ls64{letter-spacing:8.854059px;}
.ls5a{letter-spacing:9.092147px;}
.ls37{letter-spacing:10.865464px;}
.ls45{letter-spacing:10.910012px;}
.ls35{letter-spacing:10.930918px;}
.ls2f{letter-spacing:13.894472px;}
.ls62{letter-spacing:13.897509px;}
.ls21{letter-spacing:14.530921px;}
.ls51{letter-spacing:16.557841px;}
.ls50{letter-spacing:16.617617px;}
.ls20{letter-spacing:17.530472px;}
.ls4a{letter-spacing:17.536472px;}
.ls33{letter-spacing:18.179412px;}
.ls60{letter-spacing:18.182012px;}
.ls9{letter-spacing:18.196379px;}
.ls39{letter-spacing:19.243652px;}
.ls6{letter-spacing:20.945472px;}
.ls10{letter-spacing:21.166472px;}
.ls8{letter-spacing:21.172472px;}
.ls2{letter-spacing:21.419468px;}
.ls1d{letter-spacing:21.796382px;}
.ls42{letter-spacing:22.254564px;}
.ls61{letter-spacing:22.889412px;}
.ls56{letter-spacing:22.914710px;}
.ls59{letter-spacing:24.802472px;}
.lsc{letter-spacing:24.805739px;}
.ls13{letter-spacing:24.808472px;}
.ls3{letter-spacing:29.389115px;}
.ls57{letter-spacing:35.869121px;}
.ls1b{letter-spacing:228.880772px;}
.ls52{letter-spacing:250.399988px;}
.ls3d{letter-spacing:265.782710px;}
.ls0{letter-spacing:349.381819px;}
.ls28{letter-spacing:357.697190px;}
.ls17{letter-spacing:368.819197px;}
.ls16{letter-spacing:383.753197px;}
.ls27{letter-spacing:426.521197px;}
.ls2a{letter-spacing:495.929197px;}
.ls26{letter-spacing:512.603197px;}
.ls32{letter-spacing:607.091415px;}
.ls4c{letter-spacing:655.593274px;}
.ls65{letter-spacing:757.767904px;}
.ls24{letter-spacing:801.818850px;}
.ls38{letter-spacing:836.444333px;}
.ls67{letter-spacing:878.924369px;}
.ls5b{letter-spacing:915.709854px;}
.ls2e{letter-spacing:943.200786px;}
.ls3b{letter-spacing:998.313559px;}
.ls1c{letter-spacing:1001.062652px;}
.ls25{letter-spacing:1008.328113px;}
.ls46{letter-spacing:1019.586304px;}
.ls40{letter-spacing:1022.924489px;}
.ls5c{letter-spacing:1045.870472px;}
.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;}
}
.ws37{word-spacing:-65.454600px;}
.ws53{word-spacing:-47.324343px;}
.ws4b{word-spacing:-34.370970px;}
.ws32{word-spacing:-32.727300px;}
.ws91{word-spacing:-30.551309px;}
.ws81{word-spacing:-29.887800px;}
.ws17{word-spacing:-27.646998px;}
.ws39{word-spacing:-19.701835px;}
.ws42{word-spacing:-18.183288px;}
.ws3a{word-spacing:-17.541833px;}
.ws6a{word-spacing:-17.018196px;}
.ws20{word-spacing:-16.821832px;}
.ws58{word-spacing:-16.605662px;}
.ws65{word-spacing:-16.298195px;}
.ws0{word-spacing:-16.139475px;}
.ws60{word-spacing:-15.316376px;}
.ws2a{word-spacing:-14.989103px;}
.ws34{word-spacing:-14.111859px;}
.ws72{word-spacing:-13.810921px;}
.ws2b{word-spacing:-13.752011px;}
.ws74{word-spacing:-13.614557px;}
.ws31{word-spacing:-13.549102px;}
.ws3{word-spacing:-13.449600px;}
.ws47{word-spacing:-13.352738px;}
.ws46{word-spacing:-13.287284px;}
.ws67{word-spacing:-12.436374px;}
.ws3e{word-spacing:-12.240010px;}
.ws3f{word-spacing:-12.174556px;}
.ws66{word-spacing:-11.978192px;}
.ws2c{word-spacing:-11.847283px;}
.ws48{word-spacing:-11.781828px;}
.ws70{word-spacing:-11.585464px;}
.ws57{word-spacing:-11.520010px;}
.ws2f{word-spacing:-11.476915px;}
.ws5f{word-spacing:-11.417140px;}
.ws1e{word-spacing:-11.389100px;}
.ws76{word-spacing:-11.323646px;}
.ws4c{word-spacing:-11.258191px;}
.ws68{word-spacing:-11.192737px;}
.ws5e{word-spacing:-11.127282px;}
.ws7b{word-spacing:-11.118262px;}
.ws21{word-spacing:-11.061827px;}
.ws3c{word-spacing:-10.996373px;}
.ws19{word-spacing:-10.930918px;}
.ws1a{word-spacing:-10.865464px;}
.ws51{word-spacing:-10.800009px;}
.ws49{word-spacing:-10.734554px;}
.ws2d{word-spacing:-10.669100px;}
.ws88{word-spacing:-10.646034px;}
.ws43{word-spacing:-10.603645px;}
.ws9{word-spacing:-10.582145px;}
.ws44{word-spacing:-10.538191px;}
.ws30{word-spacing:-10.472736px;}
.ws29{word-spacing:-10.407281px;}
.ws8d{word-spacing:-10.400954px;}
.ws22{word-spacing:-10.341827px;}
.ws7f{word-spacing:-10.281403px;}
.ws6f{word-spacing:-10.210918px;}
.ws7c{word-spacing:-10.167830px;}
.ws2e{word-spacing:-10.145463px;}
.ws6d{word-spacing:-10.080008px;}
.ws4{word-spacing:-9.982525px;}
.ws5b{word-spacing:-9.949099px;}
.ws6{word-spacing:-9.936564px;}
.ws13{word-spacing:-9.922750px;}
.ws82{word-spacing:-9.803198px;}
.ws8b{word-spacing:-9.743423px;}
.ws89{word-spacing:-9.683647px;}
.ws14{word-spacing:-9.623872px;}
.ws80{word-spacing:-9.510298px;}
.ws8e{word-spacing:-9.450522px;}
.ws16{word-spacing:-9.444545px;}
.ws64{word-spacing:-9.425462px;}
.wsa{word-spacing:-9.247945px;}
.ws6c{word-spacing:-9.229099px;}
.ws8c{word-spacing:-9.211420px;}
.ws7{word-spacing:-9.194147px;}
.ws84{word-spacing:-9.151644px;}
.ws8{word-spacing:-9.140348px;}
.ws87{word-spacing:-9.032093px;}
.ws83{word-spacing:-8.972318px;}
.ws56{word-spacing:-8.967280px;}
.ws8a{word-spacing:-8.912542px;}
.ws92{word-spacing:-8.852766px;}
.ws3d{word-spacing:-8.836371px;}
.ws79{word-spacing:-8.368584px;}
.ws25{word-spacing:-8.312734px;}
.ws41{word-spacing:-8.247280px;}
.ws5d{word-spacing:-8.181825px;}
.ws5c{word-spacing:-8.116370px;}
.ws28{word-spacing:-8.050916px;}
.ws50{word-spacing:-7.789097px;}
.ws7a{word-spacing:-7.776806px;}
.ws24{word-spacing:-7.265461px;}
.ws4e{word-spacing:-7.252370px;}
.ws71{word-spacing:-7.200006px;}
.ws6e{word-spacing:-7.069097px;}
.wsc{word-spacing:-7.031451px;}
.ws15{word-spacing:-6.993745px;}
.ws6b{word-spacing:-6.807278px;}
.ws23{word-spacing:-6.748369px;}
.ws86{word-spacing:-6.162864px;}
.wsb{word-spacing:-6.127638px;}
.ws45{word-spacing:-6.087278px;}
.wsd{word-spacing:-6.073839px;}
.ws93{word-spacing:-5.923762px;}
.ws8f{word-spacing:-5.917784px;}
.ws18{word-spacing:-5.825459px;}
.ws5{word-spacing:-5.751049px;}
.ws75{word-spacing:-5.647613px;}
.ws90{word-spacing:-5.505333px;}
.ws85{word-spacing:-5.499355px;}
.ws11{word-spacing:-5.027128px;}
.ws77{word-spacing:-4.254549px;}
.ws73{word-spacing:-4.123640px;}
.ws4a{word-spacing:-3.730912px;}
.ws26{word-spacing:-3.272730px;}
.ws1f{word-spacing:-3.076366px;}
.ws27{word-spacing:-2.814548px;}
.ws4f{word-spacing:-2.160002px;}
.ws69{word-spacing:-2.029093px;}
.ws7e{word-spacing:-0.783060px;}
.ws7d{word-spacing:-0.777083px;}
.ws12{word-spacing:-0.657532px;}
.ws2{word-spacing:-0.167372px;}
.ws33{word-spacing:-0.065455px;}
.ws36{word-spacing:-0.059776px;}
.ws61{word-spacing:-0.047821px;}
.ws59{word-spacing:-0.041843px;}
.wse{word-spacing:0.000000px;}
.ws40{word-spacing:0.013091px;}
.wsf{word-spacing:2.683639px;}
.ws54{word-spacing:3.423282px;}
.ws63{word-spacing:3.856271px;}
.ws62{word-spacing:7.056112px;}
.ws55{word-spacing:7.059951px;}
.ws52{word-spacing:7.060817px;}
.ws4d{word-spacing:7.492271px;}
.ws3b{word-spacing:9.922750px;}
.ws78{word-spacing:10.800009px;}
.ws38{word-spacing:10.865464px;}
.ws10{word-spacing:11.429123px;}
.ws1{word-spacing:23.384371px;}
.ws1d{word-spacing:34.370970px;}
.ws35{word-spacing:141.774664px;}
.ws5a{word-spacing:324.414136px;}
.ws1b{word-spacing:2228.383881px;}
.ws1c{word-spacing:2254.578812px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._8{margin-left:-4.626662px;}
._1{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._6{width:1.441934px;}
._2{width:2.668393px;}
._3c{width:3.808925px;}
._3d{width:9.055921px;}
._31{width:16.785781px;}
._9{width:18.506650px;}
._4{width:20.959727px;}
._2f{width:22.828410px;}
._5{width:24.230807px;}
._a{width:25.339046px;}
._b{width:27.396415px;}
._2a{width:29.340566px;}
._2e{width:31.025480px;}
._2b{width:32.592524px;}
._34{width:33.664090px;}
._33{width:35.207828px;}
._35{width:36.377512px;}
._3b{width:37.701850px;}
._2d{width:38.805622px;}
._36{width:41.744789px;}
._3a{width:56.616296px;}
._2c{width:63.751885px;}
._30{width:69.212825px;}
._37{width:79.075799px;}
._38{width:80.669618px;}
._39{width:107.971492px;}
._32{width:143.693222px;}
._15{width:664.142970px;}
._24{width:763.845552px;}
._d{width:821.795009px;}
._1a{width:1005.628721px;}
._12{width:1102.930117px;}
._21{width:1138.008115px;}
._1e{width:1275.776735px;}
._26{width:1325.544367px;}
._29{width:1338.946714px;}
._1c{width:1356.494947px;}
._10{width:1396.749526px;}
._28{width:1512.617480px;}
._27{width:1525.841243px;}
._16{width:1558.355000px;}
._1b{width:1565.112070px;}
._17{width:1595.484937px;}
._13{width:1616.748727px;}
._11{width:1697.005022px;}
._e{width:1727.516311px;}
._1f{width:1765.520743px;}
._23{width:1796.496014px;}
._18{width:1827.119811px;}
._f{width:1839.432298px;}
._1d{width:1890.997211px;}
._22{width:1913.267020px;}
._19{width:1938.139768px;}
._14{width:1985.579108px;}
._20{width:2218.977516px;}
._25{width:2261.350885px;}
._c{width:2263.133644px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.y3b{bottom:160.314000px;}
.y1e{bottom:173.425500px;}
.y69{bottom:190.800000px;}
.y3a{bottom:190.992000px;}
.ydb{bottom:204.150000px;}
.y9a{bottom:204.322500px;}
.y59{bottom:218.892000px;}
.y82{bottom:221.286000px;}
.y39{bottom:221.670000px;}
.y11{bottom:222.673500px;}
.yb0{bottom:237.361500px;}
.y10{bottom:247.332000px;}
.yf1{bottom:251.770500px;}
.y38{bottom:252.348000px;}
.yda{bottom:255.895500px;}
.y99{bottom:256.068000px;}
.y68{bottom:256.729500px;}
.y81{bottom:258.007500px;}
.y80{bottom:262.051500px;}
.yc4{bottom:266.976000px;}
.yaf{bottom:267.846000px;}
.y11a{bottom:270.342000px;}
.y13b{bottom:273.141000px;}
.y58{bottom:274.557000px;}
.yf{bottom:274.977000px;}
.y37{bottom:283.026000px;}
.yf0{bottom:283.897500px;}
.ye{bottom:299.635500px;}
.y13a{bottom:300.040500px;}
.y7f{bottom:302.818500px;}
.y57{bottom:305.043000px;}
.yc3{bottom:312.666000px;}
.yef{bottom:314.383500px;}
.y67{bottom:315.952500px;}
.y98{bottom:316.525500px;}
.yd9{bottom:316.560000px;}
.y119{bottom:319.399500px;}
.yae{bottom:319.818000px;}
.y139{bottom:326.940000px;}
.yd{bottom:327.282000px;}
.y36{bottom:330.259500px;}
.yc2{bottom:343.152000px;}
.yee{bottom:344.868000px;}
.y97{bottom:347.010000px;}
.yd8{bottom:347.044500px;}
.yc{bottom:351.939000px;}
.y138{bottom:353.838000px;}
.y7e{bottom:354.564000px;}
.y35{bottom:360.937500px;}
.y56{bottom:365.040000px;}
.y118{bottom:371.856000px;}
.y66{bottom:375.177000px;}
.yed{bottom:375.354000px;}
.y96{bottom:377.496000px;}
.yd7{bottom:377.530500px;}
.yb{bottom:379.585500px;}
.y137{bottom:380.737500px;}
.yad{bottom:382.027500px;}
.y34{bottom:391.615500px;}
.yc1{bottom:394.897500px;}
.ya{bottom:404.242500px;}
.y136{bottom:407.637000px;}
.yd6{bottom:408.016500px;}
.yac{bottom:412.512000px;}
.y7d{bottom:414.511500px;}
.y55{bottom:419.698500px;}
.y33{bottom:422.293500px;}
.yec{bottom:428.740500px;}
.y95{bottom:429.241500px;}
.y65{bottom:431.022000px;}
.y135{bottom:434.536500px;}
.y117{bottom:436.833000px;}
.yab{bottom:442.998000px;}
.y7c{bottom:444.997500px;}
.y32{bottom:452.971500px;}
.yc0{bottom:455.619000px;}
.y94{bottom:456.141000px;}
.y101{bottom:457.228500px;}
.yd5{bottom:459.762000px;}
.y134{bottom:461.434500px;}
.y116{bottom:467.319000px;}
.y7b{bottom:475.483500px;}
.ybf{bottom:482.059500px;}
.y31{bottom:483.649500px;}
.ybe{bottom:486.105000px;}
.y100{bottom:487.713000px;}
.y133{bottom:488.334000px;}
.yaa{bottom:490.602000px;}
.y9{bottom:491.260500px;}
.y115{bottom:493.759500px;}
.y54{bottom:497.263500px;}
.y114{bottom:497.805000px;}
.yeb{bottom:499.027500px;}
.y30{bottom:514.327500px;}
.y132{bottom:515.233500px;}
.y64{bottom:515.367000px;}
.y7a{bottom:516.250500px;}
.y93{bottom:516.597000px;}
.yff{bottom:518.199000px;}
.y53{bottom:527.748000px;}
.yea{bottom:529.513500px;}
.ybd{bottom:530.301000px;}
.y112{bottom:535.554000px;}
.ya9{bottom:538.204500px;}
.y131{bottom:542.133000px;}
.yd4{bottom:542.998500px;}
.y8{bottom:543.672000px;}
.y92{bottom:547.083000px;}
.yfe{bottom:548.685000px;}
.y113{bottom:549.858000px;}
.y110{bottom:553.903500px;}
.y111{bottom:556.311000px;}
.y79{bottom:557.016000px;}
.y52{bottom:558.234000px;}
.ye9{bottom:559.999500px;}
.ybc{bottom:560.787000px;}
.y2f{bottom:561.561000px;}
.ya8{bottom:568.690500px;}
.y130{bottom:569.031000px;}
.y7{bottom:570.570000px;}
.y63{bottom:574.590000px;}
.yd3{bottom:578.398500px;}
.yfd{bottom:579.171000px;}
.y51{bottom:588.720000px;}
.ye8{bottom:590.485500px;}
.ybb{bottom:591.271500px;}
.y2e{bottom:592.239000px;}
.y12f{bottom:595.930500px;}
.y6{bottom:597.469500px;}
.y78{bottom:597.783000px;}
.y10f{bottom:598.272000px;}
.ya7{bottom:599.175000px;}
.y91{bottom:599.535000px;}
.y10e{bottom:602.959500px;}
.yd2{bottom:605.298000px;}
.yfc{bottom:609.657000px;}
.y50{bottom:619.206000px;}
.ye7{bottom:620.971500px;}
.y12e{bottom:622.830000px;}
.y2d{bottom:622.917000px;}
.yd1{bottom:628.503000px;}
.y90{bottom:630.762000px;}
.yd0{bottom:632.197500px;}
.yba{bottom:632.917500px;}
.y10d{bottom:633.445500px;}
.y62{bottom:633.814500px;}
.y8f{bottom:634.936500px;}
.yb9{bottom:636.963000px;}
.y77{bottom:638.550000px;}
.yfb{bottom:640.141500px;}
.y4f{bottom:649.692000px;}
.y12d{bottom:649.729500px;}
.ya6{bottom:651.147000px;}
.ye6{bottom:653.097000px;}
.y2c{bottom:653.595000px;}
.ycf{bottom:659.694000px;}
.y8e{bottom:661.834500px;}
.y76{bottom:669.036000px;}
.yfa{bottom:670.627500px;}
.y12c{bottom:676.627500px;}
.y4e{bottom:680.176500px;}
.yb8{bottom:682.653000px;}
.ye5{bottom:683.583000px;}
.y2b{bottom:684.273000px;}
.y10c{bottom:685.902000px;}
.y8d{bottom:688.734000px;}
.y61{bottom:689.659500px;}
.yf9{bottom:701.113500px;}
.yce{bottom:702.162000px;}
.y12b{bottom:703.527000px;}
.y4d{bottom:710.662500px;}
.yb7{bottom:713.139000px;}
.ya5{bottom:713.356500px;}
.ye4{bottom:714.067500px;}
.y8c{bottom:715.633500px;}
.y75{bottom:720.781500px;}
.y12a{bottom:730.426500px;}
.y2a{bottom:731.506500px;}
.yf8{bottom:731.599500px;}
.ycd{bottom:732.646500px;}
.y5{bottom:741.493500px;}
.y8b{bottom:743.130000px;}
.ya4{bottom:743.841000px;}
.y4c{bottom:744.061500px;}
.ye3{bottom:744.553500px;}
.y10b{bottom:750.879000px;}
.y129{bottom:757.326000px;}
.y29{bottom:762.184500px;}
.ycc{bottom:763.132500px;}
.yb6{bottom:764.884500px;}
.y60{bottom:774.003000px;}
.y4b{bottom:774.547500px;}
.ye2{bottom:775.039500px;}
.y74{bottom:780.729000px;}
.y10a{bottom:781.365000px;}
.yf7{bottom:783.345000px;}
.y128{bottom:784.224000px;}
.ya3{bottom:791.445000px;}
.y28{bottom:792.862500px;}
.y5f{bottom:804.489000px;}
.y4a{bottom:805.033500px;}
.y8a{bottom:805.701000px;}
.ycb{bottom:808.462500px;}
.y127{bottom:811.123500px;}
.y73{bottom:811.215000px;}
.y27{bottom:823.540500px;}
.yb5{bottom:825.606000px;}
.ye1{bottom:828.426000px;}
.y109{bottom:830.422500px;}
.y49{bottom:835.519500px;}
.y1d{bottom:836.947500px;}
.y126{bottom:838.023000px;}
.ya2{bottom:839.047500px;}
.y72{bottom:841.701000px;}
.yf6{bottom:844.260000px;}
.yca{bottom:853.792500px;}
.y26{bottom:854.218500px;}
.yb4{bottom:856.090500px;}
.y5e{bottom:860.335500px;}
.y125{bottom:864.922500px;}
.y48{bottom:866.005500px;}
.y89{bottom:866.157000px;}
.y1c{bottom:867.433500px;}
.ya1{bottom:869.533500px;}
.y71{bottom:872.185500px;}
.yf5{bottom:874.746000px;}
.ye0{bottom:878.224500px;}
.y108{bottom:879.478500px;}
.yc9{bottom:884.278500px;}
.yb3{bottom:886.576500px;}
.y124{bottom:891.820500px;}
.y88{bottom:896.643000px;}
.y47{bottom:899.404500px;}
.ya0{bottom:900.019500px;}
.y25{bottom:901.452000px;}
.y4{bottom:902.547000px;}
.yf4{bottom:905.230500px;}
.y40{bottom:905.644500px;}
.y11e{bottom:906.426000px;}
.y1b{bottom:907.810500px;}
.yb2{bottom:917.062500px;}
.y123{bottom:918.720000px;}
.y5d{bottom:919.261500px;}
.y70{bottom:923.931000px;}
.y107{bottom:924.490500px;}
.y106{bottom:928.536000px;}
.y46{bottom:929.889000px;}
.y24{bottom:932.130000px;}
.y3{bottom:933.928500px;}
.y1a{bottom:934.710000px;}
.yf3{bottom:935.716500px;}
.yc8{bottom:936.024000px;}
.y87{bottom:939.157500px;}
.y122{bottom:945.619500px;}
.ydf{bottom:948.513000px;}
.y11d{bottom:951.856500px;}
.y9f{bottom:951.990000px;}
.y3f{bottom:952.494000px;}
.y45{bottom:960.375000px;}
.y19{bottom:961.609500px;}
.y23{bottom:962.808000px;}
.yf2{bottom:966.202500px;}
.yb1{bottom:968.808000px;}
.y5c{bottom:968.925000px;}
.y86{bottom:969.643500px;}
.y6f{bottom:972.090000px;}
.y121{bottom:972.519000px;}
.y105{bottom:977.593500px;}
.yde{bottom:978.997500px;}
.y18{bottom:988.509000px;}
.y44{bottom:990.861000px;}
.y22{bottom:993.486000px;}
.yc7{bottom:996.688500px;}
.y11c{bottom:997.285500px;}
.y3e{bottom:999.342000px;}
.y120{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.y85{bottom:1000.128000px;}
.y104{bottom:1008.078000px;}
.y9e{bottom:1014.199500px;}
.y6e{bottom:1018.711500px;}
.y43{bottom:1024.260000px;}
.y11f{bottom:1026.316500px;}
.yc6{bottom:1027.174500px;}
.y17{bottom:1027.213500px;}
.ydd{bottom:1032.628500px;}
.y16{bottom:1032.636000px;}
.y103{bottom:1038.564000px;}
.y9d{bottom:1039.996500px;}
.y1{bottom:1040.139000px;}
.y21{bottom:1040.719500px;}
.y11b{bottom:1042.716000px;}
.y84{bottom:1044.136500px;}
.y9c{bottom:1044.684000px;}
.y3d{bottom:1046.191500px;}
.y5b{bottom:1053.963000px;}
.y6d{bottom:1054.113000px;}
.y42{bottom:1054.746000px;}
.yc5{bottom:1057.659000px;}
.y14{bottom:1059.342000px;}
.y15{bottom:1065.280500px;}
.y6c{bottom:1081.011000px;}
.y41{bottom:1085.232000px;}
.ydc{bottom:1086.259500px;}
.y20{bottom:1087.953000px;}
.y83{bottom:1088.145000px;}
.y102{bottom:1091.020500px;}
.y9b{bottom:1092.288000px;}
.y3c{bottom:1093.041000px;}
.y6b{bottom:1107.910500px;}
.y13{bottom:1108.509000px;}
.y6a{bottom:1135.407000px;}
.y5a{bottom:1138.962000px;}
.y12{bottom:1139.890500px;}
.y1f{bottom:1192.194000px;}
.hc{height:16.677504px;}
.ha{height:28.578632px;}
.h9{height:35.865450px;}
.h7{height:37.927872px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.hd{height:46.145493px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h11{height:50.268632px;}
.h16{height:50.274632px;}
.h3{height:53.798400px;}
.h19{height:59.609700px;}
.h13{height:59.619450px;}
.h15{height:59.733290px;}
.h2{height:60.254040px;}
.h1c{height:60.531024px;}
.h12{height:61.529700px;}
.h17{height:62.889450px;}
.he{height:62.895450px;}
.h10{height:65.272950px;}
.h1b{height:67.840950px;}
.h18{height:70.161024px;}
.h1a{height:75.915290px;}
.hf{height:79.071450px;}
.h14{height:85.173024px;}
.h4{height:118.812914px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x1e{left:109.666500px;}
.x15{left:110.739000px;}
.x19{left:113.910000px;}
.x83{left:115.471500px;}
.x18{left:120.273000px;}
.xb{left:125.932500px;}
.x1d{left:130.416000px;}
.xd{left:139.032000px;}
.x7b{left:140.184000px;}
.x1a{left:144.042000px;}
.x1b{left:145.179000px;}
.x36{left:152.259000px;}
.x55{left:154.495500px;}
.x4f{left:155.812500px;}
.x13{left:158.809500px;}
.x2e{left:161.473500px;}
.x70{left:166.182000px;}
.x12{left:173.754000px;}
.x50{left:174.901500px;}
.x37{left:178.929000px;}
.x5a{left:180.867000px;}
.x30{left:185.163000px;}
.x1{left:186.321000px;}
.x69{left:189.063000px;}
.x6c{left:212.670000px;}
.x10{left:214.422000px;}
.x2{left:215.536500px;}
.x11{left:221.125500px;}
.x6e{left:234.982500px;}
.x71{left:240.321000px;}
.x82{left:241.729500px;}
.x81{left:264.495000px;}
.x26{left:267.496500px;}
.x3{left:274.819500px;}
.x80{left:276.904500px;}
.x68{left:279.580500px;}
.x2c{left:290.212500px;}
.x29{left:291.618000px;}
.x49{left:295.590000px;}
.x6d{left:303.973500px;}
.xc{left:307.663500px;}
.x5c{left:308.845500px;}
.x47{left:312.261000px;}
.x44{left:314.257500px;}
.x4d{left:317.314500px;}
.x2f{left:320.239500px;}
.x5d{left:322.393500px;}
.x45{left:326.629500px;}
.x7{left:329.793000px;}
.x2d{left:331.408500px;}
.x7c{left:332.566500px;}
.x2b{left:339.205500px;}
.x6f{left:345.013500px;}
.x51{left:348.531000px;}
.x27{left:349.744500px;}
.x4e{left:352.927500px;}
.x4{left:356.499000px;}
.x5e{left:357.646500px;}
.x62{left:361.024500px;}
.x3c{left:363.717000px;}
.x1f{left:366.667500px;}
.x3b{left:369.115500px;}
.x1c{left:373.006500px;}
.x5{left:375.504000px;}
.x48{left:379.621500px;}
.x6{left:381.384000px;}
.xe{left:382.602000px;}
.x5f{left:383.977500px;}
.x74{left:385.414500px;}
.x3f{left:391.075500px;}
.x8{left:392.640000px;}
.x35{left:399.988500px;}
.x3e{left:401.803500px;}
.x75{left:402.891000px;}
.x28{left:404.533500px;}
.x9{left:405.966000px;}
.x17{left:409.203000px;}
.x7d{left:410.973000px;}
.x46{left:417.708000px;}
.x38{left:418.876500px;}
.x59{left:423.633000px;}
.x2a{left:426.895500px;}
.x3d{left:429.432000px;}
.x20{left:440.509500px;}
.x25{left:446.863500px;}
.x24{left:448.252500px;}
.x7e{left:451.014000px;}
.x72{left:452.236500px;}
.x76{left:462.339000px;}
.x54{left:467.755500px;}
.x66{left:477.990000px;}
.x21{left:479.530500px;}
.x73{left:485.922000px;}
.x67{left:507.511500px;}
.xf{left:511.759500px;}
.x77{left:517.554000px;}
.x78{left:543.435000px;}
.x42{left:544.884000px;}
.x63{left:555.831000px;}
.x7f{left:568.344000px;}
.x43{left:573.460500px;}
.x64{left:580.545000px;}
.x65{left:597.666000px;}
.x40{left:606.913500px;}
.x52{left:626.701500px;}
.x57{left:630.957000px;}
.x31{left:632.763000px;}
.x41{left:637.441500px;}
.x53{left:647.128500px;}
.x60{left:650.623500px;}
.x58{left:657.652500px;}
.x79{left:660.097500px;}
.x32{left:671.784000px;}
.x61{left:675.319500px;}
.x7a{left:685.720500px;}
.x4a{left:718.236000px;}
.x39{left:722.818500px;}
.x4b{left:731.782500px;}
.x33{left:736.828500px;}
.x6a{left:741.412500px;}
.x4c{left:749.505000px;}
.x22{left:751.012500px;}
.x3a{left:752.529000px;}
.x34{left:762.720000px;}
.x6b{left:774.922500px;}
.x23{left:776.560500px;}
.x5b{left:781.383000px;}
.x56{left:791.013000px;}
.x16{left:799.195500px;}
@media print{
.vc{vertical-align:-47.152000pt;}
.v1{vertical-align:-22.314667pt;}
.v2{vertical-align:-20.314667pt;}
.v9{vertical-align:-16.325333pt;}
.ve{vertical-align:-13.461333pt;}
.v3{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.141333pt;}
.v10{vertical-align:13.136000pt;}
.v5{vertical-align:14.378667pt;}
.v11{vertical-align:16.666667pt;}
.v8{vertical-align:19.280000pt;}
.va{vertical-align:21.114667pt;}
.v4{vertical-align:24.026667pt;}
.v7{vertical-align:38.405333pt;}
.v13{vertical-align:43.178667pt;}
.v12{vertical-align:51.680000pt;}
.vf{vertical-align:60.240000pt;}
.vd{vertical-align:65.498667pt;}
.vb{vertical-align:73.584000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000058pt;}
.ls66{letter-spacing:0.000934pt;}
.ls15{letter-spacing:0.001401pt;}
.ls5{letter-spacing:0.001414pt;}
.ls41{letter-spacing:0.001416pt;}
.ls43{letter-spacing:0.001788pt;}
.ls4{letter-spacing:0.001899pt;}
.ls7{letter-spacing:0.001908pt;}
.ls55{letter-spacing:0.002079pt;}
.ls34{letter-spacing:0.002133pt;}
.ls30{letter-spacing:0.002323pt;}
.ls63{letter-spacing:0.002399pt;}
.ls44{letter-spacing:0.002411pt;}
.ls2b{letter-spacing:0.002879pt;}
.ls53{letter-spacing:0.002881pt;}
.ls23{letter-spacing:0.003233pt;}
.ls5e{letter-spacing:0.003856pt;}
.ls2d{letter-spacing:0.004641pt;}
.ls58{letter-spacing:0.005965pt;}
.ls4b{letter-spacing:0.008649pt;}
.ls48{letter-spacing:0.009974pt;}
.ls49{letter-spacing:0.013982pt;}
.lsd{letter-spacing:0.015390pt;}
.lse{letter-spacing:0.027758pt;}
.ls18{letter-spacing:0.265669pt;}
.ls14{letter-spacing:0.290909pt;}
.ls4d{letter-spacing:1.474881pt;}
.ls29{letter-spacing:1.477138pt;}
.ls3e{letter-spacing:1.617401pt;}
.ls1e{letter-spacing:1.617899pt;}
.ls22{letter-spacing:1.629092pt;}
.ls5d{letter-spacing:1.633359pt;}
.ls3f{letter-spacing:2.653258pt;}
.ls54{letter-spacing:2.654544pt;}
.lsa{letter-spacing:2.654641pt;}
.ls1a{letter-spacing:2.655286pt;}
.lsb{letter-spacing:2.657546pt;}
.ls19{letter-spacing:2.659878pt;}
.ls11{letter-spacing:2.659975pt;}
.ls4f{letter-spacing:2.660619pt;}
.ls12{letter-spacing:2.662879pt;}
.ls4e{letter-spacing:5.257211pt;}
.ls5f{letter-spacing:5.310372pt;}
.ls3c{letter-spacing:5.314241pt;}
.ls31{letter-spacing:5.315705pt;}
.ls36{letter-spacing:5.818187pt;}
.ls1f{letter-spacing:5.969546pt;}
.ls47{letter-spacing:6.225460pt;}
.ls2c{letter-spacing:6.283642pt;}
.ls3a{letter-spacing:6.913457pt;}
.ls64{letter-spacing:7.870275pt;}
.ls5a{letter-spacing:8.081908pt;}
.ls37{letter-spacing:9.658190pt;}
.ls45{letter-spacing:9.697788pt;}
.ls35{letter-spacing:9.716372pt;}
.ls2f{letter-spacing:12.350641pt;}
.ls62{letter-spacing:12.353341pt;}
.ls21{letter-spacing:12.916374pt;}
.ls51{letter-spacing:14.718081pt;}
.ls50{letter-spacing:14.771215pt;}
.ls20{letter-spacing:15.582641pt;}
.ls4a{letter-spacing:15.587975pt;}
.ls33{letter-spacing:16.159477pt;}
.ls60{letter-spacing:16.161788pt;}
.ls9{letter-spacing:16.174559pt;}
.ls39{letter-spacing:17.105469pt;}
.ls6{letter-spacing:18.618197pt;}
.ls10{letter-spacing:18.814641pt;}
.ls8{letter-spacing:18.819975pt;}
.ls2{letter-spacing:19.039527pt;}
.ls1d{letter-spacing:19.374562pt;}
.ls42{letter-spacing:19.781835pt;}
.ls61{letter-spacing:20.346144pt;}
.ls56{letter-spacing:20.368631pt;}
.ls59{letter-spacing:22.046641pt;}
.lsc{letter-spacing:22.049546pt;}
.ls13{letter-spacing:22.051975pt;}
.ls3{letter-spacing:26.123658pt;}
.ls57{letter-spacing:31.883663pt;}
.ls1b{letter-spacing:203.449575pt;}
.ls52{letter-spacing:222.577767pt;}
.ls3d{letter-spacing:236.251297pt;}
.ls0{letter-spacing:310.561617pt;}
.ls28{letter-spacing:317.953058pt;}
.ls17{letter-spacing:327.839286pt;}
.ls16{letter-spacing:341.113953pt;}
.ls27{letter-spacing:379.129953pt;}
.ls2a{letter-spacing:440.825953pt;}
.ls26{letter-spacing:455.647286pt;}
.ls32{letter-spacing:539.636813pt;}
.ls4c{letter-spacing:582.749577pt;}
.ls65{letter-spacing:673.571470pt;}
.ls24{letter-spacing:712.727867pt;}
.ls38{letter-spacing:743.506074pt;}
.ls67{letter-spacing:781.266106pt;}
.ls5b{letter-spacing:813.964315pt;}
.ls2e{letter-spacing:838.400699pt;}
.ls3b{letter-spacing:887.389830pt;}
.ls1c{letter-spacing:889.833469pt;}
.ls25{letter-spacing:896.291656pt;}
.ls46{letter-spacing:906.298937pt;}
.ls40{letter-spacing:909.266212pt;}
.ls5c{letter-spacing:929.662641pt;}
.ws37{word-spacing:-58.181867pt;}
.ws53{word-spacing:-42.066082pt;}
.ws4b{word-spacing:-30.551973pt;}
.ws32{word-spacing:-29.090933pt;}
.ws91{word-spacing:-27.156719pt;}
.ws81{word-spacing:-26.566933pt;}
.ws17{word-spacing:-24.575109pt;}
.ws39{word-spacing:-17.512742pt;}
.ws42{word-spacing:-16.162923pt;}
.ws3a{word-spacing:-15.592740pt;}
.ws6a{word-spacing:-15.127285pt;}
.ws20{word-spacing:-14.952740pt;}
.ws58{word-spacing:-14.760588pt;}
.ws65{word-spacing:-14.487285pt;}
.ws0{word-spacing:-14.346200pt;}
.ws60{word-spacing:-13.614557pt;}
.ws2a{word-spacing:-13.323647pt;}
.ws34{word-spacing:-12.543875pt;}
.ws72{word-spacing:-12.276374pt;}
.ws2b{word-spacing:-12.224010pt;}
.ws74{word-spacing:-12.101828pt;}
.ws31{word-spacing:-12.043646pt;}
.ws3{word-spacing:-11.955200pt;}
.ws47{word-spacing:-11.869101pt;}
.ws46{word-spacing:-11.810919pt;}
.ws67{word-spacing:-11.054555pt;}
.ws3e{word-spacing:-10.880009pt;}
.ws3f{word-spacing:-10.821827pt;}
.ws66{word-spacing:-10.647282pt;}
.ws2c{word-spacing:-10.530918pt;}
.ws48{word-spacing:-10.472736pt;}
.ws70{word-spacing:-10.298190pt;}
.ws57{word-spacing:-10.240009pt;}
.ws2f{word-spacing:-10.201702pt;}
.ws5f{word-spacing:-10.148569pt;}
.ws1e{word-spacing:-10.123645pt;}
.ws76{word-spacing:-10.065463pt;}
.ws4c{word-spacing:-10.007281pt;}
.ws68{word-spacing:-9.949099pt;}
.ws5e{word-spacing:-9.890917pt;}
.ws7b{word-spacing:-9.882899pt;}
.ws21{word-spacing:-9.832735pt;}
.ws3c{word-spacing:-9.774554pt;}
.ws19{word-spacing:-9.716372pt;}
.ws1a{word-spacing:-9.658190pt;}
.ws51{word-spacing:-9.600008pt;}
.ws49{word-spacing:-9.541826pt;}
.ws2d{word-spacing:-9.483644pt;}
.ws88{word-spacing:-9.463142pt;}
.ws43{word-spacing:-9.425462pt;}
.ws9{word-spacing:-9.406351pt;}
.ws44{word-spacing:-9.367281pt;}
.ws30{word-spacing:-9.309099pt;}
.ws29{word-spacing:-9.250917pt;}
.ws8d{word-spacing:-9.245293pt;}
.ws22{word-spacing:-9.192735pt;}
.ws7f{word-spacing:-9.139025pt;}
.ws6f{word-spacing:-9.076371pt;}
.ws7c{word-spacing:-9.038071pt;}
.ws2e{word-spacing:-9.018189pt;}
.ws6d{word-spacing:-8.960007pt;}
.ws4{word-spacing:-8.873356pt;}
.ws5b{word-spacing:-8.843644pt;}
.ws6{word-spacing:-8.832502pt;}
.ws13{word-spacing:-8.820222pt;}
.ws82{word-spacing:-8.713954pt;}
.ws8b{word-spacing:-8.660820pt;}
.ws89{word-spacing:-8.607686pt;}
.ws14{word-spacing:-8.554553pt;}
.ws80{word-spacing:-8.453598pt;}
.ws8e{word-spacing:-8.400464pt;}
.ws16{word-spacing:-8.395151pt;}
.ws64{word-spacing:-8.378189pt;}
.wsa{word-spacing:-8.220396pt;}
.ws6c{word-spacing:-8.203643pt;}
.ws8c{word-spacing:-8.187929pt;}
.ws7{word-spacing:-8.172575pt;}
.ws84{word-spacing:-8.134795pt;}
.ws8{word-spacing:-8.124754pt;}
.ws87{word-spacing:-8.028527pt;}
.ws83{word-spacing:-7.975393pt;}
.ws56{word-spacing:-7.970916pt;}
.ws8a{word-spacing:-7.922260pt;}
.ws92{word-spacing:-7.869126pt;}
.ws3d{word-spacing:-7.854552pt;}
.ws79{word-spacing:-7.438741pt;}
.ws25{word-spacing:-7.389097pt;}
.ws41{word-spacing:-7.330915pt;}
.ws5d{word-spacing:-7.272733pt;}
.ws5c{word-spacing:-7.214551pt;}
.ws28{word-spacing:-7.156370pt;}
.ws50{word-spacing:-6.923642pt;}
.ws7a{word-spacing:-6.912716pt;}
.ws24{word-spacing:-6.458187pt;}
.ws4e{word-spacing:-6.446551pt;}
.ws71{word-spacing:-6.400005pt;}
.ws6e{word-spacing:-6.283642pt;}
.wsc{word-spacing:-6.250179pt;}
.ws15{word-spacing:-6.216662pt;}
.ws6b{word-spacing:-6.050914pt;}
.ws23{word-spacing:-5.998550pt;}
.ws86{word-spacing:-5.478102pt;}
.wsb{word-spacing:-5.446789pt;}
.ws45{word-spacing:-5.410914pt;}
.wsd{word-spacing:-5.398968pt;}
.ws93{word-spacing:-5.265566pt;}
.ws8f{word-spacing:-5.260253pt;}
.ws18{word-spacing:-5.178186pt;}
.ws5{word-spacing:-5.112044pt;}
.ws75{word-spacing:-5.020100pt;}
.ws90{word-spacing:-4.893629pt;}
.ws85{word-spacing:-4.888316pt;}
.ws11{word-spacing:-4.468558pt;}
.ws77{word-spacing:-3.781821pt;}
.ws73{word-spacing:-3.665458pt;}
.ws4a{word-spacing:-3.316366pt;}
.ws26{word-spacing:-2.909093pt;}
.ws1f{word-spacing:-2.734548pt;}
.ws27{word-spacing:-2.501820pt;}
.ws4f{word-spacing:-1.920002pt;}
.ws69{word-spacing:-1.803638pt;}
.ws7e{word-spacing:-0.696054pt;}
.ws7d{word-spacing:-0.690740pt;}
.ws12{word-spacing:-0.584473pt;}
.ws2{word-spacing:-0.148775pt;}
.ws33{word-spacing:-0.058182pt;}
.ws36{word-spacing:-0.053134pt;}
.ws61{word-spacing:-0.042507pt;}
.ws59{word-spacing:-0.037194pt;}
.wse{word-spacing:0.000000pt;}
.ws40{word-spacing:0.011636pt;}
.wsf{word-spacing:2.385457pt;}
.ws54{word-spacing:3.042917pt;}
.ws63{word-spacing:3.427797pt;}
.ws62{word-spacing:6.272100pt;}
.ws55{word-spacing:6.275512pt;}
.ws52{word-spacing:6.276282pt;}
.ws4d{word-spacing:6.659797pt;}
.ws3b{word-spacing:8.820222pt;}
.ws78{word-spacing:9.600008pt;}
.ws38{word-spacing:9.658190pt;}
.ws10{word-spacing:10.159221pt;}
.ws1{word-spacing:20.786108pt;}
.ws1d{word-spacing:30.551973pt;}
.ws35{word-spacing:126.021923pt;}
.ws5a{word-spacing:288.368121pt;}
.ws1b{word-spacing:1980.785672pt;}
.ws1c{word-spacing:2004.070055pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._8{margin-left:-4.112589pt;}
._1{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._6{width:1.281719pt;}
._2{width:2.371905pt;}
._3c{width:3.385711pt;}
._3d{width:8.049707pt;}
._31{width:14.920694pt;}
._9{width:16.450355pt;}
._4{width:18.630868pt;}
._2f{width:20.291920pt;}
._5{width:21.538495pt;}
._a{width:22.523597pt;}
._b{width:24.352369pt;}
._2a{width:26.080503pt;}
._2e{width:27.578205pt;}
._2b{width:28.971133pt;}
._34{width:29.923636pt;}
._33{width:31.295847pt;}
._35{width:32.335566pt;}
._3b{width:33.512755pt;}
._2d{width:34.493886pt;}
._36{width:37.106479pt;}
._3a{width:50.325596pt;}
._2c{width:56.668342pt;}
._30{width:61.522511pt;}
._37{width:70.289599pt;}
._38{width:71.706327pt;}
._39{width:95.974659pt;}
._32{width:127.727309pt;}
._15{width:590.349307pt;}
._24{width:678.973824pt;}
._d{width:730.484452pt;}
._1a{width:893.892197pt;}
._12{width:980.382326pt;}
._21{width:1011.562769pt;}
._1e{width:1134.023765pt;}
._26{width:1178.261660pt;}
._29{width:1190.174857pt;}
._1c{width:1205.773286pt;}
._10{width:1241.555134pt;}
._28{width:1344.548871pt;}
._27{width:1356.303327pt;}
._16{width:1385.204445pt;}
._1b{width:1391.210729pt;}
._17{width:1418.208833pt;}
._13{width:1437.109979pt;}
._11{width:1508.448908pt;}
._e{width:1535.570054pt;}
._1f{width:1569.351771pt;}
._23{width:1596.885346pt;}
._18{width:1624.106499pt;}
._f{width:1635.050932pt;}
._1d{width:1680.886410pt;}
._22{width:1700.681796pt;}
._19{width:1722.790905pt;}
._14{width:1764.959207pt;}
._20{width:1972.424459pt;}
._25{width:2010.089675pt;}
._c{width:2011.674350pt;}
.fsa{font-size:26.566933pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:142.501333pt;}
.y1e{bottom:154.156000pt;}
.y69{bottom:169.600000pt;}
.y3a{bottom:169.770667pt;}
.ydb{bottom:181.466667pt;}
.y9a{bottom:181.620000pt;}
.y59{bottom:194.570667pt;}
.y82{bottom:196.698667pt;}
.y39{bottom:197.040000pt;}
.y11{bottom:197.932000pt;}
.yb0{bottom:210.988000pt;}
.y10{bottom:219.850667pt;}
.yf1{bottom:223.796000pt;}
.y38{bottom:224.309333pt;}
.yda{bottom:227.462667pt;}
.y99{bottom:227.616000pt;}
.y68{bottom:228.204000pt;}
.y81{bottom:229.340000pt;}
.y80{bottom:232.934667pt;}
.yc4{bottom:237.312000pt;}
.yaf{bottom:238.085333pt;}
.y11a{bottom:240.304000pt;}
.y13b{bottom:242.792000pt;}
.y58{bottom:244.050667pt;}
.yf{bottom:244.424000pt;}
.y37{bottom:251.578667pt;}
.yf0{bottom:252.353333pt;}
.ye{bottom:266.342667pt;}
.y13a{bottom:266.702667pt;}
.y7f{bottom:269.172000pt;}
.y57{bottom:271.149333pt;}
.yc3{bottom:277.925333pt;}
.yef{bottom:279.452000pt;}
.y67{bottom:280.846667pt;}
.y98{bottom:281.356000pt;}
.yd9{bottom:281.386667pt;}
.y119{bottom:283.910667pt;}
.yae{bottom:284.282667pt;}
.y139{bottom:290.613333pt;}
.yd{bottom:290.917333pt;}
.y36{bottom:293.564000pt;}
.yc2{bottom:305.024000pt;}
.yee{bottom:306.549333pt;}
.y97{bottom:308.453333pt;}
.yd8{bottom:308.484000pt;}
.yc{bottom:312.834667pt;}
.y138{bottom:314.522667pt;}
.y7e{bottom:315.168000pt;}
.y35{bottom:320.833333pt;}
.y56{bottom:324.480000pt;}
.y118{bottom:330.538667pt;}
.y66{bottom:333.490667pt;}
.yed{bottom:333.648000pt;}
.y96{bottom:335.552000pt;}
.yd7{bottom:335.582667pt;}
.yb{bottom:337.409333pt;}
.y137{bottom:338.433333pt;}
.yad{bottom:339.580000pt;}
.y34{bottom:348.102667pt;}
.yc1{bottom:351.020000pt;}
.ya{bottom:359.326667pt;}
.y136{bottom:362.344000pt;}
.yd6{bottom:362.681333pt;}
.yac{bottom:366.677333pt;}
.y7d{bottom:368.454667pt;}
.y55{bottom:373.065333pt;}
.y33{bottom:375.372000pt;}
.yec{bottom:381.102667pt;}
.y95{bottom:381.548000pt;}
.y65{bottom:383.130667pt;}
.y135{bottom:386.254667pt;}
.y117{bottom:388.296000pt;}
.yab{bottom:393.776000pt;}
.y7c{bottom:395.553333pt;}
.y32{bottom:402.641333pt;}
.yc0{bottom:404.994667pt;}
.y94{bottom:405.458667pt;}
.y101{bottom:406.425333pt;}
.yd5{bottom:408.677333pt;}
.y134{bottom:410.164000pt;}
.y116{bottom:415.394667pt;}
.y7b{bottom:422.652000pt;}
.ybf{bottom:428.497333pt;}
.y31{bottom:429.910667pt;}
.ybe{bottom:432.093333pt;}
.y100{bottom:433.522667pt;}
.y133{bottom:434.074667pt;}
.yaa{bottom:436.090667pt;}
.y9{bottom:436.676000pt;}
.y115{bottom:438.897333pt;}
.y54{bottom:442.012000pt;}
.y114{bottom:442.493333pt;}
.yeb{bottom:443.580000pt;}
.y30{bottom:457.180000pt;}
.y132{bottom:457.985333pt;}
.y64{bottom:458.104000pt;}
.y7a{bottom:458.889333pt;}
.y93{bottom:459.197333pt;}
.yff{bottom:460.621333pt;}
.y53{bottom:469.109333pt;}
.yea{bottom:470.678667pt;}
.ybd{bottom:471.378667pt;}
.y112{bottom:476.048000pt;}
.ya9{bottom:478.404000pt;}
.y131{bottom:481.896000pt;}
.yd4{bottom:482.665333pt;}
.y8{bottom:483.264000pt;}
.y92{bottom:486.296000pt;}
.yfe{bottom:487.720000pt;}
.y113{bottom:488.762667pt;}
.y110{bottom:492.358667pt;}
.y111{bottom:494.498667pt;}
.y79{bottom:495.125333pt;}
.y52{bottom:496.208000pt;}
.ye9{bottom:497.777333pt;}
.ybc{bottom:498.477333pt;}
.y2f{bottom:499.165333pt;}
.ya8{bottom:505.502667pt;}
.y130{bottom:505.805333pt;}
.y7{bottom:507.173333pt;}
.y63{bottom:510.746667pt;}
.yd3{bottom:514.132000pt;}
.yfd{bottom:514.818667pt;}
.y51{bottom:523.306667pt;}
.ye8{bottom:524.876000pt;}
.ybb{bottom:525.574667pt;}
.y2e{bottom:526.434667pt;}
.y12f{bottom:529.716000pt;}
.y6{bottom:531.084000pt;}
.y78{bottom:531.362667pt;}
.y10f{bottom:531.797333pt;}
.ya7{bottom:532.600000pt;}
.y91{bottom:532.920000pt;}
.y10e{bottom:535.964000pt;}
.yd2{bottom:538.042667pt;}
.yfc{bottom:541.917333pt;}
.y50{bottom:550.405333pt;}
.ye7{bottom:551.974667pt;}
.y12e{bottom:553.626667pt;}
.y2d{bottom:553.704000pt;}
.yd1{bottom:558.669333pt;}
.y90{bottom:560.677333pt;}
.yd0{bottom:561.953333pt;}
.yba{bottom:562.593333pt;}
.y10d{bottom:563.062667pt;}
.y62{bottom:563.390667pt;}
.y8f{bottom:564.388000pt;}
.yb9{bottom:566.189333pt;}
.y77{bottom:567.600000pt;}
.yfb{bottom:569.014667pt;}
.y4f{bottom:577.504000pt;}
.y12d{bottom:577.537333pt;}
.ya6{bottom:578.797333pt;}
.ye6{bottom:580.530667pt;}
.y2c{bottom:580.973333pt;}
.ycf{bottom:586.394667pt;}
.y8e{bottom:588.297333pt;}
.y76{bottom:594.698667pt;}
.yfa{bottom:596.113333pt;}
.y12c{bottom:601.446667pt;}
.y4e{bottom:604.601333pt;}
.yb8{bottom:606.802667pt;}
.ye5{bottom:607.629333pt;}
.y2b{bottom:608.242667pt;}
.y10c{bottom:609.690667pt;}
.y8d{bottom:612.208000pt;}
.y61{bottom:613.030667pt;}
.yf9{bottom:623.212000pt;}
.yce{bottom:624.144000pt;}
.y12b{bottom:625.357333pt;}
.y4d{bottom:631.700000pt;}
.yb7{bottom:633.901333pt;}
.ya5{bottom:634.094667pt;}
.ye4{bottom:634.726667pt;}
.y8c{bottom:636.118667pt;}
.y75{bottom:640.694667pt;}
.y12a{bottom:649.268000pt;}
.y2a{bottom:650.228000pt;}
.yf8{bottom:650.310667pt;}
.ycd{bottom:651.241333pt;}
.y5{bottom:659.105333pt;}
.y8b{bottom:660.560000pt;}
.ya4{bottom:661.192000pt;}
.y4c{bottom:661.388000pt;}
.ye3{bottom:661.825333pt;}
.y10b{bottom:667.448000pt;}
.y129{bottom:673.178667pt;}
.y29{bottom:677.497333pt;}
.ycc{bottom:678.340000pt;}
.yb6{bottom:679.897333pt;}
.y60{bottom:688.002667pt;}
.y4b{bottom:688.486667pt;}
.ye2{bottom:688.924000pt;}
.y74{bottom:693.981333pt;}
.y10a{bottom:694.546667pt;}
.yf7{bottom:696.306667pt;}
.y128{bottom:697.088000pt;}
.ya3{bottom:703.506667pt;}
.y28{bottom:704.766667pt;}
.y5f{bottom:715.101333pt;}
.y4a{bottom:715.585333pt;}
.y8a{bottom:716.178667pt;}
.ycb{bottom:718.633333pt;}
.y127{bottom:720.998667pt;}
.y73{bottom:721.080000pt;}
.y27{bottom:732.036000pt;}
.yb5{bottom:733.872000pt;}
.ye1{bottom:736.378667pt;}
.y109{bottom:738.153333pt;}
.y49{bottom:742.684000pt;}
.y1d{bottom:743.953333pt;}
.y126{bottom:744.909333pt;}
.ya2{bottom:745.820000pt;}
.y72{bottom:748.178667pt;}
.yf6{bottom:750.453333pt;}
.yca{bottom:758.926667pt;}
.y26{bottom:759.305333pt;}
.yb4{bottom:760.969333pt;}
.y5e{bottom:764.742667pt;}
.y125{bottom:768.820000pt;}
.y48{bottom:769.782667pt;}
.y89{bottom:769.917333pt;}
.y1c{bottom:771.052000pt;}
.ya1{bottom:772.918667pt;}
.y71{bottom:775.276000pt;}
.yf5{bottom:777.552000pt;}
.ye0{bottom:780.644000pt;}
.y108{bottom:781.758667pt;}
.yc9{bottom:786.025333pt;}
.yb3{bottom:788.068000pt;}
.y124{bottom:792.729333pt;}
.y88{bottom:797.016000pt;}
.y47{bottom:799.470667pt;}
.ya0{bottom:800.017333pt;}
.y25{bottom:801.290667pt;}
.y4{bottom:802.264000pt;}
.yf4{bottom:804.649333pt;}
.y40{bottom:805.017333pt;}
.y11e{bottom:805.712000pt;}
.y1b{bottom:806.942667pt;}
.yb2{bottom:815.166667pt;}
.y123{bottom:816.640000pt;}
.y5d{bottom:817.121333pt;}
.y70{bottom:821.272000pt;}
.y107{bottom:821.769333pt;}
.y106{bottom:825.365333pt;}
.y46{bottom:826.568000pt;}
.y24{bottom:828.560000pt;}
.y3{bottom:830.158667pt;}
.y1a{bottom:830.853333pt;}
.yf3{bottom:831.748000pt;}
.yc8{bottom:832.021333pt;}
.y87{bottom:834.806667pt;}
.y122{bottom:840.550667pt;}
.ydf{bottom:843.122667pt;}
.y11d{bottom:846.094667pt;}
.y9f{bottom:846.213333pt;}
.y3f{bottom:846.661333pt;}
.y45{bottom:853.666667pt;}
.y19{bottom:854.764000pt;}
.y23{bottom:855.829333pt;}
.yf2{bottom:858.846667pt;}
.yb1{bottom:861.162667pt;}
.y5c{bottom:861.266667pt;}
.y86{bottom:861.905333pt;}
.y6f{bottom:864.080000pt;}
.y121{bottom:864.461333pt;}
.y105{bottom:868.972000pt;}
.yde{bottom:870.220000pt;}
.y18{bottom:878.674667pt;}
.y44{bottom:880.765333pt;}
.y22{bottom:883.098667pt;}
.yc7{bottom:885.945333pt;}
.y11c{bottom:886.476000pt;}
.y3e{bottom:888.304000pt;}
.y120{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.y85{bottom:889.002667pt;}
.y104{bottom:896.069333pt;}
.y9e{bottom:901.510667pt;}
.y6e{bottom:905.521333pt;}
.y43{bottom:910.453333pt;}
.y11f{bottom:912.281333pt;}
.yc6{bottom:913.044000pt;}
.y17{bottom:913.078667pt;}
.ydd{bottom:917.892000pt;}
.y16{bottom:917.898667pt;}
.y103{bottom:923.168000pt;}
.y9d{bottom:924.441333pt;}
.y1{bottom:924.568000pt;}
.y21{bottom:925.084000pt;}
.y11b{bottom:926.858667pt;}
.y84{bottom:928.121333pt;}
.y9c{bottom:928.608000pt;}
.y3d{bottom:929.948000pt;}
.y5b{bottom:936.856000pt;}
.y6d{bottom:936.989333pt;}
.y42{bottom:937.552000pt;}
.yc5{bottom:940.141333pt;}
.y14{bottom:941.637333pt;}
.y15{bottom:946.916000pt;}
.y6c{bottom:960.898667pt;}
.y41{bottom:964.650667pt;}
.ydc{bottom:965.564000pt;}
.y20{bottom:967.069333pt;}
.y83{bottom:967.240000pt;}
.y102{bottom:969.796000pt;}
.y9b{bottom:970.922667pt;}
.y3c{bottom:971.592000pt;}
.y6b{bottom:984.809333pt;}
.y13{bottom:985.341333pt;}
.y6a{bottom:1009.250667pt;}
.y5a{bottom:1012.410667pt;}
.y12{bottom:1013.236000pt;}
.y1f{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.ha{height:25.403229pt;}
.h9{height:31.880400pt;}
.h7{height:33.713664pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.hd{height:41.018216pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h11{height:44.683229pt;}
.h16{height:44.688562pt;}
.h3{height:47.820800pt;}
.h19{height:52.986400pt;}
.h13{height:52.995067pt;}
.h15{height:53.096258pt;}
.h2{height:53.559147pt;}
.h1c{height:53.805355pt;}
.h12{height:54.693067pt;}
.h17{height:55.901733pt;}
.he{height:55.907067pt;}
.h10{height:58.020400pt;}
.h1b{height:60.303067pt;}
.h18{height:62.365355pt;}
.h1a{height:67.480258pt;}
.hf{height:70.285733pt;}
.h14{height:75.709355pt;}
.h4{height:105.611479pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1e{left:97.481333pt;}
.x15{left:98.434667pt;}
.x19{left:101.253333pt;}
.x83{left:102.641333pt;}
.x18{left:106.909333pt;}
.xb{left:111.940000pt;}
.x1d{left:115.925333pt;}
.xd{left:123.584000pt;}
.x7b{left:124.608000pt;}
.x1a{left:128.037333pt;}
.x1b{left:129.048000pt;}
.x36{left:135.341333pt;}
.x55{left:137.329333pt;}
.x4f{left:138.500000pt;}
.x13{left:141.164000pt;}
.x2e{left:143.532000pt;}
.x70{left:147.717333pt;}
.x12{left:154.448000pt;}
.x50{left:155.468000pt;}
.x37{left:159.048000pt;}
.x5a{left:160.770667pt;}
.x30{left:164.589333pt;}
.x1{left:165.618667pt;}
.x69{left:168.056000pt;}
.x6c{left:189.040000pt;}
.x10{left:190.597333pt;}
.x2{left:191.588000pt;}
.x11{left:196.556000pt;}
.x6e{left:208.873333pt;}
.x71{left:213.618667pt;}
.x82{left:214.870667pt;}
.x81{left:235.106667pt;}
.x26{left:237.774667pt;}
.x3{left:244.284000pt;}
.x80{left:246.137333pt;}
.x68{left:248.516000pt;}
.x2c{left:257.966667pt;}
.x29{left:259.216000pt;}
.x49{left:262.746667pt;}
.x6d{left:270.198667pt;}
.xc{left:273.478667pt;}
.x5c{left:274.529333pt;}
.x47{left:277.565333pt;}
.x44{left:279.340000pt;}
.x4d{left:282.057333pt;}
.x2f{left:284.657333pt;}
.x5d{left:286.572000pt;}
.x45{left:290.337333pt;}
.x7{left:293.149333pt;}
.x2d{left:294.585333pt;}
.x7c{left:295.614667pt;}
.x2b{left:301.516000pt;}
.x6f{left:306.678667pt;}
.x51{left:309.805333pt;}
.x27{left:310.884000pt;}
.x4e{left:313.713333pt;}
.x4{left:316.888000pt;}
.x5e{left:317.908000pt;}
.x62{left:320.910667pt;}
.x3c{left:323.304000pt;}
.x1f{left:325.926667pt;}
.x3b{left:328.102667pt;}
.x1c{left:331.561333pt;}
.x5{left:333.781333pt;}
.x48{left:337.441333pt;}
.x6{left:339.008000pt;}
.xe{left:340.090667pt;}
.x5f{left:341.313333pt;}
.x74{left:342.590667pt;}
.x3f{left:347.622667pt;}
.x8{left:349.013333pt;}
.x35{left:355.545333pt;}
.x3e{left:357.158667pt;}
.x75{left:358.125333pt;}
.x28{left:359.585333pt;}
.x9{left:360.858667pt;}
.x17{left:363.736000pt;}
.x7d{left:365.309333pt;}
.x46{left:371.296000pt;}
.x38{left:372.334667pt;}
.x59{left:376.562667pt;}
.x2a{left:379.462667pt;}
.x3d{left:381.717333pt;}
.x20{left:391.564000pt;}
.x25{left:397.212000pt;}
.x24{left:398.446667pt;}
.x7e{left:400.901333pt;}
.x72{left:401.988000pt;}
.x76{left:410.968000pt;}
.x54{left:415.782667pt;}
.x66{left:424.880000pt;}
.x21{left:426.249333pt;}
.x73{left:431.930667pt;}
.x67{left:451.121333pt;}
.xf{left:454.897333pt;}
.x77{left:460.048000pt;}
.x78{left:483.053333pt;}
.x42{left:484.341333pt;}
.x63{left:494.072000pt;}
.x7f{left:505.194667pt;}
.x43{left:509.742667pt;}
.x64{left:516.040000pt;}
.x65{left:531.258667pt;}
.x40{left:539.478667pt;}
.x52{left:557.068000pt;}
.x57{left:560.850667pt;}
.x31{left:562.456000pt;}
.x41{left:566.614667pt;}
.x53{left:575.225333pt;}
.x60{left:578.332000pt;}
.x58{left:584.580000pt;}
.x79{left:586.753333pt;}
.x32{left:597.141333pt;}
.x61{left:600.284000pt;}
.x7a{left:609.529333pt;}
.x4a{left:638.432000pt;}
.x39{left:642.505333pt;}
.x4b{left:650.473333pt;}
.x33{left:654.958667pt;}
.x6a{left:659.033333pt;}
.x4c{left:666.226667pt;}
.x22{left:667.566667pt;}
.x3a{left:668.914667pt;}
.x34{left:677.973333pt;}
.x6b{left:688.820000pt;}
.x23{left:690.276000pt;}
.x5b{left:694.562667pt;}
.x56{left:703.122667pt;}
.x16{left:710.396000pt;}
}




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