
    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_016b0c637e9902f4aa29961d.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_a2b0b9e085b5919d5696cea7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_580f8a1c41023abc0d59bd1d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2e09a25261297eef0cec3d74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.049000;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_ac321b6216cfa00c2f092f01.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_573b4b4531990304ce79c8d1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20dec6a9e69ac01c9d3450ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ff1e5f5c724a77366ee3f2dc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_04805d50895cd65e6167dcbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_3b5cfba17b9458738955951b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_621fbd280c0087b4253fd457.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.949000;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_ee4f1b9c04f01af90cdaae14.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_28df6b077142ac8ba3797dd7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e78f41184b9a72dfd5249ecf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.913086;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_ef24d27e7c28b48fc4c7d77b.woff2')format("woff");}.fff{font-family:fff;line-height:0.925293;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_98a2639da5c99441e11a6287.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_baa1ef9127d66cd2c0f2ac1a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.925293;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_02926678bfe07c814c7e78a4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926270;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_59d5c2e9212a7c21c2066f39.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.699000;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_a3098bdfdb06f54d5e670463.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.637000;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_fcc21b27b0138f7f7e57978c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.687988;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_162f3875dc3c595b083f13b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.936523;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_ee05689ee32a5204711515b8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.932129;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_942eb8926cb450a67453f53c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.905762;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_fd394222095fd6bb692211c6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.932129;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_54c83886aad8b56961e7c01d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_39829935bf961b8c915f8c13.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c6f3efd664e2e7e39f8e6676.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_3b24d3faa7661bcb1873011f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_6e0f2c65213c717f7bd93dd5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_6ea0b2daadc3253dfc91023b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_ff93827c7f369fe4045810ea.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_9f77f0c533d6b25074018a55.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_7628337eaa34e82511d6ac27.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.603000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_bbd70b756cc3a42cd82e1adf.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_58b9ee1c9f9fd144c7cef62b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_3b24d3faa7661bcb1873011f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_6e0f2c65213c717f7bd93dd5.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_95048f60b9f68967288e00fd.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.247000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_f59f087725a028ea87cd9fb0.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910000;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;}
.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);}
.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:-20.170322px;}
.v3{vertical-align:-7.780860px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls21{letter-spacing:-0.219340px;}
.ls9{letter-spacing:-0.109661px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000564px;}
.ls28{letter-spacing:0.002338px;}
.ls4{letter-spacing:0.032829px;}
.ls20{letter-spacing:0.124674px;}
.ls8{letter-spacing:0.249327px;}
.ls5{letter-spacing:0.314288px;}
.ls7{letter-spacing:0.327241px;}
.ls1a{letter-spacing:0.436333px;}
.ls1b{letter-spacing:0.498667px;}
.ls1d{letter-spacing:0.498697px;}
.ls1c{letter-spacing:0.529833px;}
.ls1f{letter-spacing:0.623371px;}
.ls1e{letter-spacing:0.628629px;}
.ls13{letter-spacing:8.674191px;}
.lsf{letter-spacing:8.680191px;}
.ls1{letter-spacing:13.277937px;}
.ls26{letter-spacing:14.133031px;}
.ls19{letter-spacing:18.420382px;}
.ls16{letter-spacing:18.421336px;}
.lsc{letter-spacing:18.422004px;}
.ls23{letter-spacing:18.426144px;}
.ls15{letter-spacing:18.426382px;}
.ls18{letter-spacing:18.427559px;}
.lsd{letter-spacing:18.428004px;}
.ls22{letter-spacing:18.432144px;}
.ls27{letter-spacing:18.621031px;}
.ls3{letter-spacing:19.016685px;}
.lse{letter-spacing:19.753336px;}
.ls24{letter-spacing:19.753559px;}
.ls29{letter-spacing:19.923199px;}
.ls10{letter-spacing:20.380191px;}
.ls2a{letter-spacing:20.511031px;}
.ls12{letter-spacing:23.353419px;}
.ls14{letter-spacing:26.252316px;}
.ls2b{letter-spacing:26.997031px;}
.lsa{letter-spacing:29.881524px;}
.ls6{letter-spacing:29.883008px;}
.lsb{letter-spacing:119.521524px;}
.ls11{letter-spacing:209.161524px;}
.ls25{letter-spacing:246.019524px;}
.ls17{letter-spacing:298.807524px;}
.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;}
}
.ws11a{word-spacing:-55.293996px;}
.ws4a{word-spacing:-30.545332px;}
.ws51{word-spacing:-29.881822px;}
.wsc4{word-spacing:-27.641618px;}
.wsbd{word-spacing:-16.611639px;}
.ws8d{word-spacing:-16.551864px;}
.ws13c{word-spacing:-16.372537px;}
.ws12b{word-spacing:-15.894332px;}
.ws6d{word-spacing:-15.834556px;}
.ws123{word-spacing:-15.774781px;}
.wsfb{word-spacing:-15.655230px;}
.ws13f{word-spacing:-15.356352px;}
.ws54{word-spacing:-15.296576px;}
.ws114{word-spacing:-15.236800px;}
.ws74{word-spacing:-15.177025px;}
.ws3e{word-spacing:-15.117249px;}
.ws73{word-spacing:-14.758596px;}
.ws86{word-spacing:-14.698820px;}
.ws7b{word-spacing:-14.519493px;}
.wsbe{word-spacing:-14.437051px;}
.ws13{word-spacing:-14.383753px;}
.ws14{word-spacing:-14.376695px;}
.ws15{word-spacing:-14.353413px;}
.ws148{word-spacing:-14.299615px;}
.ws1b{word-spacing:-14.280391px;}
.ws151{word-spacing:-14.192018px;}
.wsf5{word-spacing:-14.160840px;}
.ws83{word-spacing:-14.041288px;}
.ws113{word-spacing:-13.987490px;}
.ws128{word-spacing:-13.981513px;}
.ws53{word-spacing:-13.921737px;}
.wsb9{word-spacing:-13.861962px;}
.ws37{word-spacing:-13.802186px;}
.ws78{word-spacing:-13.742410px;}
.ws2d{word-spacing:-13.682635px;}
.wsfc{word-spacing:-13.503308px;}
.ws166{word-spacing:-13.492639px;}
.ws160{word-spacing:-13.331244px;}
.wsb6{word-spacing:-13.329959px;}
.ws2c{word-spacing:-13.323981px;}
.ws19{word-spacing:-13.204430px;}
.wsb5{word-spacing:-13.144654px;}
.wsb3{word-spacing:-13.084879px;}
.wsf6{word-spacing:-13.031081px;}
.wsf8{word-spacing:-13.025103px;}
.ws12c{word-spacing:-12.965328px;}
.ws50{word-spacing:-12.905552px;}
.ws165{word-spacing:-12.900856px;}
.ws5b{word-spacing:-12.845776px;}
.wsb{word-spacing:-12.793260px;}
.ws6e{word-spacing:-12.786001px;}
.ws70{word-spacing:-12.726225px;}
.ws12a{word-spacing:-12.606674px;}
.ws5c{word-spacing:-12.487123px;}
.ws138{word-spacing:-12.427347px;}
.ws3c{word-spacing:-12.307796px;}
.ws2e{word-spacing:-12.248020px;}
.ws84{word-spacing:-12.188245px;}
.wsb0{word-spacing:-12.128469px;}
.ws14b{word-spacing:-12.093880px;}
.ws6f{word-spacing:-12.068694px;}
.ws145{word-spacing:-11.986284px;}
.ws142{word-spacing:-11.949142px;}
.ws156{word-spacing:-11.932485px;}
.ws31{word-spacing:-11.889367px;}
.ws7{word-spacing:-11.824888px;}
.ws96{word-spacing:-11.775793px;}
.wsf3{word-spacing:-11.769816px;}
.ws15f{word-spacing:-11.717292px;}
.ws66{word-spacing:-11.710040px;}
.ws168{word-spacing:-11.663493px;}
.wsfa{word-spacing:-11.650264px;}
.ws6b{word-spacing:-11.590489px;}
.ws167{word-spacing:-11.555896px;}
.ws1a{word-spacing:-11.530713px;}
.ws61{word-spacing:-11.470938px;}
.ws2a{word-spacing:-11.411162px;}
.ws8f{word-spacing:-11.378243px;}
.wsf9{word-spacing:-11.351386px;}
.ws7f{word-spacing:-11.291611px;}
.wsf2{word-spacing:-11.231835px;}
.ws1e{word-spacing:-11.172060px;}
.wsed{word-spacing:-11.117473px;}
.ws20{word-spacing:-11.112284px;}
.ws13b{word-spacing:-11.052508px;}
.ws11f{word-spacing:-10.932957px;}
.wsf4{word-spacing:-10.879159px;}
.ws79{word-spacing:-10.873182px;}
.ws158{word-spacing:-10.856517px;}
.wsf7{word-spacing:-10.819384px;}
.ws4e{word-spacing:-10.813406px;}
.ws5a{word-spacing:-10.693855px;}
.ws12d{word-spacing:-10.634079px;}
.ws153{word-spacing:-10.587525px;}
.ws68{word-spacing:-10.574304px;}
.ws106{word-spacing:-10.514528px;}
.ws90{word-spacing:-10.460730px;}
.ws7e{word-spacing:-10.454752px;}
.wsc{word-spacing:-10.426130px;}
.wsb4{word-spacing:-10.394977px;}
.ws28{word-spacing:-10.335201px;}
.ws63{word-spacing:-10.275426px;}
.wsee{word-spacing:-10.221628px;}
.wsd8{word-spacing:-10.215650px;}
.ws14e{word-spacing:-10.103340px;}
.ws141{word-spacing:-10.036323px;}
.ws2{word-spacing:-9.976548px;}
.wsa6{word-spacing:-9.962598px;}
.ws5d{word-spacing:-9.916772px;}
.ws147{word-spacing:-9.888146px;}
.ws3d{word-spacing:-9.737445px;}
.ws4f{word-spacing:-9.677670px;}
.ws34{word-spacing:-9.558118px;}
.ws26{word-spacing:-9.459090px;}
.ws15d{word-spacing:-9.403960px;}
.wsa3{word-spacing:-9.378792px;}
.ws38{word-spacing:-9.319016px;}
.ws152{word-spacing:-9.296364px;}
.ws9a{word-spacing:-9.259240px;}
.ws11{word-spacing:-9.242565px;}
.wsdd{word-spacing:-9.240685px;}
.ws104{word-spacing:-9.239892px;}
.wsc3{word-spacing:-9.230335px;}
.wse2{word-spacing:-9.228887px;}
.wsc1{word-spacing:-9.228839px;}
.wsd1{word-spacing:-9.224104px;}
.ws103{word-spacing:-9.221459px;}
.wse7{word-spacing:-9.221361px;}
.wse6{word-spacing:-9.221336px;}
.wsd9{word-spacing:-9.220969px;}
.wsd0{word-spacing:-9.218968px;}
.wsc6{word-spacing:-9.218820px;}
.wse8{word-spacing:-9.218170px;}
.ws102{word-spacing:-9.217736px;}
.wsec{word-spacing:-9.217152px;}
.ws105{word-spacing:-9.214961px;}
.wscd{word-spacing:-9.214858px;}
.wsc7{word-spacing:-9.214483px;}
.wsea{word-spacing:-9.214447px;}
.wsda{word-spacing:-9.213830px;}
.wse9{word-spacing:-9.213354px;}
.ws118{word-spacing:-9.212863px;}
.wse3{word-spacing:-9.212544px;}
.wse5{word-spacing:-9.212314px;}
.wseb{word-spacing:-9.211154px;}
.wse1{word-spacing:-9.211033px;}
.wsdf{word-spacing:-9.206314px;}
.wse4{word-spacing:-9.194916px;}
.ws115{word-spacing:-9.193724px;}
.wsdc{word-spacing:-9.189558px;}
.ws4{word-spacing:-9.188767px;}
.wsdb{word-spacing:-9.188592px;}
.ws10a{word-spacing:-9.145667px;}
.ws107{word-spacing:-9.139689px;}
.ws9b{word-spacing:-9.079914px;}
.ws94{word-spacing:-9.020138px;}
.ws92{word-spacing:-9.017473px;}
.ws64{word-spacing:-8.960362px;}
.ws67{word-spacing:-8.900587px;}
.ws164{word-spacing:-8.865976px;}
.ws22{word-spacing:-8.840811px;}
.ws163{word-spacing:-8.812178px;}
.ws35{word-spacing:-8.787013px;}
.ws43{word-spacing:-8.661484px;}
.wsb8{word-spacing:-8.607686px;}
.ws44{word-spacing:-8.601709px;}
.ws65{word-spacing:-8.541933px;}
.ws161{word-spacing:-8.489388px;}
.wsc2{word-spacing:-8.446836px;}
.ws2b{word-spacing:-8.422382px;}
.ws108{word-spacing:-8.368584px;}
.ws7a{word-spacing:-8.362606px;}
.ws93{word-spacing:-8.308808px;}
.ws48{word-spacing:-8.302831px;}
.ws4d{word-spacing:-8.243055px;}
.ws21{word-spacing:-8.183280px;}
.ws55{word-spacing:-8.123504px;}
.wsd{word-spacing:-8.005202px;}
.wsfd{word-spacing:-8.003953px;}
.ws45{word-spacing:-7.944177px;}
.ws116{word-spacing:-7.892354px;}
.ws119{word-spacing:-7.886863px;}
.ws69{word-spacing:-7.884402px;}
.ws11c{word-spacing:-7.883489px;}
.wscc{word-spacing:-7.878161px;}
.wsc9{word-spacing:-7.873025px;}
.ws146{word-spacing:-7.843807px;}
.ws24{word-spacing:-7.824626px;}
.ws15a{word-spacing:-7.790008px;}
.ws6a{word-spacing:-7.764850px;}
.ws15c{word-spacing:-7.736210px;}
.ws75{word-spacing:-7.730187px;}
.ws33{word-spacing:-7.705075px;}
.ws77{word-spacing:-7.645299px;}
.ws6c{word-spacing:-7.591501px;}
.ws9c{word-spacing:-7.585524px;}
.ws1c{word-spacing:-7.525748px;}
.ws80{word-spacing:-7.450798px;}
.ws109{word-spacing:-7.412174px;}
.ws127{word-spacing:-7.406197px;}
.ws1d{word-spacing:-7.346421px;}
.ws47{word-spacing:-7.286646px;}
.ws157{word-spacing:-7.252024px;}
.ws121{word-spacing:-7.167094px;}
.ws155{word-spacing:-7.144428px;}
.ws9e{word-spacing:-7.113296px;}
.ws9d{word-spacing:-7.107319px;}
.ws110{word-spacing:-6.950583px;}
.ws10e{word-spacing:-6.927992px;}
.ws82{word-spacing:-6.868216px;}
.ws10f{word-spacing:-6.825909px;}
.ws41{word-spacing:-6.808441px;}
.ws7c{word-spacing:-6.688890px;}
.ws30{word-spacing:-6.629114px;}
.ws122{word-spacing:-6.575316px;}
.wsf0{word-spacing:-6.569338px;}
.wsf{word-spacing:-6.391250px;}
.ws10{word-spacing:-6.337452px;}
.wsa{word-spacing:-6.283653px;}
.ws3a{word-spacing:-6.150909px;}
.ws14a{word-spacing:-6.122258px;}
.ws32{word-spacing:-6.091134px;}
.ws8e{word-spacing:-6.031358px;}
.ws13d{word-spacing:-5.971582px;}
.ws8a{word-spacing:-5.911807px;}
.ws143{word-spacing:-5.732480px;}
.ws95{word-spacing:-5.678682px;}
.ws124{word-spacing:-5.672704px;}
.ws57{word-spacing:-5.612929px;}
.wsa1{word-spacing:-5.598381px;}
.ws56{word-spacing:-5.553153px;}
.ws3b{word-spacing:-5.493378px;}
.ws4c{word-spacing:-5.373826px;}
.ws14d{word-spacing:-5.207685px;}
.ws5f{word-spacing:-5.194500px;}
.ws72{word-spacing:-5.150939px;}
.ws10d{word-spacing:-5.134724px;}
.ws40{word-spacing:-5.015173px;}
.ws9{word-spacing:-4.992492px;}
.ws91{word-spacing:-4.960487px;}
.ws134{word-spacing:-4.955397px;}
.ws81{word-spacing:-4.895622px;}
.ws1f{word-spacing:-4.835846px;}
.wsd7{word-spacing:-4.776070px;}
.ws85{word-spacing:-4.766187px;}
.wsd5{word-spacing:-4.748377px;}
.wsf1{word-spacing:-4.716295px;}
.ws132{word-spacing:-4.656519px;}
.ws136{word-spacing:-4.477192px;}
.ws16c{word-spacing:-4.454508px;}
.ws18{word-spacing:-4.417417px;}
.wsd6{word-spacing:-4.363619px;}
.ws71{word-spacing:-4.178314px;}
.ws46{word-spacing:-4.118539px;}
.ws17{word-spacing:-4.058763px;}
.ws59{word-spacing:-3.939212px;}
.ws42{word-spacing:-3.879436px;}
.ws16b{word-spacing:-3.862725px;}
.ws149{word-spacing:-3.808927px;}
.ws97{word-spacing:-3.783447px;}
.ws99{word-spacing:-3.759885px;}
.ws58{word-spacing:-3.700110px;}
.ws162{word-spacing:-3.647532px;}
.wsd4{word-spacing:-3.640334px;}
.ws62{word-spacing:-3.580558px;}
.ws13e{word-spacing:-3.520783px;}
.ws98{word-spacing:-3.466985px;}
.ws29{word-spacing:-3.461007px;}
.ws120{word-spacing:-3.341456px;}
.ws11e{word-spacing:-3.281680px;}
.ws14c{word-spacing:-3.217144px;}
.ws154{word-spacing:-3.109548px;}
.ws15b{word-spacing:-3.055749px;}
.ws27{word-spacing:-2.982802px;}
.ws140{word-spacing:-2.923027px;}
.ws39{word-spacing:-2.803476px;}
.ws2f{word-spacing:-2.743700px;}
.ws36{word-spacing:-2.564373px;}
.ws60{word-spacing:-2.522187px;}
.wsa4{word-spacing:-2.145944px;}
.ws8b{word-spacing:-2.026393px;}
.ws8c{word-spacing:-1.853044px;}
.ws159{word-spacing:-1.818386px;}
.ws49{word-spacing:-1.727515px;}
.ws7d{word-spacing:-1.711179px;}
.ws8{word-spacing:-1.710789px;}
.ws4b{word-spacing:-1.667739px;}
.wse{word-spacing:-1.549394px;}
.wsb1{word-spacing:-1.548188px;}
.ws10b{word-spacing:-1.488412px;}
.ws16a{word-spacing:-1.387999px;}
.wsb2{word-spacing:-1.368861px;}
.wsd3{word-spacing:-1.057472px;}
.ws23{word-spacing:-0.950432px;}
.ws88{word-spacing:-0.830881px;}
.ws169{word-spacing:-0.796216px;}
.ws76{word-spacing:-0.757416px;}
.ws87{word-spacing:-0.651554px;}
.ws111{word-spacing:-0.647679px;}
.ws100{word-spacing:-0.561000px;}
.wsbc{word-spacing:-0.532003px;}
.wsef{word-spacing:-0.472227px;}
.wsfe{word-spacing:-0.467500px;}
.wsaf{word-spacing:-0.418429px;}
.wsae{word-spacing:-0.412452px;}
.wsa9{word-spacing:-0.342824px;}
.wsac{word-spacing:-0.323811px;}
.wsab{word-spacing:-0.264910px;}
.ws125{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.041843px;}
.wsaa{word-spacing:-0.015583px;}
.ws25{word-spacing:0.000000px;}
.ws101{word-spacing:0.005978px;}
.wsad{word-spacing:0.091973px;}
.ws112{word-spacing:0.183962px;}
.ws3f{word-spacing:0.245080px;}
.wsba{word-spacing:0.956410px;}
.wsbb{word-spacing:1.022163px;}
.ws5e{word-spacing:2.217675px;}
.wsa7{word-spacing:2.277450px;}
.ws150{word-spacing:2.646881px;}
.ws89{word-spacing:3.127743px;}
.ws14f{word-spacing:3.991841px;}
.ws16d{word-spacing:7.919124px;}
.wsca{word-spacing:14.989142px;}
.wsb7{word-spacing:15.314624px;}
.ws126{word-spacing:16.541024px;}
.ws139{word-spacing:16.544624px;}
.ws12f{word-spacing:16.677504px;}
.ws15e{word-spacing:18.188354px;}
.wse0{word-spacing:18.374707px;}
.wsbf{word-spacing:18.376420px;}
.wsde{word-spacing:18.377931px;}
.wsc0{word-spacing:18.380628px;}
.wsc5{word-spacing:18.382460px;}
.ws11d{word-spacing:19.690214px;}
.ws12e{word-spacing:21.142771px;}
.ws129{word-spacing:21.937645px;}
.ws10c{word-spacing:23.268824px;}
.ws117{word-spacing:23.454605px;}
.ws11b{word-spacing:23.760240px;}
.wsa2{word-spacing:23.813024px;}
.ws9f{word-spacing:23.814824px;}
.wsa0{word-spacing:24.220271px;}
.wsc8{word-spacing:24.463926px;}
.ws135{word-spacing:24.836624px;}
.ws144{word-spacing:25.074584px;}
.ws137{word-spacing:25.712624px;}
.ws52{word-spacing:26.827469px;}
.ws133{word-spacing:26.912592px;}
.ws12{word-spacing:27.606115px;}
.ws13a{word-spacing:28.273859px;}
.ws6{word-spacing:29.834008px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.wscb{word-spacing:42.574829px;}
.ws16{word-spacing:80.625869px;}
.wsd2{word-spacing:119.475205px;}
.wscf{word-spacing:209.121205px;}
.wsce{word-spacing:298.761205px;}
.wsa5{word-spacing:348.901055px;}
.ws130{word-spacing:422.650990px;}
.ws131{word-spacing:422.704788px;}
.wsff{word-spacing:515.595878px;}
.wsa8{word-spacing:1145.173083px;}
._16{margin-left:-568.809847px;}
._8{margin-left:-6.063501px;}
._3{margin-left:-4.961375px;}
._6{margin-left:-3.750372px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.560154px;}
._2{width:1.673717px;}
._1{width:2.970990px;}
._a{width:4.278819px;}
._14{width:5.646379px;}
._9{width:9.982525px;}
._12{width:15.585911px;}
._20{width:16.775435px;}
._b{width:18.688254px;}
._18{width:20.427734px;}
._f{width:22.095463px;}
._10{width:23.111648px;}
._d{width:24.785365px;}
._e{width:25.921102px;}
._1a{width:26.997062px;}
._c{width:28.192574px;}
._19{width:29.887800px;}
._21{width:32.019412px;}
._13{width:33.153949px;}
._1d{width:34.844411px;}
._22{width:36.905702px;}
._23{width:39.334895px;}
._1e{width:42.003504px;}
._7{width:68.733488px;}
._11{width:80.697600px;}
._1f{width:143.049946px;}
._5{width:170.648525px;}
._15{width:206.084676px;}
._1b{width:215.270481px;}
._24{width:224.662118px;}
._27{width:246.181478px;}
._17{width:324.310464px;}
._28{width:450.292608px;}
._2a{width:464.441587px;}
._1c{width:468.679854px;}
._29{width:475.201267px;}
._26{width:499.906655px;}
._25{width:574.943501px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(215,155,0);}
.fc4{color:rgb(111,0,0);}
.fc3{color:rgb(0,29,188);}
.fc2{color:rgb(0,87,0);}
.fc1{color:transparent;}
.fc6{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.523867px;}
.fsa{font-size:15.582928px;}
.fsb{font-size:16.326630px;}
.fsd{font-size:17.687182px;}
.fs11{font-size:19.049371px;}
.fse{font-size:31.166667px;}
.fsf{font-size:31.168533px;}
.fs10{font-size:32.656064px;}
.fs5{font-size:34.025505px;}
.fs7{font-size:34.736479px;}
.fs12{font-size:35.377403px;}
.fs9{font-size:35.858351px;}
.fs6{font-size:39.078539px;}
.fs8{font-size:40.340645px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yd0{bottom:7.474385px;}
.ya4{bottom:9.513991px;}
.yfb{bottom:12.110392px;}
.yfa{bottom:12.482401px;}
.yf8{bottom:20.116242px;}
.y186{bottom:23.947532px;}
.y185{bottom:24.691614px;}
.ya5{bottom:28.510503px;}
.y2c{bottom:31.173944px;}
.yd1{bottom:36.049008px;}
.y2b{bottom:40.497873px;}
.ya3{bottom:44.793227px;}
.yf1{bottom:53.978184px;}
.yf0{bottom:64.623632px;}
.y9c{bottom:68.674556px;}
.y2a{bottom:75.004613px;}
.yef{bottom:75.269080px;}
.y9b{bottom:80.615221px;}
.yf9{bottom:113.264643px;}
.ya0{bottom:114.808942px;}
.y182{bottom:120.100440px;}
.yee{bottom:122.333165px;}
.y9a{bottom:123.493062px;}
.y31{bottom:125.260863px;}
.y9f{bottom:126.206849px;}
.y183{bottom:129.407770px;}
.yed{bottom:133.538900px;}
.y30{bottom:134.557449px;}
.y9e{bottom:138.147514px;}
.y29{bottom:149.185900px;}
.y99{bottom:156.058510px;}
.ye9{bottom:159.872377px;}
.ya2{bottom:166.913660px;}
.y2f{bottom:168.654045px;}
.y98{bottom:182.653627px;}
.y34{bottom:188.641705px;}
.y171{bottom:189.096512px;}
.y6d{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y2e{bottom:194.383714px;}
.y97{bottom:194.594291px;}
.yf4{bottom:198.831000px;}
.ya1{bottom:199.479109px;}
.yea{bottom:200.213021px;}
.y170{bottom:201.437820px;}
.y2d{bottom:203.680300px;}
.y33{bottom:206.168504px;}
.y1ea{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.y138{bottom:212.511000px;}
.y32{bottom:215.492433px;}
.yf3{bottom:216.763500px;}
.y9d{bottom:219.018378px;}
.y96{bottom:221.189408px;}
.yec{bottom:223.184778px;}
.y1e9{bottom:226.492500px;}
.y184{bottom:226.548742px;}
.y137{bottom:227.455500px;}
.y24{bottom:229.482000px;}
.y1a2{bottom:230.130000px;}
.y173{bottom:233.680500px;}
.yeb{bottom:234.390512px;}
.yf2{bottom:234.696000px;}
.y188{bottom:238.615500px;}
.y136{bottom:242.398500px;}
.y1e8{bottom:242.931000px;}
.yb8{bottom:246.265500px;}
.y23{bottom:247.414500px;}
.y1a1{bottom:248.062500px;}
.y6c{bottom:249.030000px;}
.y172{bottom:251.613000px;}
.ye8{bottom:253.440261px;}
.y95{bottom:253.754857px;}
.y187{bottom:256.548000px;}
.y135{bottom:257.343000px;}
.y1e7{bottom:259.915500px;}
.ycf{bottom:262.192500px;}
.yb7{bottom:264.198000px;}
.y22{bottom:265.347000px;}
.y1a0{bottom:265.995000px;}
.y6b{bottom:266.962500px;}
.yda{bottom:269.128290px;}
.y134{bottom:272.287500px;}
.y110{bottom:272.505000px;}
.y159{bottom:274.846500px;}
.y1e6{bottom:276.354000px;}
.y16f{bottom:279.109500px;}
.y92{bottom:280.892731px;}
.yd9{bottom:281.454598px;}
.yb6{bottom:282.132000px;}
.y21{bottom:283.279500px;}
.y19f{bottom:283.927500px;}
.y181{bottom:284.044500px;}
.y90{bottom:284.650500px;}
.y6a{bottom:284.896500px;}
.y133{bottom:287.230500px;}
.yde{bottom:288.738325px;}
.y158{bottom:289.791000px;}
.y10f{bottom:290.437500px;}
.y1e5{bottom:293.338500px;}
.y20{bottom:301.213500px;}
.y19e{bottom:301.860000px;}
.y132{bottom:302.175000px;}
.y69{bottom:302.829000px;}
.y94{bottom:305.316817px;}
.yb5{bottom:306.276000px;}
.y10e{bottom:308.371500px;}
.y1e4{bottom:309.777000px;}
.y157{bottom:310.479000px;}
.y131{bottom:317.119500px;}
.y1f{bottom:319.146000px;}
.ye4{bottom:319.554096px;}
.y19d{bottom:319.792500px;}
.y68{bottom:320.761500px;}
.yb4{bottom:324.208500px;}
.y10d{bottom:325.104000px;}
.y156{bottom:325.422000px;}
.y1e3{bottom:326.215500px;}
.y130{bottom:332.062500px;}
.y8f{bottom:333.843000px;}
.ye3{bottom:336.922985px;}
.y1e{bottom:337.078500px;}
.y67{bottom:338.694000px;}
.y155{bottom:340.366500px;}
.yb3{bottom:342.141000px;}
.y1e2{bottom:342.654000px;}
.y10c{bottom:343.036500px;}
.y12f{bottom:351.423000px;}
.y8e{bottom:351.775500px;}
.y93{bottom:354.164990px;}
.y1d{bottom:355.011000px;}
.y154{bottom:355.311000px;}
.y66{bottom:356.626500px;}
.y19c{bottom:358.896000px;}
.y1e1{bottom:359.092500px;}
.yb2{bottom:360.073500px;}
.y10b{bottom:360.970500px;}
.ye2{bottom:366.057895px;}
.y8d{bottom:369.708000px;}
.y153{bottom:370.254000px;}
.y1c{bottom:372.943500px;}
.y65{bottom:374.559000px;}
.y46{bottom:375.484500px;}
.y1e0{bottom:375.531000px;}
.y19b{bottom:376.828500px;}
.ye1{bottom:377.263630px;}
.y10a{bottom:377.703000px;}
.yb1{bottom:378.006000px;}
.y1bf{bottom:382.564500px;}
.y152{bottom:385.198500px;}
.y8c{bottom:387.642000px;}
.yce{bottom:390.876000px;}
.y1b{bottom:390.877500px;}
.y1df{bottom:391.969500px;}
.y64{bottom:392.493000px;}
.y45{bottom:393.418500px;}
.y19a{bottom:394.762500px;}
.y109{bottom:395.635500px;}
.y151{bottom:400.143000px;}
.yb0{bottom:403.300500px;}
.y8b{bottom:405.574500px;}
.ye5{bottom:408.639687px;}
.y1a{bottom:408.810000px;}
.y1de{bottom:408.954000px;}
.y63{bottom:410.425500px;}
.y44{bottom:411.351000px;}
.y199{bottom:412.695000px;}
.y108{bottom:413.569500px;}
.y150{bottom:415.086000px;}
.y8a{bottom:423.781500px;}
.y1dd{bottom:425.392500px;}
.y19{bottom:426.742500px;}
.y12e{bottom:426.918000px;}
.y43{bottom:429.283500px;}
.y62{bottom:429.973500px;}
.y14f{bottom:430.030500px;}
.y198{bottom:430.627500px;}
.y107{bottom:437.460000px;}
.y1be{bottom:440.005500px;}
.ye0{bottom:441.696604px;}
.y89{bottom:441.714000px;}
.y1dc{bottom:442.377000px;}
.yaf{bottom:443.536500px;}
.y18{bottom:444.675000px;}
.y12d{bottom:444.852000px;}
.y42{bottom:447.216000px;}
.y61{bottom:447.906000px;}
.y14e{bottom:449.389500px;}
.y106{bottom:455.392500px;}
.y1bd{bottom:457.938000px;}
.y1db{bottom:458.815500px;}
.y88{bottom:459.646500px;}
.ye7{bottom:460.746353px;}
.yae{bottom:461.469000px;}
.y17{bottom:462.607500px;}
.y12c{bottom:462.784500px;}
.y41{bottom:465.148500px;}
.y60{bottom:465.840000px;}
.y197{bottom:469.731000px;}
.ye6{bottom:471.952088px;}
.y105{bottom:473.326500px;}
.y1da{bottom:475.254000px;}
.y1bc{bottom:475.872000px;}
.y87{bottom:477.579000px;}
.yad{bottom:479.403000px;}
.y16{bottom:480.540000px;}
.y40{bottom:483.081000px;}
.y5f{bottom:483.772500px;}
.y104{bottom:491.259000px;}
.y1d9{bottom:491.692500px;}
.y12b{bottom:491.967000px;}
.y1bb{bottom:493.804500px;}
.y86{bottom:495.511500px;}
.ycd{bottom:497.020500px;}
.yac{bottom:497.335500px;}
.y15{bottom:498.474000px;}
.y3f{bottom:501.015000px;}
.ydf{bottom:503.328145px;}
.y1d8{bottom:508.677000px;}
.y103{bottom:509.191500px;}
.y12a{bottom:509.899500px;}
.y1ba{bottom:511.737000px;}
.y85{bottom:513.445500px;}
.ycc{bottom:514.953000px;}
.yab{bottom:515.268000px;}
.y3e{bottom:518.947500px;}
.y196{bottom:520.789500px;}
.yd8{bottom:521.257320px;}
.y1d7{bottom:525.115500px;}
.y102{bottom:527.124000px;}
.y5e{bottom:527.716500px;}
.y129{bottom:527.832000px;}
.ydb{bottom:528.541048px;}
.y1b9{bottom:529.669500px;}
.y84{bottom:531.378000px;}
.ycb{bottom:532.885500px;}
.yaa{bottom:533.200500px;}
.y14{bottom:533.343000px;}
.yd7{bottom:533.583628px;}
.y3d{bottom:536.880000px;}
.y195{bottom:538.722000px;}
.y1d6{bottom:541.552500px;}
.y101{bottom:545.056500px;}
.y128{bottom:545.764500px;}
.y1b8{bottom:547.602000px;}
.y83{bottom:549.310500px;}
.yca{bottom:550.818000px;}
.ya9{bottom:551.133000px;}
.y16e{bottom:551.616000px;}
.y3c{bottom:554.812500px;}
.y194{bottom:556.654500px;}
.y1d5{bottom:558.538500px;}
.y180{bottom:562.101000px;}
.y127{bottom:563.697000px;}
.y1b7{bottom:565.534500px;}
.yc9{bottom:568.750500px;}
.y16d{bottom:569.548500px;}
.ydd{bottom:570.562553px;}
.y200{bottom:571.905000px;}
.y3b{bottom:572.745000px;}
.y193{bottom:574.587000px;}
.y1d4{bottom:574.975500px;}
.yd6{bottom:576.725707px;}
.y17f{bottom:580.033500px;}
.y82{bottom:580.569000px;}
.y13{bottom:582.844500px;}
.y1b6{bottom:583.468500px;}
.y5d{bottom:583.617000px;}
.yc8{bottom:586.684500px;}
.y16c{bottom:587.481000px;}
.ya8{bottom:588.121500px;}
.y1ff{bottom:588.343500px;}
.yd5{bottom:589.052015px;}
.y3a{bottom:590.679000px;}
.y1d3{bottom:591.961500px;}
.y192{bottom:592.519500px;}
.y17e{bottom:600.768000px;}
.y1b5{bottom:601.401000px;}
.y5c{bottom:601.549500px;}
.y1fe{bottom:604.782000px;}
.y16b{bottom:605.415000px;}
.ya7{bottom:606.054000px;}
.y1d2{bottom:608.398500px;}
.y39{bottom:608.611500px;}
.y191{bottom:611.100000px;}
.y12{bottom:615.472500px;}
.y14d{bottom:618.147000px;}
.y17d{bottom:618.700500px;}
.y5b{bottom:619.483500px;}
.y1fd{bottom:621.220500px;}
.y100{bottom:622.089000px;}
.y16a{bottom:623.347500px;}
.ya6{bottom:623.988000px;}
.yc7{bottom:624.085500px;}
.y1d1{bottom:624.837000px;}
.y38{bottom:626.544000px;}
.ydc{bottom:626.591226px;}
.y81{bottom:626.772000px;}
.y190{bottom:629.032500px;}
.y11{bottom:631.911000px;}
.y14c{bottom:633.091500px;}
.y17c{bottom:636.633000px;}
.y5a{bottom:637.416000px;}
.y1fc{bottom:637.659000px;}
.yff{bottom:640.021500px;}
.y169{bottom:641.280000px;}
.y1d0{bottom:641.821500px;}
.y37{bottom:644.476500px;}
.y80{bottom:644.706000px;}
.y1b4{bottom:646.887000px;}
.y18f{bottom:646.965000px;}
.y14b{bottom:648.036000px;}
.y10{bottom:648.349500px;}
.y91{bottom:651.484500px;}
.y126{bottom:654.051000px;}
.y1fb{bottom:654.097500px;}
.y17b{bottom:654.565500px;}
.y59{bottom:655.348500px;}
.yfe{bottom:657.954000px;}
.y1cf{bottom:658.806000px;}
.y168{bottom:659.212500px;}
.y36{bottom:662.409000px;}
.y7f{bottom:662.638500px;}
.yf{bottom:664.788000px;}
.y1b3{bottom:664.819500px;}
.y18e{bottom:664.899000px;}
.y1fa{bottom:670.536000px;}
.y17a{bottom:672.499500px;}
.y58{bottom:673.281000px;}
.y14a{bottom:674.467500px;}
.y125{bottom:674.739000px;}
.y1ce{bottom:675.244500px;}
.yfd{bottom:675.886500px;}
.yc6{bottom:676.431000px;}
.y167{bottom:677.479500px;}
.y7e{bottom:680.571000px;}
.ye{bottom:681.226500px;}
.y1b2{bottom:682.752000px;}
.y18d{bottom:682.831500px;}
.yd4{bottom:685.981620px;}
.y1f9{bottom:686.974500px;}
.y149{bottom:689.410500px;}
.y179{bottom:690.432000px;}
.y57{bottom:691.213500px;}
.y1cd{bottom:692.229000px;}
.yfc{bottom:693.820500px;}
.yc5{bottom:694.363500px;}
.y166{bottom:695.412000px;}
.y124{bottom:695.427000px;}
.yd{bottom:697.665000px;}
.yd3{bottom:698.307928px;}
.y7d{bottom:698.503500px;}
.y1b1{bottom:700.684500px;}
.y18c{bottom:700.764000px;}
.y1f8{bottom:703.411500px;}
.y148{bottom:704.355000px;}
.y178{bottom:708.364500px;}
.y1cc{bottom:708.667500px;}
.y56{bottom:709.146000px;}
.y123{bottom:710.371500px;}
.yc4{bottom:712.296000px;}
.y165{bottom:713.344500px;}
.yc{bottom:714.102000px;}
.y7c{bottom:716.436000px;}
.y1b0{bottom:718.618500px;}
.y18b{bottom:718.696500px;}
.y147{bottom:719.299500px;}
.y1f7{bottom:719.850000px;}
.y35{bottom:721.831500px;}
.y1cb{bottom:725.106000px;}
.y122{bottom:725.314500px;}
.yf6{bottom:726.249000px;}
.y55{bottom:727.080000px;}
.yd2{bottom:728.003125px;}
.y177{bottom:729.099000px;}
.yc3{bottom:730.228500px;}
.yb{bottom:730.540500px;}
.y146{bottom:734.242500px;}
.y7b{bottom:734.368500px;}
.y1f6{bottom:736.288500px;}
.y1af{bottom:736.551000px;}
.y18a{bottom:736.629000px;}
.y1ca{bottom:741.544500px;}
.y54{bottom:745.012500px;}
.y121{bottom:746.002500px;}
.yf7{bottom:746.721000px;}
.ya{bottom:746.979000px;}
.y176{bottom:747.031500px;}
.yc2{bottom:748.161000px;}
.y145{bottom:749.187000px;}
.y28{bottom:749.328000px;}
.y7a{bottom:752.302500px;}
.y1f5{bottom:752.727000px;}
.y1ae{bottom:754.483500px;}
.y1c9{bottom:757.983000px;}
.y164{bottom:759.847500px;}
.y120{bottom:760.947000px;}
.y53{bottom:762.945000px;}
.y9{bottom:763.417500px;}
.y175{bottom:764.964000px;}
.yc1{bottom:766.093500px;}
.y1f4{bottom:769.165500px;}
.y144{bottom:769.875000px;}
.y79{bottom:770.235000px;}
.y1ad{bottom:772.416000px;}
.y1c8{bottom:774.421500px;}
.y11f{bottom:775.891500px;}
.y163{bottom:777.780000px;}
.y8{bottom:779.856000px;}
.y52{bottom:780.877500px;}
.y174{bottom:782.896500px;}
.yc0{bottom:784.027500px;}
.y143{bottom:784.819500px;}
.y1f3{bottom:785.604000px;}
.y78{bottom:788.167500px;}
.y1ac{bottom:790.348500px;}
.y11e{bottom:790.834500px;}
.y1c7{bottom:790.860000px;}
.y162{bottom:795.712500px;}
.y51{bottom:798.810000px;}
.y142{bottom:799.762500px;}
.ybf{bottom:801.960000px;}
.y1f2{bottom:802.042500px;}
.y189{bottom:805.779000px;}
.y77{bottom:806.374500px;}
.y1c6{bottom:807.298500px;}
.y1ab{bottom:810.205500px;}
.y11d{bottom:811.522500px;}
.y161{bottom:813.645000px;}
.y141{bottom:814.707000px;}
.y50{bottom:818.359500px;}
.y1f1{bottom:818.481000px;}
.ybe{bottom:819.892500px;}
.y76{bottom:824.307000px;}
.y11c{bottom:826.467000px;}
.y1aa{bottom:828.138000px;}
.y140{bottom:829.650000px;}
.y160{bottom:831.579000px;}
.y1f0{bottom:834.919500px;}
.y4f{bottom:836.292000px;}
.ybd{bottom:837.825000px;}
.y7{bottom:838.324500px;}
.y11b{bottom:841.410000px;}
.y75{bottom:842.239500px;}
.y1c5{bottom:844.401000px;}
.y13f{bottom:844.594500px;}
.y1ef{bottom:851.358000px;}
.y4e{bottom:854.224500px;}
.y6{bottom:854.763000px;}
.ybc{bottom:855.757500px;}
.y11a{bottom:856.354500px;}
.y13e{bottom:859.539000px;}
.y74{bottom:860.172000px;}
.y1ee{bottom:867.796500px;}
.y5{bottom:871.201500px;}
.y119{bottom:871.299000px;}
.y4d{bottom:872.157000px;}
.y13d{bottom:874.482000px;}
.yf5{bottom:877.066500px;}
.y15f{bottom:878.080500px;}
.y73{bottom:878.106000px;}
.y1ed{bottom:884.233500px;}
.y118{bottom:886.242000px;}
.y13c{bottom:889.426500px;}
.y4c{bottom:890.089500px;}
.ybb{bottom:893.158500px;}
.y1c4{bottom:894.952500px;}
.y15e{bottom:896.013000px;}
.y72{bottom:896.038500px;}
.y1ec{bottom:900.672000px;}
.y117{bottom:901.186500px;}
.y1a9{bottom:901.270500px;}
.y4{bottom:902.521500px;}
.y13b{bottom:904.371000px;}
.y4b{bottom:908.023500px;}
.y15d{bottom:913.945500px;}
.y71{bottom:913.971000px;}
.y116{bottom:916.131000px;}
.y1eb{bottom:917.110500px;}
.y13a{bottom:919.314000px;}
.y1a8{bottom:919.353000px;}
.y3{bottom:920.455500px;}
.y4a{bottom:925.956000px;}
.y115{bottom:931.074000px;}
.y15c{bottom:931.879500px;}
.y70{bottom:932.178000px;}
.y1c3{bottom:933.549000px;}
.y1a7{bottom:935.791500px;}
.y139{bottom:938.674500px;}
.y49{bottom:943.888500px;}
.yba{bottom:945.504000px;}
.y114{bottom:946.018500px;}
.y15b{bottom:949.812000px;}
.y1c2{bottom:949.987500px;}
.y6f{bottom:950.110500px;}
.y1a6{bottom:952.228500px;}
.y113{bottom:960.963000px;}
.y48{bottom:961.821000px;}
.yb9{bottom:963.436500px;}
.y1c1{bottom:966.426000px;}
.y15a{bottom:967.744500px;}
.y6e{bottom:968.043000px;}
.y1a5{bottom:968.667000px;}
.y2{bottom:972.403500px;}
.y112{bottom:975.906000px;}
.y47{bottom:981.370500px;}
.y1c0{bottom:982.864500px;}
.y1a4{bottom:985.105500px;}
.y111{bottom:995.266500px;}
.y1{bottom:999.303000px;}
.y1a3{bottom:1002.142500px;}
.y27{bottom:1038.157500px;}
.h19{height:9.068136px;}
.h16{height:10.386082px;}
.h18{height:12.244972px;}
.h1a{height:16.840823px;}
.h21{height:18.137829px;}
.h1c{height:20.772705px;}
.h1e{height:20.773949px;}
.h20{height:24.492048px;}
.h10{height:24.865077px;}
.he{height:25.289106px;}
.h14{height:25.983297px;}
.h13{height:28.167540px;}
.hd{height:28.450245px;}
.hf{height:28.469326px;}
.h12{height:29.231209px;}
.h22{height:33.684539px;}
.h9{height:35.487538px;}
.h5{height:37.443686px;}
.h4{height:40.402598px;}
.hb{height:41.902696px;}
.h7{height:44.891476px;}
.h6{height:50.283571px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.ha{height:57.471230px;}
.h1{height:60.426194px;}
.h15{height:116.709862px;}
.h17{height:117.007492px;}
.h1b{height:233.425800px;}
.h1d{height:233.439773px;}
.h1f{height:234.035083px;}
.h8{height:264.922320px;}
.hc{height:362.763929px;}
.h11{height:752.055540px;}
.h0{height:1188.000000px;}
.w4{width:207.484197px;}
.w5{width:207.484200px;}
.w2{width:306.050566px;}
.w6{width:414.979194px;}
.w7{width:415.004034px;}
.w8{width:415.004040px;}
.w1{width:415.004460px;}
.w3{width:492.811725px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x31{left:6.119996px;}
.x18{left:7.514494px;}
.xe{left:9.461251px;}
.x48{left:10.807397px;}
.xf{left:23.384256px;}
.x25{left:25.408530px;}
.x21{left:30.564726px;}
.x23{left:31.930103px;}
.x1f{left:33.024096px;}
.x22{left:34.915269px;}
.xb{left:37.930678px;}
.x29{left:45.068678px;}
.x20{left:46.321654px;}
.x32{left:73.083015px;}
.x14{left:87.640071px;}
.x45{left:88.680184px;}
.x19{left:96.501282px;}
.x3f{left:101.544061px;}
.x47{left:102.972871px;}
.x26{left:117.965641px;}
.x24{left:120.382611px;}
.x40{left:133.494932px;}
.x41{left:135.496236px;}
.xc{left:138.142407px;}
.x46{left:140.604457px;}
.x33{left:152.118462px;}
.xd{left:155.259062px;}
.x2b{left:165.801718px;}
.x2c{left:167.473821px;}
.x1a{left:172.555173px;}
.x1c{left:192.043559px;}
.x5{left:202.299000px;}
.x1{left:204.433500px;}
.x34{left:206.440015px;}
.x1d{left:208.877519px;}
.x43{left:210.324000px;}
.x27{left:211.489500px;}
.x3{left:212.977500px;}
.x1b{left:215.670471px;}
.x11{left:217.846961px;}
.x1e{left:219.189911px;}
.x2a{left:220.447183px;}
.x37{left:222.854663px;}
.x9{left:224.563500px;}
.x38{left:225.831186px;}
.x28{left:227.551500px;}
.x12{left:230.233294px;}
.x13{left:234.088643px;}
.xa{left:240.404853px;}
.x8{left:244.666500px;}
.x4b{left:252.757500px;}
.x2{left:254.521500px;}
.x15{left:263.640000px;}
.x49{left:266.791277px;}
.x4a{left:270.794230px;}
.x2e{left:277.578921px;}
.x2d{left:278.690738px;}
.x35{left:280.870606px;}
.x44{left:288.334500px;}
.x3c{left:291.761179px;}
.x10{left:292.903221px;}
.x3a{left:296.917565px;}
.x17{left:308.490000px;}
.x3d{left:320.869823px;}
.x7{left:323.860500px;}
.x3b{left:338.326257px;}
.x36{left:343.123712px;}
.x4{left:348.970500px;}
.x39{left:368.905659px;}
.x6{left:387.235500px;}
.x16{left:416.232000px;}
.x30{left:419.331465px;}
.x2f{left:426.054906px;}
.x3e{left:513.394503px;}
.x42{left:607.927500px;}
@media print{
.v2{vertical-align:-17.929175pt;}
.v3{vertical-align:-6.916320pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls21{letter-spacing:-0.194969pt;}
.ls9{letter-spacing:-0.097476pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000501pt;}
.ls28{letter-spacing:0.002079pt;}
.ls4{letter-spacing:0.029182pt;}
.ls20{letter-spacing:0.110821pt;}
.ls8{letter-spacing:0.221624pt;}
.ls5{letter-spacing:0.279367pt;}
.ls7{letter-spacing:0.290881pt;}
.ls1a{letter-spacing:0.387852pt;}
.ls1b{letter-spacing:0.443259pt;}
.ls1d{letter-spacing:0.443286pt;}
.ls1c{letter-spacing:0.470963pt;}
.ls1f{letter-spacing:0.554107pt;}
.ls1e{letter-spacing:0.558782pt;}
.ls13{letter-spacing:7.710392pt;}
.lsf{letter-spacing:7.715726pt;}
.ls1{letter-spacing:11.802610pt;}
.ls26{letter-spacing:12.562694pt;}
.ls19{letter-spacing:16.373673pt;}
.ls16{letter-spacing:16.374521pt;}
.lsc{letter-spacing:16.375115pt;}
.ls23{letter-spacing:16.378795pt;}
.ls15{letter-spacing:16.379006pt;}
.ls18{letter-spacing:16.380052pt;}
.lsd{letter-spacing:16.380448pt;}
.ls22{letter-spacing:16.384128pt;}
.ls27{letter-spacing:16.552027pt;}
.ls3{letter-spacing:16.903720pt;}
.lse{letter-spacing:17.558521pt;}
.ls24{letter-spacing:17.558719pt;}
.ls29{letter-spacing:17.709510pt;}
.ls10{letter-spacing:18.115726pt;}
.ls2a{letter-spacing:18.232027pt;}
.ls12{letter-spacing:20.758595pt;}
.ls14{letter-spacing:23.335392pt;}
.ls2b{letter-spacing:23.997361pt;}
.lsa{letter-spacing:26.561355pt;}
.ls6{letter-spacing:26.562673pt;}
.lsb{letter-spacing:106.241355pt;}
.ls11{letter-spacing:185.921355pt;}
.ls25{letter-spacing:218.684021pt;}
.ls17{letter-spacing:265.606688pt;}
.ws11a{word-spacing:-49.150218pt;}
.ws4a{word-spacing:-27.151406pt;}
.ws51{word-spacing:-26.561620pt;}
.wsc4{word-spacing:-24.570327pt;}
.wsbd{word-spacing:-14.765902pt;}
.ws8d{word-spacing:-14.712768pt;}
.ws13c{word-spacing:-14.553366pt;}
.ws12b{word-spacing:-14.128295pt;}
.ws6d{word-spacing:-14.075161pt;}
.ws123{word-spacing:-14.022027pt;}
.wsfb{word-spacing:-13.915760pt;}
.ws13f{word-spacing:-13.650090pt;}
.ws54{word-spacing:-13.596956pt;}
.ws114{word-spacing:-13.543823pt;}
.ws74{word-spacing:-13.490689pt;}
.ws3e{word-spacing:-13.437555pt;}
.ws73{word-spacing:-13.118752pt;}
.ws86{word-spacing:-13.065618pt;}
.ws7b{word-spacing:-12.906216pt;}
.wsbe{word-spacing:-12.832935pt;}
.ws13{word-spacing:-12.785558pt;}
.ws14{word-spacing:-12.779284pt;}
.ws15{word-spacing:-12.758589pt;}
.ws148{word-spacing:-12.710769pt;}
.ws1b{word-spacing:-12.693681pt;}
.ws151{word-spacing:-12.615127pt;}
.wsf5{word-spacing:-12.587413pt;}
.ws83{word-spacing:-12.481145pt;}
.ws113{word-spacing:-12.433325pt;}
.ws128{word-spacing:-12.428011pt;}
.ws53{word-spacing:-12.374878pt;}
.wsb9{word-spacing:-12.321744pt;}
.ws37{word-spacing:-12.268610pt;}
.ws78{word-spacing:-12.215476pt;}
.ws2d{word-spacing:-12.162342pt;}
.wsfc{word-spacing:-12.002940pt;}
.ws166{word-spacing:-11.993457pt;}
.ws160{word-spacing:-11.849994pt;}
.wsb6{word-spacing:-11.848852pt;}
.ws2c{word-spacing:-11.843539pt;}
.ws19{word-spacing:-11.737271pt;}
.wsb5{word-spacing:-11.684137pt;}
.wsb3{word-spacing:-11.631003pt;}
.wsf6{word-spacing:-11.583183pt;}
.wsf8{word-spacing:-11.577870pt;}
.ws12c{word-spacing:-11.524736pt;}
.ws50{word-spacing:-11.471602pt;}
.ws165{word-spacing:-11.467428pt;}
.ws5b{word-spacing:-11.418468pt;}
.wsb{word-spacing:-11.371786pt;}
.ws6e{word-spacing:-11.365334pt;}
.ws70{word-spacing:-11.312200pt;}
.ws12a{word-spacing:-11.205932pt;}
.ws5c{word-spacing:-11.099665pt;}
.ws138{word-spacing:-11.046531pt;}
.ws3c{word-spacing:-10.940263pt;}
.ws2e{word-spacing:-10.887129pt;}
.ws84{word-spacing:-10.833995pt;}
.wsb0{word-spacing:-10.780862pt;}
.ws14b{word-spacing:-10.750116pt;}
.ws6f{word-spacing:-10.727728pt;}
.ws145{word-spacing:-10.654474pt;}
.ws142{word-spacing:-10.621460pt;}
.ws156{word-spacing:-10.606653pt;}
.ws31{word-spacing:-10.568326pt;}
.ws7{word-spacing:-10.511012pt;}
.ws96{word-spacing:-10.467372pt;}
.wsf3{word-spacing:-10.462058pt;}
.ws15f{word-spacing:-10.415370pt;}
.ws66{word-spacing:-10.408924pt;}
.ws168{word-spacing:-10.367549pt;}
.wsfa{word-spacing:-10.355791pt;}
.ws6b{word-spacing:-10.302657pt;}
.ws167{word-spacing:-10.271908pt;}
.ws1a{word-spacing:-10.249523pt;}
.ws61{word-spacing:-10.196389pt;}
.ws2a{word-spacing:-10.143255pt;}
.ws8f{word-spacing:-10.113994pt;}
.wsf9{word-spacing:-10.090121pt;}
.ws7f{word-spacing:-10.036987pt;}
.wsf2{word-spacing:-9.983854pt;}
.ws1e{word-spacing:-9.930720pt;}
.wsed{word-spacing:-9.882198pt;}
.ws20{word-spacing:-9.877586pt;}
.ws13b{word-spacing:-9.824452pt;}
.ws11f{word-spacing:-9.718184pt;}
.wsf4{word-spacing:-9.670364pt;}
.ws79{word-spacing:-9.665050pt;}
.ws158{word-spacing:-9.650237pt;}
.wsf7{word-spacing:-9.617230pt;}
.ws4e{word-spacing:-9.611916pt;}
.ws5a{word-spacing:-9.505649pt;}
.ws12d{word-spacing:-9.452515pt;}
.ws153{word-spacing:-9.411133pt;}
.ws68{word-spacing:-9.399381pt;}
.ws106{word-spacing:-9.346247pt;}
.ws90{word-spacing:-9.298427pt;}
.ws7e{word-spacing:-9.293113pt;}
.wsc{word-spacing:-9.267671pt;}
.wsb4{word-spacing:-9.239979pt;}
.ws28{word-spacing:-9.186846pt;}
.ws63{word-spacing:-9.133712pt;}
.wsee{word-spacing:-9.085891pt;}
.wsd8{word-spacing:-9.080578pt;}
.ws14e{word-spacing:-8.980746pt;}
.ws141{word-spacing:-8.921176pt;}
.ws2{word-spacing:-8.868042pt;}
.wsa6{word-spacing:-8.855643pt;}
.ws5d{word-spacing:-8.814908pt;}
.ws147{word-spacing:-8.789463pt;}
.ws3d{word-spacing:-8.655507pt;}
.ws4f{word-spacing:-8.602373pt;}
.ws34{word-spacing:-8.496105pt;}
.ws26{word-spacing:-8.408080pt;}
.ws15d{word-spacing:-8.359076pt;}
.wsa3{word-spacing:-8.336704pt;}
.ws38{word-spacing:-8.283570pt;}
.ws152{word-spacing:-8.263434pt;}
.ws9a{word-spacing:-8.230436pt;}
.ws11{word-spacing:-8.215613pt;}
.wsdd{word-spacing:-8.213943pt;}
.ws104{word-spacing:-8.213238pt;}
.wsc3{word-spacing:-8.204742pt;}
.wse2{word-spacing:-8.203455pt;}
.wsc1{word-spacing:-8.203412pt;}
.wsd1{word-spacing:-8.199204pt;}
.ws103{word-spacing:-8.196852pt;}
.wse7{word-spacing:-8.196765pt;}
.wse6{word-spacing:-8.196743pt;}
.wsd9{word-spacing:-8.196417pt;}
.wsd0{word-spacing:-8.194639pt;}
.wsc6{word-spacing:-8.194507pt;}
.wse8{word-spacing:-8.193929pt;}
.ws102{word-spacing:-8.193543pt;}
.wsec{word-spacing:-8.193024pt;}
.ws105{word-spacing:-8.191077pt;}
.wscd{word-spacing:-8.190985pt;}
.wsc7{word-spacing:-8.190652pt;}
.wsea{word-spacing:-8.190619pt;}
.wsda{word-spacing:-8.190071pt;}
.wse9{word-spacing:-8.189648pt;}
.ws118{word-spacing:-8.189211pt;}
.wse3{word-spacing:-8.188928pt;}
.wse5{word-spacing:-8.188723pt;}
.wseb{word-spacing:-8.187692pt;}
.wse1{word-spacing:-8.187585pt;}
.wsdf{word-spacing:-8.183390pt;}
.wse4{word-spacing:-8.173259pt;}
.ws115{word-spacing:-8.172199pt;}
.wsdc{word-spacing:-8.168496pt;}
.ws4{word-spacing:-8.167793pt;}
.wsdb{word-spacing:-8.167637pt;}
.ws10a{word-spacing:-8.129482pt;}
.ws107{word-spacing:-8.124168pt;}
.ws9b{word-spacing:-8.071034pt;}
.ws94{word-spacing:-8.017900pt;}
.ws92{word-spacing:-8.015532pt;}
.ws64{word-spacing:-7.964767pt;}
.ws67{word-spacing:-7.911633pt;}
.ws164{word-spacing:-7.880868pt;}
.ws22{word-spacing:-7.858499pt;}
.ws163{word-spacing:-7.833047pt;}
.ws35{word-spacing:-7.810678pt;}
.ws43{word-spacing:-7.699097pt;}
.wsb8{word-spacing:-7.651277pt;}
.ws44{word-spacing:-7.645963pt;}
.ws65{word-spacing:-7.592830pt;}
.ws161{word-spacing:-7.546122pt;}
.wsc2{word-spacing:-7.508299pt;}
.ws2b{word-spacing:-7.486562pt;}
.ws108{word-spacing:-7.438741pt;}
.ws7a{word-spacing:-7.433428pt;}
.ws93{word-spacing:-7.385607pt;}
.ws48{word-spacing:-7.380294pt;}
.ws4d{word-spacing:-7.327160pt;}
.ws21{word-spacing:-7.274026pt;}
.ws55{word-spacing:-7.220892pt;}
.wsd{word-spacing:-7.115735pt;}
.wsfd{word-spacing:-7.114625pt;}
.ws45{word-spacing:-7.061491pt;}
.ws116{word-spacing:-7.015426pt;}
.ws119{word-spacing:-7.010545pt;}
.ws69{word-spacing:-7.008357pt;}
.ws11c{word-spacing:-7.007546pt;}
.wscc{word-spacing:-7.002810pt;}
.wsc9{word-spacing:-6.998245pt;}
.ws146{word-spacing:-6.972273pt;}
.ws24{word-spacing:-6.955223pt;}
.ws15a{word-spacing:-6.924452pt;}
.ws6a{word-spacing:-6.902089pt;}
.ws15c{word-spacing:-6.876631pt;}
.ws75{word-spacing:-6.871277pt;}
.ws33{word-spacing:-6.848955pt;}
.ws77{word-spacing:-6.795822pt;}
.ws6c{word-spacing:-6.748001pt;}
.ws9c{word-spacing:-6.742688pt;}
.ws1c{word-spacing:-6.689554pt;}
.ws80{word-spacing:-6.622932pt;}
.ws109{word-spacing:-6.588599pt;}
.ws127{word-spacing:-6.583286pt;}
.ws1d{word-spacing:-6.530152pt;}
.ws47{word-spacing:-6.477018pt;}
.ws157{word-spacing:-6.446244pt;}
.ws121{word-spacing:-6.370751pt;}
.ws155{word-spacing:-6.350602pt;}
.ws9e{word-spacing:-6.322930pt;}
.ws9d{word-spacing:-6.317617pt;}
.ws110{word-spacing:-6.178296pt;}
.ws10e{word-spacing:-6.158215pt;}
.ws82{word-spacing:-6.105081pt;}
.ws10f{word-spacing:-6.067474pt;}
.ws41{word-spacing:-6.051947pt;}
.ws7c{word-spacing:-5.945680pt;}
.ws30{word-spacing:-5.892546pt;}
.ws122{word-spacing:-5.844725pt;}
.wsf0{word-spacing:-5.839412pt;}
.wsf{word-spacing:-5.681111pt;}
.ws10{word-spacing:-5.633290pt;}
.wsa{word-spacing:-5.585469pt;}
.ws3a{word-spacing:-5.467475pt;}
.ws14a{word-spacing:-5.442007pt;}
.ws32{word-spacing:-5.414341pt;}
.ws8e{word-spacing:-5.361207pt;}
.ws13d{word-spacing:-5.308073pt;}
.ws8a{word-spacing:-5.254939pt;}
.ws143{word-spacing:-5.095538pt;}
.ws95{word-spacing:-5.047717pt;}
.ws124{word-spacing:-5.042404pt;}
.ws57{word-spacing:-4.989270pt;}
.wsa1{word-spacing:-4.976339pt;}
.ws56{word-spacing:-4.936136pt;}
.ws3b{word-spacing:-4.883002pt;}
.ws4c{word-spacing:-4.776735pt;}
.ws14d{word-spacing:-4.629053pt;}
.ws5f{word-spacing:-4.617333pt;}
.ws72{word-spacing:-4.578613pt;}
.ws10d{word-spacing:-4.564199pt;}
.ws40{word-spacing:-4.457931pt;}
.ws9{word-spacing:-4.437770pt;}
.ws91{word-spacing:-4.409322pt;}
.ws134{word-spacing:-4.404798pt;}
.ws81{word-spacing:-4.351664pt;}
.ws1f{word-spacing:-4.298530pt;}
.wsd7{word-spacing:-4.245396pt;}
.ws85{word-spacing:-4.236611pt;}
.wsd5{word-spacing:-4.220780pt;}
.wsf1{word-spacing:-4.192262pt;}
.ws132{word-spacing:-4.139128pt;}
.ws136{word-spacing:-3.979727pt;}
.ws16c{word-spacing:-3.959562pt;}
.ws18{word-spacing:-3.926593pt;}
.wsd6{word-spacing:-3.878772pt;}
.ws71{word-spacing:-3.714057pt;}
.ws46{word-spacing:-3.660923pt;}
.ws17{word-spacing:-3.607790pt;}
.ws59{word-spacing:-3.501522pt;}
.ws42{word-spacing:-3.448388pt;}
.ws16b{word-spacing:-3.433533pt;}
.ws149{word-spacing:-3.385713pt;}
.ws97{word-spacing:-3.363064pt;}
.ws99{word-spacing:-3.342120pt;}
.ws58{word-spacing:-3.288986pt;}
.ws162{word-spacing:-3.242250pt;}
.wsd4{word-spacing:-3.235852pt;}
.ws62{word-spacing:-3.182719pt;}
.ws13e{word-spacing:-3.129585pt;}
.ws98{word-spacing:-3.081764pt;}
.ws29{word-spacing:-3.076451pt;}
.ws120{word-spacing:-2.970183pt;}
.ws11e{word-spacing:-2.917049pt;}
.ws14c{word-spacing:-2.859684pt;}
.ws154{word-spacing:-2.764042pt;}
.ws15b{word-spacing:-2.716221pt;}
.ws27{word-spacing:-2.651380pt;}
.ws140{word-spacing:-2.598246pt;}
.ws39{word-spacing:-2.491978pt;}
.ws2f{word-spacing:-2.438844pt;}
.ws36{word-spacing:-2.279443pt;}
.ws60{word-spacing:-2.241944pt;}
.wsa4{word-spacing:-1.907506pt;}
.ws8b{word-spacing:-1.801238pt;}
.ws8c{word-spacing:-1.647150pt;}
.ws159{word-spacing:-1.616343pt;}
.ws49{word-spacing:-1.535569pt;}
.ws7d{word-spacing:-1.521048pt;}
.ws8{word-spacing:-1.520701pt;}
.ws4b{word-spacing:-1.482435pt;}
.wse{word-spacing:-1.377239pt;}
.wsb1{word-spacing:-1.376167pt;}
.ws10b{word-spacing:-1.323033pt;}
.ws16a{word-spacing:-1.233777pt;}
.wsb2{word-spacing:-1.216766pt;}
.wsd3{word-spacing:-0.939975pt;}
.ws23{word-spacing:-0.844828pt;}
.ws88{word-spacing:-0.738561pt;}
.ws169{word-spacing:-0.707748pt;}
.ws76{word-spacing:-0.673259pt;}
.ws87{word-spacing:-0.579159pt;}
.ws111{word-spacing:-0.575714pt;}
.ws100{word-spacing:-0.498667pt;}
.wsbc{word-spacing:-0.472891pt;}
.wsef{word-spacing:-0.419758pt;}
.wsfe{word-spacing:-0.415556pt;}
.wsaf{word-spacing:-0.371937pt;}
.wsae{word-spacing:-0.366624pt;}
.wsa9{word-spacing:-0.304733pt;}
.wsac{word-spacing:-0.287832pt;}
.wsab{word-spacing:-0.235475pt;}
.ws125{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.037194pt;}
.wsaa{word-spacing:-0.013851pt;}
.ws25{word-spacing:0.000000pt;}
.ws101{word-spacing:0.005313pt;}
.wsad{word-spacing:0.081754pt;}
.ws112{word-spacing:0.163522pt;}
.ws3f{word-spacing:0.217849pt;}
.wsba{word-spacing:0.850142pt;}
.wsbb{word-spacing:0.908589pt;}
.ws5e{word-spacing:1.971266pt;}
.wsa7{word-spacing:2.024400pt;}
.ws150{word-spacing:2.352783pt;}
.ws89{word-spacing:2.780216pt;}
.ws14f{word-spacing:3.548303pt;}
.ws16d{word-spacing:7.039222pt;}
.wsca{word-spacing:13.323682pt;}
.wsb7{word-spacing:13.612999pt;}
.ws126{word-spacing:14.703133pt;}
.ws139{word-spacing:14.706333pt;}
.ws12f{word-spacing:14.824448pt;}
.ws15e{word-spacing:16.167426pt;}
.wse0{word-spacing:16.333073pt;}
.wsbf{word-spacing:16.334595pt;}
.wsde{word-spacing:16.335939pt;}
.wsc0{word-spacing:16.338336pt;}
.wsc5{word-spacing:16.339965pt;}
.ws11d{word-spacing:17.502413pt;}
.ws12e{word-spacing:18.793574pt;}
.ws129{word-spacing:19.500129pt;}
.ws10c{word-spacing:20.683399pt;}
.ws117{word-spacing:20.848538pt;}
.ws11b{word-spacing:21.120213pt;}
.wsa2{word-spacing:21.167133pt;}
.ws9f{word-spacing:21.168733pt;}
.wsa0{word-spacing:21.529130pt;}
.wsc8{word-spacing:21.745712pt;}
.ws135{word-spacing:22.076999pt;}
.ws144{word-spacing:22.288519pt;}
.ws137{word-spacing:22.855666pt;}
.ws52{word-spacing:23.846639pt;}
.ws133{word-spacing:23.922304pt;}
.ws12{word-spacing:24.538769pt;}
.ws13a{word-spacing:25.132319pt;}
.ws6{word-spacing:26.519119pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.wscb{word-spacing:37.844292pt;}
.ws16{word-spacing:71.667439pt;}
.wsd2{word-spacing:106.200183pt;}
.wscf{word-spacing:185.885516pt;}
.wsce{word-spacing:265.565516pt;}
.wsa5{word-spacing:310.134271pt;}
.ws130{word-spacing:375.689769pt;}
.ws131{word-spacing:375.737590pt;}
.wsff{word-spacing:458.307447pt;}
.wsa8{word-spacing:1017.931629pt;}
._16{margin-left:-505.608753pt;}
._8{margin-left:-5.389779pt;}
._3{margin-left:-4.410111pt;}
._6{margin-left:-3.333664pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-1.386803pt;}
._2{width:1.487748pt;}
._1{width:2.640880pt;}
._a{width:3.803395pt;}
._14{width:5.019003pt;}
._9{width:8.873356pt;}
._12{width:13.854143pt;}
._20{width:14.911498pt;}
._b{width:16.611781pt;}
._18{width:18.157986pt;}
._f{width:19.640412pt;}
._10{width:20.543687pt;}
._d{width:22.031436pt;}
._e{width:23.040979pt;}
._1a{width:23.997389pt;}
._c{width:25.060066pt;}
._19{width:26.566933pt;}
._21{width:28.461700pt;}
._13{width:29.470177pt;}
._1d{width:30.972810pt;}
._22{width:32.805069pt;}
._23{width:34.964351pt;}
._1e{width:37.336448pt;}
._7{width:61.096434pt;}
._11{width:71.731200pt;}
._1f{width:127.155507pt;}
._5{width:151.687578pt;}
._15{width:183.186379pt;}
._1b{width:191.351539pt;}
._24{width:199.699661pt;}
._27{width:218.827981pt;}
._17{width:288.275968pt;}
._28{width:400.260096pt;}
._2a{width:412.836966pt;}
._1c{width:416.604314pt;}
._29{width:422.401126pt;}
._26{width:444.361471pt;}
._25{width:511.060890pt;}
.fsc{font-size:8.465660pt;}
.fsa{font-size:13.851491pt;}
.fsb{font-size:14.512560pt;}
.fsd{font-size:15.721940pt;}
.fs11{font-size:16.932774pt;}
.fse{font-size:27.703704pt;}
.fsf{font-size:27.705362pt;}
.fs10{font-size:29.027613pt;}
.fs5{font-size:30.244893pt;}
.fs7{font-size:30.876870pt;}
.fs12{font-size:31.446580pt;}
.fs9{font-size:31.874090pt;}
.fs6{font-size:34.736479pt;}
.fs8{font-size:35.858351pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:6.643898pt;}
.ya4{bottom:8.456881pt;}
.yfb{bottom:10.764793pt;}
.yfa{bottom:11.095467pt;}
.yf8{bottom:17.881104pt;}
.y186{bottom:21.286695pt;}
.y185{bottom:21.948102pt;}
.ya5{bottom:25.342669pt;}
.y2c{bottom:27.710173pt;}
.yd1{bottom:32.043563pt;}
.y2b{bottom:35.998109pt;}
.ya3{bottom:39.816202pt;}
.yf1{bottom:47.980608pt;}
.yf0{bottom:57.443228pt;}
.y9c{bottom:61.044050pt;}
.y2a{bottom:66.670767pt;}
.yef{bottom:66.905849pt;}
.y9b{bottom:71.657974pt;}
.yf9{bottom:100.679683pt;}
.ya0{bottom:102.052393pt;}
.y182{bottom:106.755947pt;}
.yee{bottom:108.740591pt;}
.y9a{bottom:109.771610pt;}
.y31{bottom:111.342989pt;}
.y9f{bottom:112.183866pt;}
.y183{bottom:115.029129pt;}
.yed{bottom:118.701245pt;}
.y30{bottom:119.606621pt;}
.y9e{bottom:122.797790pt;}
.y29{bottom:132.609689pt;}
.y99{bottom:138.718676pt;}
.ye9{bottom:142.108779pt;}
.ya2{bottom:148.367698pt;}
.y2f{bottom:149.914707pt;}
.y98{bottom:162.358779pt;}
.y34{bottom:167.681516pt;}
.y171{bottom:168.085788pt;}
.y6d{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y2e{bottom:172.785524pt;}
.y97{bottom:172.972703pt;}
.yf4{bottom:176.738667pt;}
.ya1{bottom:177.314763pt;}
.yea{bottom:177.967130pt;}
.y170{bottom:179.055840pt;}
.y2d{bottom:181.049156pt;}
.y33{bottom:183.260893pt;}
.y1ea{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.y138{bottom:188.898667pt;}
.y32{bottom:191.548829pt;}
.yf3{bottom:192.678667pt;}
.y9d{bottom:194.683003pt;}
.y96{bottom:196.612807pt;}
.yec{bottom:198.386469pt;}
.y1e9{bottom:201.326667pt;}
.y184{bottom:201.376659pt;}
.y137{bottom:202.182667pt;}
.y24{bottom:203.984000pt;}
.y1a2{bottom:204.560000pt;}
.y173{bottom:207.716000pt;}
.yeb{bottom:208.347122pt;}
.yf2{bottom:208.618667pt;}
.y188{bottom:212.102667pt;}
.y136{bottom:215.465333pt;}
.y1e8{bottom:215.938667pt;}
.yb8{bottom:218.902667pt;}
.y23{bottom:219.924000pt;}
.y1a1{bottom:220.500000pt;}
.y6c{bottom:221.360000pt;}
.y172{bottom:223.656000pt;}
.ye8{bottom:225.280232pt;}
.y95{bottom:225.559873pt;}
.y187{bottom:228.042667pt;}
.y135{bottom:228.749333pt;}
.y1e7{bottom:231.036000pt;}
.ycf{bottom:233.060000pt;}
.yb7{bottom:234.842667pt;}
.y22{bottom:235.864000pt;}
.y1a0{bottom:236.440000pt;}
.y6b{bottom:237.300000pt;}
.yda{bottom:239.225146pt;}
.y134{bottom:242.033333pt;}
.y110{bottom:242.226667pt;}
.y159{bottom:244.308000pt;}
.y1e6{bottom:245.648000pt;}
.y16f{bottom:248.097333pt;}
.y92{bottom:249.682427pt;}
.yd9{bottom:250.181865pt;}
.yb6{bottom:250.784000pt;}
.y21{bottom:251.804000pt;}
.y19f{bottom:252.380000pt;}
.y181{bottom:252.484000pt;}
.y90{bottom:253.022667pt;}
.y6a{bottom:253.241333pt;}
.y133{bottom:255.316000pt;}
.yde{bottom:256.656289pt;}
.y158{bottom:257.592000pt;}
.y10f{bottom:258.166667pt;}
.y1e5{bottom:260.745333pt;}
.y20{bottom:267.745333pt;}
.y19e{bottom:268.320000pt;}
.y132{bottom:268.600000pt;}
.y69{bottom:269.181333pt;}
.y94{bottom:271.392726pt;}
.yb5{bottom:272.245333pt;}
.y10e{bottom:274.108000pt;}
.y1e4{bottom:275.357333pt;}
.y157{bottom:275.981333pt;}
.y131{bottom:281.884000pt;}
.y1f{bottom:283.685333pt;}
.ye4{bottom:284.048085pt;}
.y19d{bottom:284.260000pt;}
.y68{bottom:285.121333pt;}
.yb4{bottom:288.185333pt;}
.y10d{bottom:288.981333pt;}
.y156{bottom:289.264000pt;}
.y1e3{bottom:289.969333pt;}
.y130{bottom:295.166667pt;}
.y8f{bottom:296.749333pt;}
.ye3{bottom:299.487097pt;}
.y1e{bottom:299.625333pt;}
.y67{bottom:301.061333pt;}
.y155{bottom:302.548000pt;}
.yb3{bottom:304.125333pt;}
.y1e2{bottom:304.581333pt;}
.y10c{bottom:304.921333pt;}
.y12f{bottom:312.376000pt;}
.y8e{bottom:312.689333pt;}
.y93{bottom:314.813325pt;}
.y1d{bottom:315.565333pt;}
.y154{bottom:315.832000pt;}
.y66{bottom:317.001333pt;}
.y19c{bottom:319.018667pt;}
.y1e1{bottom:319.193333pt;}
.yb2{bottom:320.065333pt;}
.y10b{bottom:320.862667pt;}
.ye2{bottom:325.384795pt;}
.y8d{bottom:328.629333pt;}
.y153{bottom:329.114667pt;}
.y1c{bottom:331.505333pt;}
.y65{bottom:332.941333pt;}
.y46{bottom:333.764000pt;}
.y1e0{bottom:333.805333pt;}
.y19b{bottom:334.958667pt;}
.ye1{bottom:335.345448pt;}
.y10a{bottom:335.736000pt;}
.yb1{bottom:336.005333pt;}
.y1bf{bottom:340.057333pt;}
.y152{bottom:342.398667pt;}
.y8c{bottom:344.570667pt;}
.yce{bottom:347.445333pt;}
.y1b{bottom:347.446667pt;}
.y1df{bottom:348.417333pt;}
.y64{bottom:348.882667pt;}
.y45{bottom:349.705333pt;}
.y19a{bottom:350.900000pt;}
.y109{bottom:351.676000pt;}
.y151{bottom:355.682667pt;}
.yb0{bottom:358.489333pt;}
.y8b{bottom:360.510667pt;}
.ye5{bottom:363.235277pt;}
.y1a{bottom:363.386667pt;}
.y1de{bottom:363.514667pt;}
.y63{bottom:364.822667pt;}
.y44{bottom:365.645333pt;}
.y199{bottom:366.840000pt;}
.y108{bottom:367.617333pt;}
.y150{bottom:368.965333pt;}
.y8a{bottom:376.694667pt;}
.y1dd{bottom:378.126667pt;}
.y19{bottom:379.326667pt;}
.y12e{bottom:379.482667pt;}
.y43{bottom:381.585333pt;}
.y62{bottom:382.198667pt;}
.y14f{bottom:382.249333pt;}
.y198{bottom:382.780000pt;}
.y107{bottom:388.853333pt;}
.y1be{bottom:391.116000pt;}
.ye0{bottom:392.619204pt;}
.y89{bottom:392.634667pt;}
.y1dc{bottom:393.224000pt;}
.yaf{bottom:394.254667pt;}
.y18{bottom:395.266667pt;}
.y12d{bottom:395.424000pt;}
.y42{bottom:397.525333pt;}
.y61{bottom:398.138667pt;}
.y14e{bottom:399.457333pt;}
.y106{bottom:404.793333pt;}
.y1bd{bottom:407.056000pt;}
.y1db{bottom:407.836000pt;}
.y88{bottom:408.574667pt;}
.ye7{bottom:409.552314pt;}
.yae{bottom:410.194667pt;}
.y17{bottom:411.206667pt;}
.y12c{bottom:411.364000pt;}
.y41{bottom:413.465333pt;}
.y60{bottom:414.080000pt;}
.y197{bottom:417.538667pt;}
.ye6{bottom:419.512967pt;}
.y105{bottom:420.734667pt;}
.y1da{bottom:422.448000pt;}
.y1bc{bottom:422.997333pt;}
.y87{bottom:424.514667pt;}
.yad{bottom:426.136000pt;}
.y16{bottom:427.146667pt;}
.y40{bottom:429.405333pt;}
.y5f{bottom:430.020000pt;}
.y104{bottom:436.674667pt;}
.y1d9{bottom:437.060000pt;}
.y12b{bottom:437.304000pt;}
.y1bb{bottom:438.937333pt;}
.y86{bottom:440.454667pt;}
.ycd{bottom:441.796000pt;}
.yac{bottom:442.076000pt;}
.y15{bottom:443.088000pt;}
.y3f{bottom:445.346667pt;}
.ydf{bottom:447.402795pt;}
.y1d8{bottom:452.157333pt;}
.y103{bottom:452.614667pt;}
.y12a{bottom:453.244000pt;}
.y1ba{bottom:454.877333pt;}
.y85{bottom:456.396000pt;}
.ycc{bottom:457.736000pt;}
.yab{bottom:458.016000pt;}
.y3e{bottom:461.286667pt;}
.y196{bottom:462.924000pt;}
.yd8{bottom:463.339840pt;}
.y1d7{bottom:466.769333pt;}
.y102{bottom:468.554667pt;}
.y5e{bottom:469.081333pt;}
.y129{bottom:469.184000pt;}
.ydb{bottom:469.814265pt;}
.y1b9{bottom:470.817333pt;}
.y84{bottom:472.336000pt;}
.ycb{bottom:473.676000pt;}
.yaa{bottom:473.956000pt;}
.y14{bottom:474.082667pt;}
.yd7{bottom:474.296559pt;}
.y3d{bottom:477.226667pt;}
.y195{bottom:478.864000pt;}
.y1d6{bottom:481.380000pt;}
.y101{bottom:484.494667pt;}
.y128{bottom:485.124000pt;}
.y1b8{bottom:486.757333pt;}
.y83{bottom:488.276000pt;}
.yca{bottom:489.616000pt;}
.ya9{bottom:489.896000pt;}
.y16e{bottom:490.325333pt;}
.y3c{bottom:493.166667pt;}
.y194{bottom:494.804000pt;}
.y1d5{bottom:496.478667pt;}
.y180{bottom:499.645333pt;}
.y127{bottom:501.064000pt;}
.y1b7{bottom:502.697333pt;}
.yc9{bottom:505.556000pt;}
.y16d{bottom:506.265333pt;}
.ydd{bottom:507.166714pt;}
.y200{bottom:508.360000pt;}
.y3b{bottom:509.106667pt;}
.y193{bottom:510.744000pt;}
.y1d4{bottom:511.089333pt;}
.yd6{bottom:512.645073pt;}
.y17f{bottom:515.585333pt;}
.y82{bottom:516.061333pt;}
.y13{bottom:518.084000pt;}
.y1b6{bottom:518.638667pt;}
.y5d{bottom:518.770667pt;}
.yc8{bottom:521.497333pt;}
.y16c{bottom:522.205333pt;}
.ya8{bottom:522.774667pt;}
.y1ff{bottom:522.972000pt;}
.yd5{bottom:523.601791pt;}
.y3a{bottom:525.048000pt;}
.y1d3{bottom:526.188000pt;}
.y192{bottom:526.684000pt;}
.y17e{bottom:534.016000pt;}
.y1b5{bottom:534.578667pt;}
.y5c{bottom:534.710667pt;}
.y1fe{bottom:537.584000pt;}
.y16b{bottom:538.146667pt;}
.ya7{bottom:538.714667pt;}
.y1d2{bottom:540.798667pt;}
.y39{bottom:540.988000pt;}
.y191{bottom:543.200000pt;}
.y12{bottom:547.086667pt;}
.y14d{bottom:549.464000pt;}
.y17d{bottom:549.956000pt;}
.y5b{bottom:550.652000pt;}
.y1fd{bottom:552.196000pt;}
.y100{bottom:552.968000pt;}
.y16a{bottom:554.086667pt;}
.ya6{bottom:554.656000pt;}
.yc7{bottom:554.742667pt;}
.y1d1{bottom:555.410667pt;}
.y38{bottom:556.928000pt;}
.ydc{bottom:556.969979pt;}
.y81{bottom:557.130667pt;}
.y190{bottom:559.140000pt;}
.y11{bottom:561.698667pt;}
.y14c{bottom:562.748000pt;}
.y17c{bottom:565.896000pt;}
.y5a{bottom:566.592000pt;}
.y1fc{bottom:566.808000pt;}
.yff{bottom:568.908000pt;}
.y169{bottom:570.026667pt;}
.y1d0{bottom:570.508000pt;}
.y37{bottom:572.868000pt;}
.y80{bottom:573.072000pt;}
.y1b4{bottom:575.010667pt;}
.y18f{bottom:575.080000pt;}
.y14b{bottom:576.032000pt;}
.y10{bottom:576.310667pt;}
.y91{bottom:579.097333pt;}
.y126{bottom:581.378667pt;}
.y1fb{bottom:581.420000pt;}
.y17b{bottom:581.836000pt;}
.y59{bottom:582.532000pt;}
.yfe{bottom:584.848000pt;}
.y1cf{bottom:585.605333pt;}
.y168{bottom:585.966667pt;}
.y36{bottom:588.808000pt;}
.y7f{bottom:589.012000pt;}
.yf{bottom:590.922667pt;}
.y1b3{bottom:590.950667pt;}
.y18e{bottom:591.021333pt;}
.y1fa{bottom:596.032000pt;}
.y17a{bottom:597.777333pt;}
.y58{bottom:598.472000pt;}
.y14a{bottom:599.526667pt;}
.y125{bottom:599.768000pt;}
.y1ce{bottom:600.217333pt;}
.yfd{bottom:600.788000pt;}
.yc6{bottom:601.272000pt;}
.y167{bottom:602.204000pt;}
.y7e{bottom:604.952000pt;}
.ye{bottom:605.534667pt;}
.y1b2{bottom:606.890667pt;}
.y18d{bottom:606.961333pt;}
.yd4{bottom:609.761440pt;}
.y1f9{bottom:610.644000pt;}
.y149{bottom:612.809333pt;}
.y179{bottom:613.717333pt;}
.y57{bottom:614.412000pt;}
.y1cd{bottom:615.314667pt;}
.yfc{bottom:616.729333pt;}
.yc5{bottom:617.212000pt;}
.y166{bottom:618.144000pt;}
.y124{bottom:618.157333pt;}
.yd{bottom:620.146667pt;}
.yd3{bottom:620.718158pt;}
.y7d{bottom:620.892000pt;}
.y1b1{bottom:622.830667pt;}
.y18c{bottom:622.901333pt;}
.y1f8{bottom:625.254667pt;}
.y148{bottom:626.093333pt;}
.y178{bottom:629.657333pt;}
.y1cc{bottom:629.926667pt;}
.y56{bottom:630.352000pt;}
.y123{bottom:631.441333pt;}
.yc4{bottom:633.152000pt;}
.y165{bottom:634.084000pt;}
.yc{bottom:634.757333pt;}
.y7c{bottom:636.832000pt;}
.y1b0{bottom:638.772000pt;}
.y18b{bottom:638.841333pt;}
.y147{bottom:639.377333pt;}
.y1f7{bottom:639.866667pt;}
.y35{bottom:641.628000pt;}
.y1cb{bottom:644.538667pt;}
.y122{bottom:644.724000pt;}
.yf6{bottom:645.554667pt;}
.y55{bottom:646.293333pt;}
.yd2{bottom:647.113889pt;}
.y177{bottom:648.088000pt;}
.yc3{bottom:649.092000pt;}
.yb{bottom:649.369333pt;}
.y146{bottom:652.660000pt;}
.y7b{bottom:652.772000pt;}
.y1f6{bottom:654.478667pt;}
.y1af{bottom:654.712000pt;}
.y18a{bottom:654.781333pt;}
.y1ca{bottom:659.150667pt;}
.y54{bottom:662.233333pt;}
.y121{bottom:663.113333pt;}
.yf7{bottom:663.752000pt;}
.ya{bottom:663.981333pt;}
.y176{bottom:664.028000pt;}
.yc2{bottom:665.032000pt;}
.y145{bottom:665.944000pt;}
.y28{bottom:666.069333pt;}
.y7a{bottom:668.713333pt;}
.y1f5{bottom:669.090667pt;}
.y1ae{bottom:670.652000pt;}
.y1c9{bottom:673.762667pt;}
.y164{bottom:675.420000pt;}
.y120{bottom:676.397333pt;}
.y53{bottom:678.173333pt;}
.y9{bottom:678.593333pt;}
.y175{bottom:679.968000pt;}
.yc1{bottom:680.972000pt;}
.y1f4{bottom:683.702667pt;}
.y144{bottom:684.333333pt;}
.y79{bottom:684.653333pt;}
.y1ad{bottom:686.592000pt;}
.y1c8{bottom:688.374667pt;}
.y11f{bottom:689.681333pt;}
.y163{bottom:691.360000pt;}
.y8{bottom:693.205333pt;}
.y52{bottom:694.113333pt;}
.y174{bottom:695.908000pt;}
.yc0{bottom:696.913333pt;}
.y143{bottom:697.617333pt;}
.y1f3{bottom:698.314667pt;}
.y78{bottom:700.593333pt;}
.y1ac{bottom:702.532000pt;}
.y11e{bottom:702.964000pt;}
.y1c7{bottom:702.986667pt;}
.y162{bottom:707.300000pt;}
.y51{bottom:710.053333pt;}
.y142{bottom:710.900000pt;}
.ybf{bottom:712.853333pt;}
.y1f2{bottom:712.926667pt;}
.y189{bottom:716.248000pt;}
.y77{bottom:716.777333pt;}
.y1c6{bottom:717.598667pt;}
.y1ab{bottom:720.182667pt;}
.y11d{bottom:721.353333pt;}
.y161{bottom:723.240000pt;}
.y141{bottom:724.184000pt;}
.y50{bottom:727.430667pt;}
.y1f1{bottom:727.538667pt;}
.ybe{bottom:728.793333pt;}
.y76{bottom:732.717333pt;}
.y11c{bottom:734.637333pt;}
.y1aa{bottom:736.122667pt;}
.y140{bottom:737.466667pt;}
.y160{bottom:739.181333pt;}
.y1f0{bottom:742.150667pt;}
.y4f{bottom:743.370667pt;}
.ybd{bottom:744.733333pt;}
.y7{bottom:745.177333pt;}
.y11b{bottom:747.920000pt;}
.y75{bottom:748.657333pt;}
.y1c5{bottom:750.578667pt;}
.y13f{bottom:750.750667pt;}
.y1ef{bottom:756.762667pt;}
.y4e{bottom:759.310667pt;}
.y6{bottom:759.789333pt;}
.ybc{bottom:760.673333pt;}
.y11a{bottom:761.204000pt;}
.y13e{bottom:764.034667pt;}
.y74{bottom:764.597333pt;}
.y1ee{bottom:771.374667pt;}
.y5{bottom:774.401333pt;}
.y119{bottom:774.488000pt;}
.y4d{bottom:775.250667pt;}
.y13d{bottom:777.317333pt;}
.yf5{bottom:779.614667pt;}
.y15f{bottom:780.516000pt;}
.y73{bottom:780.538667pt;}
.y1ed{bottom:785.985333pt;}
.y118{bottom:787.770667pt;}
.y13c{bottom:790.601333pt;}
.y4c{bottom:791.190667pt;}
.ybb{bottom:793.918667pt;}
.y1c4{bottom:795.513333pt;}
.y15e{bottom:796.456000pt;}
.y72{bottom:796.478667pt;}
.y1ec{bottom:800.597333pt;}
.y117{bottom:801.054667pt;}
.y1a9{bottom:801.129333pt;}
.y4{bottom:802.241333pt;}
.y13b{bottom:803.885333pt;}
.y4b{bottom:807.132000pt;}
.y15d{bottom:812.396000pt;}
.y71{bottom:812.418667pt;}
.y116{bottom:814.338667pt;}
.y1eb{bottom:815.209333pt;}
.y13a{bottom:817.168000pt;}
.y1a8{bottom:817.202667pt;}
.y3{bottom:818.182667pt;}
.y4a{bottom:823.072000pt;}
.y115{bottom:827.621333pt;}
.y15c{bottom:828.337333pt;}
.y70{bottom:828.602667pt;}
.y1c3{bottom:829.821333pt;}
.y1a7{bottom:831.814667pt;}
.y139{bottom:834.377333pt;}
.y49{bottom:839.012000pt;}
.yba{bottom:840.448000pt;}
.y114{bottom:840.905333pt;}
.y15b{bottom:844.277333pt;}
.y1c2{bottom:844.433333pt;}
.y6f{bottom:844.542667pt;}
.y1a6{bottom:846.425333pt;}
.y113{bottom:854.189333pt;}
.y48{bottom:854.952000pt;}
.yb9{bottom:856.388000pt;}
.y1c1{bottom:859.045333pt;}
.y15a{bottom:860.217333pt;}
.y6e{bottom:860.482667pt;}
.y1a5{bottom:861.037333pt;}
.y2{bottom:864.358667pt;}
.y112{bottom:867.472000pt;}
.y47{bottom:872.329333pt;}
.y1c0{bottom:873.657333pt;}
.y1a4{bottom:875.649333pt;}
.y111{bottom:884.681333pt;}
.y1{bottom:888.269333pt;}
.y1a3{bottom:890.793333pt;}
.y27{bottom:922.806667pt;}
.h19{height:8.060565pt;}
.h16{height:9.232073pt;}
.h18{height:10.884420pt;}
.h1a{height:14.969621pt;}
.h21{height:16.122514pt;}
.h1c{height:18.464627pt;}
.h1e{height:18.465732pt;}
.h20{height:21.770710pt;}
.h10{height:22.102291pt;}
.he{height:22.479206pt;}
.h14{height:23.096264pt;}
.h13{height:25.037813pt;}
.hd{height:25.289106pt;}
.hf{height:25.306067pt;}
.h12{height:25.983297pt;}
.h22{height:29.941812pt;}
.h9{height:31.544478pt;}
.h5{height:33.283277pt;}
.h4{height:35.913421pt;}
.hb{height:37.246841pt;}
.h7{height:39.903534pt;}
.h6{height:44.696508pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.ha{height:51.085538pt;}
.h1{height:53.712173pt;}
.h15{height:103.742100pt;}
.h17{height:104.006660pt;}
.h1b{height:207.489600pt;}
.h1d{height:207.502020pt;}
.h1f{height:208.031185pt;}
.h8{height:235.486507pt;}
.hc{height:322.456826pt;}
.h11{height:668.493813pt;}
.h0{height:1056.000000pt;}
.w4{width:184.430397pt;}
.w5{width:184.430400pt;}
.w2{width:272.044947pt;}
.w6{width:368.870395pt;}
.w7{width:368.892475pt;}
.w8{width:368.892480pt;}
.w1{width:368.892853pt;}
.w3{width:438.054867pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x31{left:5.439996pt;}
.x18{left:6.679550pt;}
.xe{left:8.410001pt;}
.x48{left:9.606575pt;}
.xf{left:20.786005pt;}
.x25{left:22.585360pt;}
.x21{left:27.168645pt;}
.x23{left:28.382314pt;}
.x1f{left:29.354752pt;}
.x22{left:31.035795pt;}
.xb{left:33.716159pt;}
.x29{left:40.061047pt;}
.x20{left:41.174803pt;}
.x32{left:64.962680pt;}
.x14{left:77.902285pt;}
.x45{left:78.826831pt;}
.x19{left:85.778917pt;}
.x3f{left:90.261388pt;}
.x47{left:91.531441pt;}
.x26{left:104.858348pt;}
.x24{left:107.006765pt;}
.x40{left:118.662162pt;}
.x41{left:120.441099pt;}
.xc{left:122.793251pt;}
.x46{left:124.981739pt;}
.x33{left:135.216411pt;}
.xd{left:138.008055pt;}
.x2b{left:147.379305pt;}
.x2c{left:148.865618pt;}
.x1a{left:153.382376pt;}
.x1c{left:170.705386pt;}
.x5{left:179.821333pt;}
.x1{left:181.718667pt;}
.x34{left:183.502236pt;}
.x1d{left:185.668906pt;}
.x43{left:186.954667pt;}
.x27{left:187.990667pt;}
.x3{left:189.313333pt;}
.x1b{left:191.707085pt;}
.x11{left:193.641743pt;}
.x1e{left:194.835476pt;}
.x2a{left:195.953052pt;}
.x37{left:198.093033pt;}
.x9{left:199.612000pt;}
.x38{left:200.738832pt;}
.x28{left:202.268000pt;}
.x12{left:204.651817pt;}
.x13{left:208.078794pt;}
.xa{left:213.693203pt;}
.x8{left:217.481333pt;}
.x4b{left:224.673333pt;}
.x2{left:226.241333pt;}
.x15{left:234.346667pt;}
.x49{left:237.147802pt;}
.x4a{left:240.705983pt;}
.x2e{left:246.736819pt;}
.x2d{left:247.725100pt;}
.x35{left:249.662761pt;}
.x44{left:256.297333pt;}
.x3c{left:259.343270pt;}
.x10{left:260.358419pt;}
.x3a{left:263.926725pt;}
.x17{left:274.213333pt;}
.x3d{left:285.217621pt;}
.x7{left:287.876000pt;}
.x3b{left:300.734450pt;}
.x36{left:304.998855pt;}
.x4{left:310.196000pt;}
.x39{left:327.916141pt;}
.x6{left:344.209333pt;}
.x16{left:369.984000pt;}
.x30{left:372.739080pt;}
.x2f{left:378.715472pt;}
.x3e{left:456.350669pt;}
.x42{left:540.380000pt;}
}




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