
    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_300916da9baf804545c62a92.woff')format("woff");}.ff1{font-family:ff1;line-height:0.751465;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_ef2cf62b9537097d40a5c7ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_27094447055835f2b908e598.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_ecd44a4d26368b5cc9e66a5c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_78576a768c9f1211f87d4781.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_9bc4db092f66af90edd04775.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_0f88364988546a8c49c56912.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_20a4c39f745d2e0b765ed4de.woff')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_d0d6820cd33f5a7573fd1ced.woff')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_16a5df72c6a2a2472eea8a6e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.741211;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;}
.mc{transform:matrix(0.174618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174618,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.194037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194037,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.196591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196591,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.224753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224753,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225049,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.225413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225413,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236557,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.239476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239476,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246134,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);}
.m4{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.256436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256436,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256774,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.261542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261542,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);}
.ve{vertical-align:-72.149787px;}
.vf{vertical-align:-36.072916px;}
.v4{vertical-align:-34.560060px;}
.v2{vertical-align:-27.000000px;}
.vd{vertical-align:-25.200060px;}
.v11{vertical-align:-19.882348px;}
.v8{vertical-align:-17.280060px;}
.v3{vertical-align:-16.200060px;}
.v12{vertical-align:-6.120120px;}
.v6{vertical-align:-3.960204px;}
.va{vertical-align:-1.079958px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.079958px;}
.v5{vertical-align:13.320180px;}
.v7{vertical-align:15.480120px;}
.v9{vertical-align:17.280060px;}
.v10{vertical-align:19.883862px;}
.v1{vertical-align:27.000000px;}
.vc{vertical-align:42.480120px;}
.ls56{letter-spacing:-1.037952px;}
.ls5a{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.211800px;}
.ls5f{letter-spacing:-0.180000px;}
.ls4a{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.081600px;}
.ls6{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.064800px;}
.ls47{letter-spacing:0.081600px;}
.ls15{letter-spacing:0.109680px;}
.ls1a{letter-spacing:0.109740px;}
.ls23{letter-spacing:0.109800px;}
.lsf{letter-spacing:0.109860px;}
.ls49{letter-spacing:0.130620px;}
.ls50{letter-spacing:0.147960px;}
.ls9{letter-spacing:0.148200px;}
.ls62{letter-spacing:0.162600px;}
.ls3{letter-spacing:0.179940px;}
.ls2{letter-spacing:0.180000px;}
.ls59{letter-spacing:0.180120px;}
.ls5d{letter-spacing:0.197400px;}
.ls61{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.300060px;}
.ls48{letter-spacing:0.539940px;}
.ls5e{letter-spacing:0.540000px;}
.ls10{letter-spacing:2.535780px;}
.ls19{letter-spacing:2.535840px;}
.ls16{letter-spacing:2.535960px;}
.ls12{letter-spacing:2.536140px;}
.ls43{letter-spacing:2.829600px;}
.ls3d{letter-spacing:3.350400px;}
.ls36{letter-spacing:3.350460px;}
.ls3a{letter-spacing:3.350640px;}
.ls32{letter-spacing:3.710400px;}
.ls31{letter-spacing:3.710580px;}
.ls3c{letter-spacing:3.710760px;}
.ls35{letter-spacing:3.830520px;}
.ls3e{letter-spacing:4.949220px;}
.ls3f{letter-spacing:4.949400px;}
.ls4f{letter-spacing:5.069340px;}
.ls44{letter-spacing:5.206260px;}
.ls41{letter-spacing:5.293020px;}
.ls45{letter-spacing:5.293080px;}
.ls46{letter-spacing:5.564880px;}
.ls40{letter-spacing:5.566260px;}
.ls1b{letter-spacing:5.809740px;}
.ls42{letter-spacing:5.924940px;}
.ls1e{letter-spacing:6.169620px;}
.ls22{letter-spacing:6.169680px;}
.ls13{letter-spacing:6.289740px;}
.lsb{letter-spacing:7.609620px;}
.ls17{letter-spacing:7.609740px;}
.lsd{letter-spacing:9.049680px;}
.ls8{letter-spacing:9.300000px;}
.ls29{letter-spacing:9.769860px;}
.ls1d{letter-spacing:9.814320px;}
.ls2f{letter-spacing:10.129620px;}
.ls2e{letter-spacing:10.129680px;}
.ls11{letter-spacing:10.174140px;}
.lse{letter-spacing:10.174320px;}
.ls14{letter-spacing:10.174500px;}
.ls1c{letter-spacing:10.534260px;}
.ls0{letter-spacing:10.800000px;}
.ls33{letter-spacing:12.509940px;}
.ls37{letter-spacing:12.510120px;}
.ls5c{letter-spacing:12.540000px;}
.ls34{letter-spacing:12.869880px;}
.ls30{letter-spacing:12.870060px;}
.ls26{letter-spacing:13.009680px;}
.ls1{letter-spacing:14.040180px;}
.lsc{letter-spacing:16.609740px;}
.ls28{letter-spacing:16.654200px;}
.ls2c{letter-spacing:16.654320px;}
.ls2a{letter-spacing:16.654380px;}
.ls27{letter-spacing:16.774320px;}
.ls39{letter-spacing:21.710400px;}
.ls38{letter-spacing:22.070400px;}
.ls3b{letter-spacing:22.070580px;}
.ls2b{letter-spacing:23.149620px;}
.ls2d{letter-spacing:23.149800px;}
.ls18{letter-spacing:31.009680px;}
.ls24{letter-spacing:32.089680px;}
.ls5b{letter-spacing:39.681360px;}
.ls25{letter-spacing:55.489680px;}
.ls21{letter-spacing:63.566640px;}
.ls1f{letter-spacing:69.709800px;}
.ls4c{letter-spacing:76.511489px;}
.ls4d{letter-spacing:79.924349px;}
.ls4e{letter-spacing:102.590077px;}
.ls57{letter-spacing:179.707577px;}
.ls51{letter-spacing:205.875416px;}
.ls4b{letter-spacing:402.878048px;}
.ls55{letter-spacing:428.617771px;}
.ls54{letter-spacing:430.675686px;}
.ls52{letter-spacing:947.712416px;}
.ls58{letter-spacing:1320.695860px;}
.ls7{letter-spacing:1480.110000px;}
.ls53{letter-spacing:1782.537852px;}
.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;}
}
.ws2a{word-spacing:-21.510000px;}
.ws2b{word-spacing:-21.167400px;}
.ws29{word-spacing:-21.150000px;}
.ws2f{word-spacing:-21.132600px;}
.ws4{word-spacing:-21.118200px;}
.wsc{word-spacing:-20.970000px;}
.ws5{word-spacing:-20.888400px;}
.ws2c{word-spacing:-20.790000px;}
.ws2d{word-spacing:-20.758200px;}
.ws1e{word-spacing:-19.191231px;}
.ws6{word-spacing:-18.453600px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws13{word-spacing:-16.036976px;}
.ws15{word-spacing:-15.998131px;}
.ws27{word-spacing:-13.500000px;}
.ws28{word-spacing:-13.140000px;}
.ws0{word-spacing:-11.970000px;}
.ws11{word-spacing:-11.134363px;}
.wsf{word-spacing:-7.218381px;}
.ws24{word-spacing:-6.237789px;}
.ws2e{word-spacing:-0.356640px;}
.ws21{word-spacing:-0.083880px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:4.760280px;}
.ws7{word-spacing:4.889160px;}
.ws9{word-spacing:4.916880px;}
.ws8{word-spacing:4.928040px;}
.wsa{word-spacing:5.120280px;}
.ws1c{word-spacing:17.890991px;}
.ws1f{word-spacing:20.593928px;}
.ws1a{word-spacing:22.152315px;}
.ws22{word-spacing:44.187034px;}
.ws16{word-spacing:48.375306px;}
.ws26{word-spacing:50.152058px;}
.ws17{word-spacing:53.441301px;}
.ws20{word-spacing:57.087193px;}
.ws1b{word-spacing:60.830021px;}
.ws14{word-spacing:71.289025px;}
.ws12{word-spacing:71.728023px;}
.ws25{word-spacing:84.906602px;}
.ws19{word-spacing:88.497446px;}
.ws1d{word-spacing:101.406757px;}
.wse{word-spacing:144.939389px;}
.wsd{word-spacing:201.394755px;}
.ws18{word-spacing:260.548183px;}
.ws23{word-spacing:304.272588px;}
.ws10{word-spacing:349.133550px;}
._26{margin-left:-244.484738px;}
._27{margin-left:-232.978863px;}
._23{margin-left:-16.992480px;}
._6{margin-left:-5.871600px;}
._5{margin-left:-4.865040px;}
._19{margin-left:-3.830040px;}
._16{margin-left:-2.600280px;}
._1{margin-left:-1.242000px;}
._0{width:1.152000px;}
._9{width:2.333940px;}
._4{width:3.372120px;}
._15{width:4.697280px;}
._3{width:6.207120px;}
._1f{width:7.213680px;}
._8{width:8.220240px;}
._e{width:9.419820px;}
._22{width:10.548780px;}
._1d{width:11.555100px;}
._1c{width:12.637560px;}
._7{width:14.175720px;}
._17{width:15.182280px;}
._d{width:16.816800px;}
._c{width:17.866440px;}
._13{width:18.956880px;}
._12{width:19.963440px;}
._18{width:22.060440px;}
._1a{width:23.654160px;}
._1b{width:24.708600px;}
._b{width:25.751160px;}
._a{width:27.344880px;}
._10{width:28.920360px;}
._f{width:30.205920px;}
._59{width:32.126040px;}
._5d{width:34.114680px;}
._60{width:35.325360px;}
._11{width:36.403920px;}
._5a{width:39.323940px;}
._1e{width:41.436720px;}
._58{width:42.559980px;}
._5e{width:45.798480px;}
._4a{width:49.388040px;}
._14{width:50.747400px;}
._56{width:52.257240px;}
._47{width:54.472275px;}
._61{width:55.728030px;}
._5c{width:60.729120px;}
._5b{width:61.735680px;}
._2f{width:64.739253px;}
._62{width:66.013582px;}
._34{width:68.707716px;}
._21{width:71.162460px;}
._20{width:72.472320px;}
._32{width:78.480796px;}
._24{width:79.791900px;}
._25{width:83.080080px;}
._5f{width:87.486840px;}
._42{width:92.631137px;}
._37{width:100.692342px;}
._2e{width:103.125123px;}
._4b{width:114.975665px;}
._57{width:116.411511px;}
._36{width:123.436965px;}
._49{width:130.603311px;}
._48{width:132.901737px;}
._35{width:143.990049px;}
._4d{width:146.497196px;}
._4e{width:151.716060px;}
._31{width:156.132360px;}
._33{width:164.483902px;}
._30{width:165.490825px;}
._2c{width:169.798075px;}
._4c{width:174.718649px;}
._2d{width:177.287445px;}
._28{width:207.370699px;}
._50{width:213.414600px;}
._29{width:225.350448px;}
._45{width:229.350898px;}
._44{width:237.893771px;}
._43{width:241.491331px;}
._3c{width:251.385004px;}
._4f{width:261.908640px;}
._3a{width:268.791466px;}
._2{width:272.538000px;}
._2a{width:281.348739px;}
._3b{width:292.188198px;}
._2b{width:309.141326px;}
._46{width:319.175003px;}
._51{width:392.670000px;}
._39{width:427.888813px;}
._54{width:441.720000px;}
._3e{width:462.278640px;}
._55{width:476.745180px;}
._53{width:499.800000px;}
._52{width:590.670480px;}
._3d{width:611.877960px;}
._38{width:800.371760px;}
._3f{width:876.810000px;}
._40{width:965.517960px;}
._41{width:1139.969940px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.873524px;}
.fs10{font-size:29.255354px;}
.fs1b{font-size:29.924527px;}
.fsb{font-size:31.617129px;}
.fs14{font-size:41.801380px;}
.fs18{font-size:44.383465px;}
.fs16{font-size:44.385179px;}
.fs9{font-size:44.537453px;}
.fs4{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:58.460060px;}
.fs11{font-size:59.230789px;}
.fs5{font-size:60.120000px;}
.fs1c{font-size:60.561057px;}
.fsd{font-size:63.992523px;}
.fsc{font-size:64.147905px;}
.fs0{font-size:72.000000px;}
.fs15{font-size:72.278516px;}
.fs1d{font-size:72.895433px;}
.fs19{font-size:76.761959px;}
.fs17{font-size:76.764923px;}
.fsa{font-size:76.914090px;}
.fs6{font-size:78.937365px;}
.fse{font-size:80.024016px;}
.fs1a{font-size:81.653132px;}
.fs2{font-size:83.880000px;}
.fsf{font-size:92.643029px;}
.fs12{font-size:94.646898px;}
.fs3{font-size:96.120000px;}
.fs13{font-size:106.668546px;}
.y0{bottom:0.000000px;}
.yde{bottom:4.295956px;}
.yeb{bottom:4.628794px;}
.yee{bottom:4.629662px;}
.ye6{bottom:4.629941px;}
.y10d{bottom:4.666774px;}
.y10e{bottom:4.666864px;}
.y109{bottom:4.667239px;}
.yf4{bottom:4.667361px;}
.y13e{bottom:4.845721px;}
.y149{bottom:4.845858px;}
.y104{bottom:5.514313px;}
.y132{bottom:5.656236px;}
.yfe{bottom:7.482709px;}
.y103{bottom:8.271061px;}
.ye0{bottom:8.805354px;}
.y102{bottom:8.865569px;}
.y13a{bottom:9.098258px;}
.yef{bottom:9.600643px;}
.ye7{bottom:9.600906px;}
.y10f{bottom:9.637550px;}
.y10a{bottom:9.638210px;}
.y12f{bottom:9.746598px;}
.y105{bottom:10.156124px;}
.y131{bottom:10.316200px;}
.yfb{bottom:10.812000px;}
.yfa{bottom:11.527390px;}
.yff{bottom:12.065003px;}
.yfd{bottom:12.065091px;}
.y100{bottom:12.065092px;}
.y148{bottom:16.237715px;}
.ye2{bottom:17.823583px;}
.y130{bottom:19.813402px;}
.ydd{bottom:22.333694px;}
.yfc{bottom:22.661383px;}
.ydc{bottom:26.310222px;}
.ydf{bottom:26.878713px;}
.ye1{bottom:26.878771px;}
.y147{bottom:32.695678px;}
.y139{bottom:36.393154px;}
.y146{bottom:50.153204px;}
.y138{bottom:63.688807px;}
.y6{bottom:66.600000px;}
.y145{bottom:67.572868px;}
.y5{bottom:82.170000px;}
.y144{bottom:85.030394px;}
.y137{bottom:91.020808px;}
.y4{bottom:97.650000px;}
.y143{bottom:102.486406px;}
.y3{bottom:115.740000px;}
.yb0{bottom:115.740068px;}
.y136{bottom:118.314947px;}
.y142{bottom:119.906070px;}
.y191{bottom:134.460000px;}
.y72{bottom:135.990000px;}
.y13d{bottom:137.363445px;}
.y141{bottom:137.363596px;}
.y1b8{bottom:138.150000px;}
.y158{bottom:138.870000px;}
.y1df{bottom:141.570000px;}
.yf3{bottom:142.035000px;}
.yce{bottom:142.290000px;}
.y135{bottom:145.610600px;}
.y16e{bottom:148.320000px;}
.y22{bottom:148.859985px;}
.y4a{bottom:150.120000px;}
.yf2{bottom:151.020000px;}
.y13c{bottom:154.827029px;}
.y140{bottom:154.827181px;}
.y190{bottom:158.670000px;}
.y14b{bottom:158.940000px;}
.y71{bottom:161.460000px;}
.y1b7{bottom:162.270000px;}
.yaf{bottom:163.080068px;}
.y1de{bottom:165.780000px;}
.ycd{bottom:167.760000px;}
.y157{bottom:170.100000px;}
.y13b{bottom:171.501564px;}
.y13f{bottom:171.501715px;}
.y134{bottom:172.909282px;}
.y21{bottom:172.979985px;}
.y16d{bottom:173.790000px;}
.y49{bottom:175.590000px;}
.y133{bottom:181.860000px;}
.y18f{bottom:182.790000px;}
.yf1{bottom:185.670000px;}
.y1b6{bottom:186.480000px;}
.y70{bottom:187.020000px;}
.yae{bottom:188.550068px;}
.y1dd{bottom:189.900000px;}
.ycc{bottom:193.320000px;}
.y20{bottom:197.189985px;}
.y16c{bottom:199.260000px;}
.y48{bottom:201.060000px;}
.y1b5{bottom:210.600000px;}
.y18e{bottom:211.680000px;}
.y6f{bottom:212.490000px;}
.y1dc{bottom:214.020000px;}
.yad{bottom:214.110068px;}
.yed{bottom:216.510000px;}
.ycb{bottom:218.790000px;}
.y1f{bottom:221.309985px;}
.y16b{bottom:224.850000px;}
.yf0{bottom:225.480000px;}
.y47{bottom:226.650000px;}
.y1b4{bottom:234.750000px;}
.y6e{bottom:237.990000px;}
.y1db{bottom:238.260000px;}
.y18d{bottom:238.890000px;}
.yac{bottom:239.610068px;}
.yca{bottom:244.290000px;}
.y1e{bottom:245.459985px;}
.y16a{bottom:250.320000px;}
.y46{bottom:252.120000px;}
.y1b3{bottom:258.870000px;}
.y1da{bottom:262.380000px;}
.y6d{bottom:263.550000px;}
.yea{bottom:265.335000px;}
.y18c{bottom:266.070000px;}
.y1d{bottom:269.669985px;}
.yc9{bottom:269.850000px;}
.y14a{bottom:271.830000px;}
.yec{bottom:274.350000px;}
.y169{bottom:275.790000px;}
.y45{bottom:277.590000px;}
.y1b2{bottom:283.080000px;}
.ya9{bottom:286.230062px;}
.yab{bottom:286.230065px;}
.y1d9{bottom:286.500000px;}
.ya7{bottom:288.570062px;}
.y6c{bottom:289.020000px;}
.ya8{bottom:292.440062px;}
.yaa{bottom:292.440065px;}
.y1c{bottom:293.789985px;}
.y18b{bottom:294.960000px;}
.yc8{bottom:295.320000px;}
.y168{bottom:301.350000px;}
.y44{bottom:303.150000px;}
.y1b1{bottom:307.200000px;}
.ye9{bottom:309.000000px;}
.y1d8{bottom:310.620000px;}
.y6b{bottom:314.490000px;}
.yc7{bottom:320.790000px;}
.y18a{bottom:322.050000px;}
.y167{bottom:326.820000px;}
.y43{bottom:328.620000px;}
.y1b0{bottom:331.320000px;}
.y1d7{bottom:334.830000px;}
.y1b{bottom:335.909985px;}
.ye5{bottom:339.810000px;}
.y6a{bottom:340.050000px;}
.yc6{bottom:346.350000px;}
.ya6{bottom:347.070067px;}
.ya5{bottom:347.070073px;}
.ye8{bottom:348.780000px;}
.y189{bottom:349.230000px;}
.ya4{bottom:349.410073px;}
.y166{bottom:352.290000px;}
.y42{bottom:354.090000px;}
.y1af{bottom:355.530000px;}
.y1d6{bottom:358.950000px;}
.y69{bottom:365.520000px;}
.yc5{bottom:371.820000px;}
.y188{bottom:376.410000px;}
.y165{bottom:377.850000px;}
.y41{bottom:379.650000px;}
.y12e{bottom:381.810000px;}
.y1d5{bottom:383.070000px;}
.ye4{bottom:383.340000px;}
.y68{bottom:390.990000px;}
.y12d{bottom:392.340000px;}
.yc4{bottom:397.290000px;}
.y1ae{bottom:403.770000px;}
.y40{bottom:405.120000px;}
.y187{bottom:405.300000px;}
.ydb{bottom:406.560000px;}
.y1d4{bottom:407.280000px;}
.ya1{bottom:408.000070px;}
.ya3{bottom:408.000079px;}
.y9f{bottom:410.340055px;}
.y164{bottom:412.140000px;}
.ya0{bottom:414.210085px;}
.ya2{bottom:414.210094px;}
.y67{bottom:416.550000px;}
.yc3{bottom:422.850000px;}
.ye3{bottom:424.560000px;}
.y1ad{bottom:427.980000px;}
.y12c{bottom:428.970000px;}
.y3f{bottom:430.590000px;}
.y1d3{bottom:431.400000px;}
.y186{bottom:432.480000px;}
.y66{bottom:442.020000px;}
.y9e{bottom:447.780055px;}
.yc2{bottom:448.320000px;}
.y11c{bottom:450.300000px;}
.y1ac{bottom:452.100000px;}
.y12b{bottom:454.440000px;}
.y163{bottom:455.250000px;}
.y1d2{bottom:455.520000px;}
.y3e{bottom:456.150000px;}
.y185{bottom:456.600000px;}
.yda{bottom:457.770000px;}
.y65{bottom:467.490000px;}
.yc1{bottom:473.790000px;}
.y1ab{bottom:476.220000px;}
.y11b{bottom:476.490000px;}
.y1d1{bottom:479.730000px;}
.y12a{bottom:480.000000px;}
.y162{bottom:480.720000px;}
.y184{bottom:480.810000px;}
.y3d{bottom:481.620000px;}
.y9a{bottom:482.430044px;}
.y9b{bottom:482.430052px;}
.y9d{bottom:482.430061px;}
.yd9{bottom:483.240000px;}
.y98{bottom:484.770029px;}
.y99{bottom:488.640059px;}
.y9c{bottom:488.640076px;}
.y64{bottom:493.050000px;}
.y1a{bottom:499.409985px;}
.y1aa{bottom:500.430000px;}
.y11a{bottom:502.050000px;}
.y1d0{bottom:503.850000px;}
.y183{bottom:504.930000px;}
.y129{bottom:506.190000px;}
.y161{bottom:507.000000px;}
.y3c{bottom:507.090000px;}
.yd8{bottom:508.800000px;}
.yc0{bottom:511.410000px;}
.y63{bottom:518.520000px;}
.y97{bottom:522.210029px;}
.y1a9{bottom:524.550000px;}
.y119{bottom:527.520000px;}
.y1cf{bottom:527.970000px;}
.y182{bottom:529.050000px;}
.y128{bottom:531.750000px;}
.y160{bottom:532.470000px;}
.y3b{bottom:532.650000px;}
.yd7{bottom:534.270000px;}
.y19{bottom:538.469985px;}
.y62{bottom:543.990000px;}
.y1a8{bottom:548.670000px;}
.y1ce{bottom:552.180000px;}
.y118{bottom:552.990000px;}
.y181{bottom:553.260000px;}
.y127{bottom:557.220000px;}
.y3a{bottom:558.120000px;}
.y15f{bottom:558.750000px;}
.y95{bottom:559.110028px;}
.yd6{bottom:559.740000px;}
.y96{bottom:562.980059px;}
.y18{bottom:569.519985px;}
.y61{bottom:569.550000px;}
.ybf{bottom:572.250000px;}
.y1a7{bottom:572.880000px;}
.y1cd{bottom:576.300000px;}
.y180{bottom:577.380000px;}
.y117{bottom:578.550000px;}
.y126{bottom:582.690000px;}
.y39{bottom:583.590000px;}
.y15e{bottom:584.220000px;}
.yd5{bottom:585.300000px;}
.y60{bottom:595.020000px;}
.y94{bottom:596.640028px;}
.y1a6{bottom:597.000000px;}
.y1cc{bottom:600.420000px;}
.y116{bottom:604.020000px;}
.y17f{bottom:606.270000px;}
.y17{bottom:607.319985px;}
.y125{bottom:608.250000px;}
.y38{bottom:609.150000px;}
.y15d{bottom:609.690000px;}
.yd4{bottom:610.770000px;}
.y5f{bottom:620.490000px;}
.y1a5{bottom:621.120000px;}
.y1cb{bottom:624.540000px;}
.y115{bottom:629.490000px;}
.ybe{bottom:633.180000px;}
.y17e{bottom:633.450000px;}
.y124{bottom:633.720000px;}
.y37{bottom:634.620000px;}
.y15c{bottom:635.250000px;}
.yd3{bottom:636.240000px;}
.y16{bottom:641.820000px;}
.y93{bottom:643.260003px;}
.y1a4{bottom:645.270000px;}
.y91{bottom:645.630018px;}
.y5e{bottom:646.080000px;}
.y1ca{bottom:648.780000px;}
.y92{bottom:649.500003px;}
.y156{bottom:653.370000px;}
.y114{bottom:655.800000px;}
.y123{bottom:659.220000px;}
.y36{bottom:660.120000px;}
.y17d{bottom:660.660000px;}
.y15b{bottom:660.750000px;}
.yd2{bottom:661.830000px;}
.y1a3{bottom:669.480000px;}
.y5d{bottom:671.550000px;}
.y1c9{bottom:672.900000px;}
.y155{bottom:678.930000px;}
.y15{bottom:679.560000px;}
.y113{bottom:682.080000px;}
.y122{bottom:685.500000px;}
.y35{bottom:685.680000px;}
.y15a{bottom:686.220000px;}
.yd1{bottom:687.300000px;}
.y17c{bottom:689.550000px;}
.y1a2{bottom:693.600000px;}
.ybd{bottom:694.140000px;}
.y5c{bottom:697.020000px;}
.y14{bottom:703.860000px;}
.y90{bottom:704.220024px;}
.y154{bottom:704.400000px;}
.y8f{bottom:706.560009px;}
.y112{bottom:707.550000px;}
.y34{bottom:711.150000px;}
.y121{bottom:711.780000px;}
.yd0{bottom:712.770000px;}
.y17b{bottom:716.640000px;}
.y1a1{bottom:717.720000px;}
.y1c8{bottom:721.230000px;}
.y5b{bottom:722.580000px;}
.y153{bottom:729.870000px;}
.ybc{bottom:730.950000px;}
.y111{bottom:733.020000px;}
.y33{bottom:736.620000px;}
.y120{bottom:737.250000px;}
.ycf{bottom:740.040000px;}
.y13{bottom:741.660000px;}
.y1a0{bottom:741.930000px;}
.y17a{bottom:743.820000px;}
.y1c7{bottom:745.350000px;}
.y5a{bottom:748.050000px;}
.y152{bottom:755.430000px;}
.y32{bottom:762.180000px;}
.y11f{bottom:762.720000px;}
.y10c{bottom:763.860000px;}
.y8e{bottom:765.150015px;}
.y12{bottom:765.960000px;}
.y19f{bottom:766.050000px;}
.y8c{bottom:767.490000px;}
.y159{bottom:768.300000px;}
.ybb{bottom:768.480000px;}
.y1c6{bottom:769.470000px;}
.y179{bottom:771.000000px;}
.y8d{bottom:771.359985px;}
.y110{bottom:772.890000px;}
.y59{bottom:773.520000px;}
.y151{bottom:780.900000px;}
.y31{bottom:787.650000px;}
.y11e{bottom:788.280000px;}
.y19e{bottom:790.170000px;}
.y1c5{bottom:793.680000px;}
.y58{bottom:799.080000px;}
.y178{bottom:799.890000px;}
.y11{bottom:803.760000px;}
.y8b{bottom:804.840000px;}
.y150{bottom:806.370000px;}
.y108{bottom:812.760000px;}
.y30{bottom:813.120000px;}
.y19d{bottom:814.380000px;}
.yba{bottom:817.440000px;}
.y1c4{bottom:817.800000px;}
.y11d{bottom:819.330000px;}
.y10b{bottom:821.760000px;}
.y57{bottom:824.550000px;}
.y177{bottom:827.070000px;}
.y14f{bottom:831.930000px;}
.y8a{bottom:832.110000px;}
.y10{bottom:834.810000px;}
.y19c{bottom:838.500000px;}
.y2f{bottom:838.680000px;}
.y1c3{bottom:841.920000px;}
.y56{bottom:850.020000px;}
.yb9{bottom:854.250000px;}
.y107{bottom:856.320000px;}
.y14e{bottom:857.400000px;}
.y19b{bottom:862.620000px;}
.y2e{bottom:864.150000px;}
.yf{bottom:865.860000px;}
.y1c2{bottom:866.130000px;}
.y81{bottom:868.380015px;}
.y82{bottom:868.380024px;}
.y84{bottom:868.380033px;}
.y86{bottom:868.380042px;}
.y87{bottom:868.380051px;}
.y89{bottom:868.380060px;}
.y7e{bottom:870.720000px;}
.y80{bottom:874.590030px;}
.y83{bottom:874.590048px;}
.y85{bottom:874.590057px;}
.y88{bottom:874.590075px;}
.y7f{bottom:874.770015px;}
.y55{bottom:875.580000px;}
.y176{bottom:878.370000px;}
.yb8{bottom:879.720000px;}
.y14d{bottom:882.870000px;}
.ye{bottom:886.560000px;}
.y19a{bottom:886.830000px;}
.y2d{bottom:889.620000px;}
.y1c1{bottom:890.250000px;}
.y106{bottom:897.090000px;}
.y54{bottom:901.050000px;}
.y175{bottom:902.580000px;}
.yb7{bottom:905.280000px;}
.y14c{bottom:907.080000px;}
.yd{bottom:910.860000px;}
.y199{bottom:910.950000px;}
.y1c0{bottom:914.370000px;}
.y2c{bottom:915.180000px;}
.y7c{bottom:916.440033px;}
.y7a{bottom:918.780018px;}
.y7b{bottom:922.649958px;}
.y7d{bottom:922.829953px;}
.y53{bottom:926.520000px;}
.y174{bottom:926.700000px;}
.yb6{bottom:930.750000px;}
.y1bf{bottom:938.580000px;}
.y198{bottom:939.840000px;}
.y2b{bottom:940.650000px;}
.yc{bottom:941.910000px;}
.y173{bottom:950.820000px;}
.y52{bottom:952.080000px;}
.yb5{bottom:956.220000px;}
.y1be{bottom:962.700000px;}
.y78{bottom:965.400015px;}
.y79{bottom:965.400024px;}
.y197{bottom:967.020000px;}
.y76{bottom:967.740000px;}
.y77{bottom:971.610030px;}
.yb{bottom:972.960000px;}
.y2a{bottom:974.940000px;}
.y51{bottom:977.550000px;}
.yb4{bottom:981.780000px;}
.yf9{bottom:982.110000px;}
.y1bd{bottom:986.820000px;}
.y101{bottom:994.110000px;}
.y196{bottom:994.200000px;}
.y172{bottom:999.150000px;}
.y50{bottom:1003.020000px;}
.yb3{bottom:1007.250000px;}
.y1bc{bottom:1010.940000px;}
.ya{bottom:1013.010000px;}
.y73{bottom:1016.520000px;}
.y29{bottom:1017.150000px;}
.y75{bottom:1020.390030px;}
.y74{bottom:1020.570015px;}
.y195{bottom:1021.290000px;}
.y171{bottom:1023.270000px;}
.y4f{bottom:1028.580000px;}
.yf8{bottom:1030.650000px;}
.y1bb{bottom:1035.150000px;}
.y9{bottom:1040.640000px;}
.y28{bottom:1041.270000px;}
.yb2{bottom:1043.340000px;}
.y194{bottom:1050.180000px;}
.y4e{bottom:1054.050000px;}
.yf7{bottom:1056.120000px;}
.y170{bottom:1056.390000px;}
.y1ba{bottom:1059.270000px;}
.y27{bottom:1065.390000px;}
.y193{bottom:1077.390000px;}
.y4d{bottom:1079.550000px;}
.yf6{bottom:1081.710000px;}
.y1b9{bottom:1083.420000px;}
.y8{bottom:1085.580000px;}
.yb1{bottom:1093.770000px;}
.y16f{bottom:1098.630000px;}
.y192{bottom:1104.570000px;}
.y4c{bottom:1105.110000px;}
.y26{bottom:1107.630000px;}
.y7{bottom:1109.700000px;}
.yf5{bottom:1119.240000px;}
.y4b{bottom:1130.580000px;}
.y25{bottom:1131.750000px;}
.y2{bottom:1151.370000px;}
.y24{bottom:1154.970000px;}
.y1{bottom:1172.160000px;}
.y23{bottom:1173.780000px;}
.h1d{height:20.160712px;}
.h2a{height:20.427322px;}
.h40{height:20.894567px;}
.h1f{height:22.007603px;}
.h2c{height:22.298637px;}
.h42{height:22.808685px;}
.h3a{height:28.798500px;}
.h22{height:28.800000px;}
.h32{height:29.187487px;}
.h2f{height:29.700000px;}
.h3b{height:30.990408px;}
.h23{height:31.097929px;}
.h34{height:31.861306px;}
.hb{height:33.431836px;}
.h3c{height:33.829389px;}
.h38{height:33.830696px;}
.h10{height:34.624160px;}
.h3e{height:36.000000px;}
.h5{height:37.705078px;}
.h27{height:38.700000px;}
.h36{height:38.719344px;}
.h1e{height:40.819280px;}
.h4{height:41.159180px;}
.h2b{height:41.357436px;}
.h41{height:42.286285px;}
.h1b{height:44.100000px;}
.h20{height:44.558669px;}
.h2d{height:45.146124px;}
.hc{height:50.273438px;}
.h33{height:50.467909px;}
.h9{height:50.800781px;}
.h45{height:50.898666px;}
.h2{height:52.769531px;}
.h21{height:54.149772px;}
.h2e{height:54.863675px;}
.hf{height:54.878906px;}
.h35{height:55.091193px;}
.h3{height:55.863281px;}
.h43{height:56.095681px;}
.h3d{height:58.508505px;}
.h39{height:58.510764px;}
.he{height:58.568555px;}
.h24{height:58.624460px;}
.h7{height:59.182910px;}
.ha{height:60.431836px;}
.hd{height:60.551776px;}
.h47{height:61.066934px;}
.h6{height:63.933926px;}
.h37{height:66.949387px;}
.h46{height:67.520818px;}
.h8{height:67.819043px;}
.h1c{height:73.117276px;}
.h28{height:74.123807px;}
.h3f{height:75.632808px;}
.h26{height:79.157689px;}
.h25{height:79.302111px;}
.h29{height:85.812415px;}
.h30{height:87.668538px;}
.h11{height:93.177246px;}
.h31{height:98.803825px;}
.h14{height:106.497066px;}
.h1a{height:106.497186px;}
.h15{height:106.497246px;}
.h13{height:106.497426px;}
.h17{height:106.617186px;}
.h16{height:108.657186px;}
.h18{height:108.657246px;}
.h19{height:118.017222px;}
.h12{height:118.017342px;}
.h44{height:191.401500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:30.600750px;}
.w3{width:33.299400px;}
.w6{width:62.998500px;}
.w4{width:64.800000px;}
.w9{width:72.001500px;}
.wa{width:105.301500px;}
.w2{width:188.997000px;}
.w7{width:295.191000px;}
.wc{width:343.885500px;}
.wb{width:374.254500px;}
.w8{width:528.975000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:1.676763px;}
.x3f{left:3.250425px;}
.x45{left:9.564321px;}
.x42{left:11.125540px;}
.x4e{left:14.160437px;}
.x4a{left:23.831335px;}
.x61{left:29.647512px;}
.x4d{left:35.526882px;}
.x40{left:51.203566px;}
.x58{left:54.748976px;}
.x4f{left:60.497392px;}
.x3a{left:63.145551px;}
.x3e{left:69.647762px;}
.x3b{left:77.060692px;}
.x4b{left:84.692493px;}
.x3d{left:94.080249px;}
.x59{left:96.803779px;}
.x3{left:114.840045px;}
.x1e{left:121.950015px;}
.x15{left:123.299925px;}
.x4{left:125.460000px;}
.x5{left:132.750000px;}
.x4c{left:137.026970px;}
.x27{left:141.870000px;}
.x8{left:144.840000px;}
.x3c{left:146.124560px;}
.x44{left:148.170000px;}
.xb{left:150.149985px;}
.x60{left:151.724149px;}
.xd{left:157.439955px;}
.x12{left:161.219925px;}
.x52{left:165.520445px;}
.x66{left:169.589985px;}
.x51{left:172.367765px;}
.x28{left:173.640000px;}
.x2b{left:174.720000px;}
.x46{left:179.670000px;}
.x2a{left:181.110000px;}
.x29{left:185.610000px;}
.x35{left:186.959895px;}
.x68{left:193.530000px;}
.x10{left:203.159925px;}
.x5a{left:213.059985px;}
.x1f{left:215.760030px;}
.x47{left:219.570000px;}
.x5b{left:227.010000px;}
.x54{left:232.006581px;}
.x39{left:235.740030px;}
.x5d{left:238.620000px;}
.x56{left:250.470870px;}
.x65{left:258.150015px;}
.x20{left:270.660045px;}
.x5e{left:271.740000px;}
.x48{left:282.540000px;}
.xc{left:285.149970px;}
.x16{left:289.830015px;}
.x63{left:305.520000px;}
.x1{left:310.620000px;}
.x21{left:319.260030px;}
.x6{left:325.470000px;}
.x2c{left:328.799985px;}
.xe{left:329.879985px;}
.x55{left:334.569378px;}
.xf{left:335.639925px;}
.x49{left:352.020000px;}
.x53{left:357.533876px;}
.x14{left:365.879925px;}
.x2d{left:374.339985px;}
.x18{left:386.849955px;}
.x13{left:397.109925px;}
.x19{left:398.819970px;}
.x5f{left:407.820000px;}
.x9{left:416.640000px;}
.x2e{left:418.979970px;}
.x11{left:429.149925px;}
.x2f{left:431.939940px;}
.x1b{left:433.919985px;}
.x1c{left:445.199970px;}
.x17{left:463.919970px;}
.xa{left:489.209985px;}
.x7{left:496.680000px;}
.x30{left:539.789925px;}
.x32{left:544.019925px;}
.x31{left:551.939940px;}
.x33{left:556.979940px;}
.x36{left:558.239880px;}
.x41{left:563.100000px;}
.x22{left:568.590015px;}
.x37{left:570.479880px;}
.x23{left:580.560030px;}
.x34{left:628.349880px;}
.x24{left:635.550045px;}
.x50{left:647.250000px;}
.x64{left:649.410000px;}
.x5c{left:664.170000px;}
.x67{left:668.219985px;}
.x1d{left:680.819970px;}
.x2{left:682.170000px;}
.x25{left:684.060045px;}
.x26{left:695.310045px;}
.x57{left:714.570000px;}
.x38{left:777.150030px;}
.x62{left:782.100000px;}
.x1a{left:805.140015px;}
@media print{
.ve{vertical-align:-64.133144pt;}
.vf{vertical-align:-32.064814pt;}
.v4{vertical-align:-30.720053pt;}
.v2{vertical-align:-24.000000pt;}
.vd{vertical-align:-22.400053pt;}
.v11{vertical-align:-17.673198pt;}
.v8{vertical-align:-15.360053pt;}
.v3{vertical-align:-14.400053pt;}
.v12{vertical-align:-5.440107pt;}
.v6{vertical-align:-3.520181pt;}
.va{vertical-align:-0.959963pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:0.959963pt;}
.v5{vertical-align:11.840160pt;}
.v7{vertical-align:13.760107pt;}
.v9{vertical-align:15.360053pt;}
.v10{vertical-align:17.674544pt;}
.v1{vertical-align:24.000000pt;}
.vc{vertical-align:37.760107pt;}
.ls56{letter-spacing:-0.922624pt;}
.ls5a{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.188267pt;}
.ls5f{letter-spacing:-0.160000pt;}
.ls4a{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.072533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.057600pt;}
.ls47{letter-spacing:0.072533pt;}
.ls15{letter-spacing:0.097493pt;}
.ls1a{letter-spacing:0.097547pt;}
.ls23{letter-spacing:0.097600pt;}
.lsf{letter-spacing:0.097653pt;}
.ls49{letter-spacing:0.116107pt;}
.ls50{letter-spacing:0.131520pt;}
.ls9{letter-spacing:0.131733pt;}
.ls62{letter-spacing:0.144533pt;}
.ls3{letter-spacing:0.159947pt;}
.ls2{letter-spacing:0.160000pt;}
.ls59{letter-spacing:0.160107pt;}
.ls5d{letter-spacing:0.175467pt;}
.ls61{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.266720pt;}
.ls48{letter-spacing:0.479947pt;}
.ls5e{letter-spacing:0.480000pt;}
.ls10{letter-spacing:2.254027pt;}
.ls19{letter-spacing:2.254080pt;}
.ls16{letter-spacing:2.254187pt;}
.ls12{letter-spacing:2.254347pt;}
.ls43{letter-spacing:2.515200pt;}
.ls3d{letter-spacing:2.978133pt;}
.ls36{letter-spacing:2.978187pt;}
.ls3a{letter-spacing:2.978347pt;}
.ls32{letter-spacing:3.298133pt;}
.ls31{letter-spacing:3.298293pt;}
.ls3c{letter-spacing:3.298453pt;}
.ls35{letter-spacing:3.404907pt;}
.ls3e{letter-spacing:4.399307pt;}
.ls3f{letter-spacing:4.399467pt;}
.ls4f{letter-spacing:4.506080pt;}
.ls44{letter-spacing:4.627787pt;}
.ls41{letter-spacing:4.704907pt;}
.ls45{letter-spacing:4.704960pt;}
.ls46{letter-spacing:4.946560pt;}
.ls40{letter-spacing:4.947787pt;}
.ls1b{letter-spacing:5.164213pt;}
.ls42{letter-spacing:5.266613pt;}
.ls1e{letter-spacing:5.484107pt;}
.ls22{letter-spacing:5.484160pt;}
.ls13{letter-spacing:5.590880pt;}
.lsb{letter-spacing:6.764107pt;}
.ls17{letter-spacing:6.764213pt;}
.lsd{letter-spacing:8.044160pt;}
.ls8{letter-spacing:8.266667pt;}
.ls29{letter-spacing:8.684320pt;}
.ls1d{letter-spacing:8.723840pt;}
.ls2f{letter-spacing:9.004107pt;}
.ls2e{letter-spacing:9.004160pt;}
.ls11{letter-spacing:9.043680pt;}
.lse{letter-spacing:9.043840pt;}
.ls14{letter-spacing:9.044000pt;}
.ls1c{letter-spacing:9.363787pt;}
.ls0{letter-spacing:9.600000pt;}
.ls33{letter-spacing:11.119947pt;}
.ls37{letter-spacing:11.120107pt;}
.ls5c{letter-spacing:11.146667pt;}
.ls34{letter-spacing:11.439893pt;}
.ls30{letter-spacing:11.440053pt;}
.ls26{letter-spacing:11.564160pt;}
.ls1{letter-spacing:12.480160pt;}
.lsc{letter-spacing:14.764213pt;}
.ls28{letter-spacing:14.803733pt;}
.ls2c{letter-spacing:14.803840pt;}
.ls2a{letter-spacing:14.803893pt;}
.ls27{letter-spacing:14.910507pt;}
.ls39{letter-spacing:19.298133pt;}
.ls38{letter-spacing:19.618133pt;}
.ls3b{letter-spacing:19.618293pt;}
.ls2b{letter-spacing:20.577440pt;}
.ls2d{letter-spacing:20.577600pt;}
.ls18{letter-spacing:27.564160pt;}
.ls24{letter-spacing:28.524160pt;}
.ls5b{letter-spacing:35.272320pt;}
.ls25{letter-spacing:49.324160pt;}
.ls21{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:61.964267pt;}
.ls4c{letter-spacing:68.010212pt;}
.ls4d{letter-spacing:71.043866pt;}
.ls4e{letter-spacing:91.191180pt;}
.ls57{letter-spacing:159.740068pt;}
.ls51{letter-spacing:183.000370pt;}
.ls4b{letter-spacing:358.113821pt;}
.ls55{letter-spacing:380.993575pt;}
.ls54{letter-spacing:382.822832pt;}
.ls52{letter-spacing:842.411036pt;}
.ls58{letter-spacing:1173.951875pt;}
.ls7{letter-spacing:1315.653333pt;}
.ls53{letter-spacing:1584.478090pt;}
.ws2a{word-spacing:-19.120000pt;}
.ws2b{word-spacing:-18.815467pt;}
.ws29{word-spacing:-18.800000pt;}
.ws2f{word-spacing:-18.784533pt;}
.ws4{word-spacing:-18.771733pt;}
.wsc{word-spacing:-18.640000pt;}
.ws5{word-spacing:-18.567467pt;}
.ws2c{word-spacing:-18.480000pt;}
.ws2d{word-spacing:-18.451733pt;}
.ws1e{word-spacing:-17.058872pt;}
.ws6{word-spacing:-16.403200pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws13{word-spacing:-14.255090pt;}
.ws15{word-spacing:-14.220561pt;}
.ws27{word-spacing:-12.000000pt;}
.ws28{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.640000pt;}
.ws11{word-spacing:-9.897212pt;}
.wsf{word-spacing:-6.416339pt;}
.ws24{word-spacing:-5.544701pt;}
.ws2e{word-spacing:-0.317013pt;}
.ws21{word-spacing:-0.074560pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:4.231360pt;}
.ws7{word-spacing:4.345920pt;}
.ws9{word-spacing:4.370560pt;}
.ws8{word-spacing:4.380480pt;}
.wsa{word-spacing:4.551360pt;}
.ws1c{word-spacing:15.903103pt;}
.ws1f{word-spacing:18.305714pt;}
.ws1a{word-spacing:19.690947pt;}
.ws22{word-spacing:39.277364pt;}
.ws16{word-spacing:43.000272pt;}
.ws26{word-spacing:44.579607pt;}
.ws17{word-spacing:47.503378pt;}
.ws20{word-spacing:50.744172pt;}
.ws1b{word-spacing:54.071129pt;}
.ws14{word-spacing:63.368023pt;}
.ws12{word-spacing:63.758243pt;}
.ws25{word-spacing:75.472535pt;}
.ws19{word-spacing:78.664396pt;}
.ws1d{word-spacing:90.139340pt;}
.wse{word-spacing:128.835012pt;}
.wsd{word-spacing:179.017560pt;}
.ws18{word-spacing:231.598385pt;}
.ws23{word-spacing:270.464523pt;}
.ws10{word-spacing:310.340933pt;}
._26{margin-left:-217.319767pt;}
._27{margin-left:-207.092322pt;}
._23{margin-left:-15.104427pt;}
._6{margin-left:-5.219200pt;}
._5{margin-left:-4.324480pt;}
._19{margin-left:-3.404480pt;}
._16{margin-left:-2.311360pt;}
._1{margin-left:-1.104000pt;}
._0{width:1.024000pt;}
._9{width:2.074613pt;}
._4{width:2.997440pt;}
._15{width:4.175360pt;}
._3{width:5.517440pt;}
._1f{width:6.412160pt;}
._8{width:7.306880pt;}
._e{width:8.373173pt;}
._22{width:9.376693pt;}
._1d{width:10.271200pt;}
._1c{width:11.233387pt;}
._7{width:12.600640pt;}
._17{width:13.495360pt;}
._d{width:14.948267pt;}
._c{width:15.881280pt;}
._13{width:16.850560pt;}
._12{width:17.745280pt;}
._18{width:19.609280pt;}
._1a{width:21.025920pt;}
._1b{width:21.963200pt;}
._b{width:22.889920pt;}
._a{width:24.306560pt;}
._10{width:25.706987pt;}
._f{width:26.849707pt;}
._59{width:28.556480pt;}
._5d{width:30.324160pt;}
._60{width:31.400320pt;}
._11{width:32.359040pt;}
._5a{width:34.954613pt;}
._1e{width:36.832640pt;}
._58{width:37.831093pt;}
._5e{width:40.709760pt;}
._4a{width:43.900480pt;}
._14{width:45.108800pt;}
._56{width:46.450880pt;}
._47{width:48.419800pt;}
._61{width:49.536027pt;}
._5c{width:53.981440pt;}
._5b{width:54.876160pt;}
._2f{width:57.546002pt;}
._62{width:58.678740pt;}
._34{width:61.073525pt;}
._21{width:63.255520pt;}
._20{width:64.419840pt;}
._32{width:69.760707pt;}
._24{width:70.926133pt;}
._25{width:73.848960pt;}
._5f{width:77.766080pt;}
._42{width:82.338788pt;}
._37{width:89.504304pt;}
._2e{width:91.666776pt;}
._4b{width:102.200591pt;}
._57{width:103.476898pt;}
._36{width:109.721746pt;}
._49{width:116.091832pt;}
._48{width:118.134878pt;}
._35{width:127.991154pt;}
._4d{width:130.219730pt;}
._4e{width:134.858720pt;}
._31{width:138.784320pt;}
._33{width:146.207913pt;}
._30{width:147.102956pt;}
._2c{width:150.931622pt;}
._4c{width:155.305466pt;}
._2d{width:157.588840pt;}
._28{width:184.329510pt;}
._50{width:189.701867pt;}
._29{width:200.311510pt;}
._45{width:203.867465pt;}
._44{width:211.461130pt;}
._43{width:214.658961pt;}
._3c{width:223.453337pt;}
._4f{width:232.807680pt;}
._3a{width:238.925748pt;}
._2{width:242.256000pt;}
._2a{width:250.087768pt;}
._3b{width:259.722842pt;}
._2b{width:274.792289pt;}
._46{width:283.711114pt;}
._51{width:349.040000pt;}
._39{width:380.345611pt;}
._54{width:392.640000pt;}
._3e{width:410.914347pt;}
._55{width:423.773493pt;}
._53{width:444.266667pt;}
._52{width:525.040427pt;}
._3d{width:543.891520pt;}
._38{width:711.441565pt;}
._3f{width:779.386667pt;}
._40{width:858.238187pt;}
._41{width:1013.306613pt;}
.fs7{font-size:25.665354pt;}
.fs10{font-size:26.004759pt;}
.fs1b{font-size:26.599579pt;}
.fsb{font-size:28.104115pt;}
.fs14{font-size:37.156782pt;}
.fs18{font-size:39.451969pt;}
.fs16{font-size:39.453493pt;}
.fs9{font-size:39.588847pt;}
.fs4{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:51.964498pt;}
.fs11{font-size:52.649590pt;}
.fs5{font-size:53.440000pt;}
.fs1c{font-size:53.832050pt;}
.fsd{font-size:56.882243pt;}
.fsc{font-size:57.020360pt;}
.fs0{font-size:64.000000pt;}
.fs15{font-size:64.247569pt;}
.fs1d{font-size:64.795940pt;}
.fs19{font-size:68.232852pt;}
.fs17{font-size:68.235487pt;}
.fsa{font-size:68.368080pt;}
.fs6{font-size:70.166546pt;}
.fse{font-size:71.132458pt;}
.fs1a{font-size:72.580561pt;}
.fs2{font-size:74.560000pt;}
.fsf{font-size:82.349359pt;}
.fs12{font-size:84.130576pt;}
.fs3{font-size:85.440000pt;}
.fs13{font-size:94.816486pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.818628pt;}
.yeb{bottom:4.114484pt;}
.yee{bottom:4.115255pt;}
.ye6{bottom:4.115503pt;}
.y10d{bottom:4.148244pt;}
.y10e{bottom:4.148323pt;}
.y109{bottom:4.148657pt;}
.yf4{bottom:4.148766pt;}
.y13e{bottom:4.307308pt;}
.y149{bottom:4.307429pt;}
.y104{bottom:4.901612pt;}
.y132{bottom:5.027765pt;}
.yfe{bottom:6.651297pt;}
.y103{bottom:7.352054pt;}
.ye0{bottom:7.826982pt;}
.y102{bottom:7.880506pt;}
.y13a{bottom:8.087340pt;}
.yef{bottom:8.533905pt;}
.ye7{bottom:8.534139pt;}
.y10f{bottom:8.566711pt;}
.y10a{bottom:8.567298pt;}
.y12f{bottom:8.663642pt;}
.y105{bottom:9.027666pt;}
.y131{bottom:9.169956pt;}
.yfb{bottom:9.610667pt;}
.yfa{bottom:10.246569pt;}
.yff{bottom:10.724447pt;}
.yfd{bottom:10.724525pt;}
.y100{bottom:10.724527pt;}
.y148{bottom:14.433525pt;}
.ye2{bottom:15.843185pt;}
.y130{bottom:17.611913pt;}
.ydd{bottom:19.852172pt;}
.yfc{bottom:20.143451pt;}
.ydc{bottom:23.386864pt;}
.ydf{bottom:23.892190pt;}
.ye1{bottom:23.892241pt;}
.y147{bottom:29.062825pt;}
.y139{bottom:32.349470pt;}
.y146{bottom:44.580626pt;}
.y138{bottom:56.612273pt;}
.y6{bottom:59.200000pt;}
.y145{bottom:60.064772pt;}
.y5{bottom:73.040000pt;}
.y144{bottom:75.582573pt;}
.y137{bottom:80.907385pt;}
.y4{bottom:86.800000pt;}
.y143{bottom:91.099028pt;}
.y3{bottom:102.880000pt;}
.yb0{bottom:102.880060pt;}
.y136{bottom:105.168842pt;}
.y142{bottom:106.583173pt;}
.y191{bottom:119.520000pt;}
.y72{bottom:120.880000pt;}
.y13d{bottom:122.100840pt;}
.y141{bottom:122.100975pt;}
.y1b8{bottom:122.800000pt;}
.y158{bottom:123.440000pt;}
.y1df{bottom:125.840000pt;}
.yf3{bottom:126.253333pt;}
.yce{bottom:126.480000pt;}
.y135{bottom:129.431645pt;}
.y16e{bottom:131.840000pt;}
.y22{bottom:132.319987pt;}
.y4a{bottom:133.440000pt;}
.yf2{bottom:134.240000pt;}
.y13c{bottom:137.624026pt;}
.y140{bottom:137.624161pt;}
.y190{bottom:141.040000pt;}
.y14b{bottom:141.280000pt;}
.y71{bottom:143.520000pt;}
.y1b7{bottom:144.240000pt;}
.yaf{bottom:144.960060pt;}
.y1de{bottom:147.360000pt;}
.ycd{bottom:149.120000pt;}
.y157{bottom:151.200000pt;}
.y13b{bottom:152.445835pt;}
.y13f{bottom:152.445969pt;}
.y134{bottom:153.697140pt;}
.y21{bottom:153.759987pt;}
.y16d{bottom:154.480000pt;}
.y49{bottom:156.080000pt;}
.y133{bottom:161.653333pt;}
.y18f{bottom:162.480000pt;}
.yf1{bottom:165.040000pt;}
.y1b6{bottom:165.760000pt;}
.y70{bottom:166.240000pt;}
.yae{bottom:167.600060pt;}
.y1dd{bottom:168.800000pt;}
.ycc{bottom:171.840000pt;}
.y20{bottom:175.279987pt;}
.y16c{bottom:177.120000pt;}
.y48{bottom:178.720000pt;}
.y1b5{bottom:187.200000pt;}
.y18e{bottom:188.160000pt;}
.y6f{bottom:188.880000pt;}
.y1dc{bottom:190.240000pt;}
.yad{bottom:190.320060pt;}
.yed{bottom:192.453333pt;}
.ycb{bottom:194.480000pt;}
.y1f{bottom:196.719987pt;}
.y16b{bottom:199.866667pt;}
.yf0{bottom:200.426667pt;}
.y47{bottom:201.466667pt;}
.y1b4{bottom:208.666667pt;}
.y6e{bottom:211.546667pt;}
.y1db{bottom:211.786667pt;}
.y18d{bottom:212.346667pt;}
.yac{bottom:212.986727pt;}
.yca{bottom:217.146667pt;}
.y1e{bottom:218.186653pt;}
.y16a{bottom:222.506667pt;}
.y46{bottom:224.106667pt;}
.y1b3{bottom:230.106667pt;}
.y1da{bottom:233.226667pt;}
.y6d{bottom:234.266667pt;}
.yea{bottom:235.853333pt;}
.y18c{bottom:236.506667pt;}
.y1d{bottom:239.706653pt;}
.yc9{bottom:239.866667pt;}
.y14a{bottom:241.626667pt;}
.yec{bottom:243.866667pt;}
.y169{bottom:245.146667pt;}
.y45{bottom:246.746667pt;}
.y1b2{bottom:251.626667pt;}
.ya9{bottom:254.426721pt;}
.yab{bottom:254.426724pt;}
.y1d9{bottom:254.666667pt;}
.ya7{bottom:256.506721pt;}
.y6c{bottom:256.906667pt;}
.ya8{bottom:259.946721pt;}
.yaa{bottom:259.946724pt;}
.y1c{bottom:261.146653pt;}
.y18b{bottom:262.186667pt;}
.yc8{bottom:262.506667pt;}
.y168{bottom:267.866667pt;}
.y44{bottom:269.466667pt;}
.y1b1{bottom:273.066667pt;}
.ye9{bottom:274.666667pt;}
.y1d8{bottom:276.106667pt;}
.y6b{bottom:279.546667pt;}
.yc7{bottom:285.146667pt;}
.y18a{bottom:286.266667pt;}
.y167{bottom:290.506667pt;}
.y43{bottom:292.106667pt;}
.y1b0{bottom:294.506667pt;}
.y1d7{bottom:297.626667pt;}
.y1b{bottom:298.586653pt;}
.ye5{bottom:302.053333pt;}
.y6a{bottom:302.266667pt;}
.yc6{bottom:307.866667pt;}
.ya6{bottom:308.506727pt;}
.ya5{bottom:308.506732pt;}
.ye8{bottom:310.026667pt;}
.y189{bottom:310.426667pt;}
.ya4{bottom:310.586732pt;}
.y166{bottom:313.146667pt;}
.y42{bottom:314.746667pt;}
.y1af{bottom:316.026667pt;}
.y1d6{bottom:319.066667pt;}
.y69{bottom:324.906667pt;}
.yc5{bottom:330.506667pt;}
.y188{bottom:334.586667pt;}
.y165{bottom:335.866667pt;}
.y41{bottom:337.466667pt;}
.y12e{bottom:339.386667pt;}
.y1d5{bottom:340.506667pt;}
.ye4{bottom:340.746667pt;}
.y68{bottom:347.546667pt;}
.y12d{bottom:348.746667pt;}
.yc4{bottom:353.146667pt;}
.y1ae{bottom:358.906667pt;}
.y40{bottom:360.106667pt;}
.y187{bottom:360.266667pt;}
.ydb{bottom:361.386667pt;}
.y1d4{bottom:362.026667pt;}
.ya1{bottom:362.666729pt;}
.ya3{bottom:362.666737pt;}
.y9f{bottom:364.746716pt;}
.y164{bottom:366.346667pt;}
.ya0{bottom:368.186743pt;}
.ya2{bottom:368.186751pt;}
.y67{bottom:370.266667pt;}
.yc3{bottom:375.866667pt;}
.ye3{bottom:377.386667pt;}
.y1ad{bottom:380.426667pt;}
.y12c{bottom:381.306667pt;}
.y3f{bottom:382.746667pt;}
.y1d3{bottom:383.466667pt;}
.y186{bottom:384.426667pt;}
.y66{bottom:392.906667pt;}
.y9e{bottom:398.026716pt;}
.yc2{bottom:398.506667pt;}
.y11c{bottom:400.266667pt;}
.y1ac{bottom:401.866667pt;}
.y12b{bottom:403.946667pt;}
.y163{bottom:404.666667pt;}
.y1d2{bottom:404.906667pt;}
.y3e{bottom:405.466667pt;}
.y185{bottom:405.866667pt;}
.yda{bottom:406.906667pt;}
.y65{bottom:415.546667pt;}
.yc1{bottom:421.146667pt;}
.y1ab{bottom:423.306667pt;}
.y11b{bottom:423.546667pt;}
.y1d1{bottom:426.426667pt;}
.y12a{bottom:426.666667pt;}
.y162{bottom:427.306667pt;}
.y184{bottom:427.386667pt;}
.y3d{bottom:428.106667pt;}
.y9a{bottom:428.826705pt;}
.y9b{bottom:428.826713pt;}
.y9d{bottom:428.826721pt;}
.yd9{bottom:429.546667pt;}
.y98{bottom:430.906692pt;}
.y99{bottom:434.346719pt;}
.y9c{bottom:434.346735pt;}
.y64{bottom:438.266667pt;}
.y1a{bottom:443.919987pt;}
.y1aa{bottom:444.826667pt;}
.y11a{bottom:446.266667pt;}
.y1d0{bottom:447.866667pt;}
.y183{bottom:448.826667pt;}
.y129{bottom:449.946667pt;}
.y161{bottom:450.666667pt;}
.y3c{bottom:450.746667pt;}
.yd8{bottom:452.266667pt;}
.yc0{bottom:454.586667pt;}
.y63{bottom:460.906667pt;}
.y97{bottom:464.186692pt;}
.y1a9{bottom:466.266667pt;}
.y119{bottom:468.906667pt;}
.y1cf{bottom:469.306667pt;}
.y182{bottom:470.266667pt;}
.y128{bottom:472.666667pt;}
.y160{bottom:473.306667pt;}
.y3b{bottom:473.466667pt;}
.yd7{bottom:474.906667pt;}
.y19{bottom:478.639987pt;}
.y62{bottom:483.546667pt;}
.y1a8{bottom:487.706667pt;}
.y1ce{bottom:490.826667pt;}
.y118{bottom:491.546667pt;}
.y181{bottom:491.786667pt;}
.y127{bottom:495.306667pt;}
.y3a{bottom:496.106667pt;}
.y15f{bottom:496.666667pt;}
.y95{bottom:496.986692pt;}
.yd6{bottom:497.546667pt;}
.y96{bottom:500.426719pt;}
.y18{bottom:506.239987pt;}
.y61{bottom:506.266667pt;}
.ybf{bottom:508.666667pt;}
.y1a7{bottom:509.226667pt;}
.y1cd{bottom:512.266667pt;}
.y180{bottom:513.226667pt;}
.y117{bottom:514.266667pt;}
.y126{bottom:517.946667pt;}
.y39{bottom:518.746667pt;}
.y15e{bottom:519.306667pt;}
.yd5{bottom:520.266667pt;}
.y60{bottom:528.906667pt;}
.y94{bottom:530.346692pt;}
.y1a6{bottom:530.666667pt;}
.y1cc{bottom:533.706667pt;}
.y116{bottom:536.906667pt;}
.y17f{bottom:538.906667pt;}
.y17{bottom:539.839987pt;}
.y125{bottom:540.666667pt;}
.y38{bottom:541.466667pt;}
.y15d{bottom:541.946667pt;}
.yd4{bottom:542.906667pt;}
.y5f{bottom:551.546667pt;}
.y1a5{bottom:552.106667pt;}
.y1cb{bottom:555.146667pt;}
.y115{bottom:559.546667pt;}
.ybe{bottom:562.826667pt;}
.y17e{bottom:563.066667pt;}
.y124{bottom:563.306667pt;}
.y37{bottom:564.106667pt;}
.y15c{bottom:564.666667pt;}
.yd3{bottom:565.546667pt;}
.y16{bottom:570.506667pt;}
.y93{bottom:571.786669pt;}
.y1a4{bottom:573.573333pt;}
.y91{bottom:573.893349pt;}
.y5e{bottom:574.293333pt;}
.y1ca{bottom:576.693333pt;}
.y92{bottom:577.333336pt;}
.y156{bottom:580.773333pt;}
.y114{bottom:582.933333pt;}
.y123{bottom:585.973333pt;}
.y36{bottom:586.773333pt;}
.y17d{bottom:587.253333pt;}
.y15b{bottom:587.333333pt;}
.yd2{bottom:588.293333pt;}
.y1a3{bottom:595.093333pt;}
.y5d{bottom:596.933333pt;}
.y1c9{bottom:598.133333pt;}
.y155{bottom:603.493333pt;}
.y15{bottom:604.053333pt;}
.y113{bottom:606.293333pt;}
.y122{bottom:609.333333pt;}
.y35{bottom:609.493333pt;}
.y15a{bottom:609.973333pt;}
.yd1{bottom:610.933333pt;}
.y17c{bottom:612.933333pt;}
.y1a2{bottom:616.533333pt;}
.ybd{bottom:617.013333pt;}
.y5c{bottom:619.573333pt;}
.y14{bottom:625.653333pt;}
.y90{bottom:625.973355pt;}
.y154{bottom:626.133333pt;}
.y8f{bottom:628.053341pt;}
.y112{bottom:628.933333pt;}
.y34{bottom:632.133333pt;}
.y121{bottom:632.693333pt;}
.yd0{bottom:633.573333pt;}
.y17b{bottom:637.013333pt;}
.y1a1{bottom:637.973333pt;}
.y1c8{bottom:641.093333pt;}
.y5b{bottom:642.293333pt;}
.y153{bottom:648.773333pt;}
.ybc{bottom:649.733333pt;}
.y111{bottom:651.573333pt;}
.y33{bottom:654.773333pt;}
.y120{bottom:655.333333pt;}
.ycf{bottom:657.813333pt;}
.y13{bottom:659.253333pt;}
.y1a0{bottom:659.493333pt;}
.y17a{bottom:661.173333pt;}
.y1c7{bottom:662.533333pt;}
.y5a{bottom:664.933333pt;}
.y152{bottom:671.493333pt;}
.y32{bottom:677.493333pt;}
.y11f{bottom:677.973333pt;}
.y10c{bottom:678.986667pt;}
.y8e{bottom:680.133347pt;}
.y12{bottom:680.853333pt;}
.y19f{bottom:680.933333pt;}
.y8c{bottom:682.213333pt;}
.y159{bottom:682.933333pt;}
.ybb{bottom:683.093333pt;}
.y1c6{bottom:683.973333pt;}
.y179{bottom:685.333333pt;}
.y8d{bottom:685.653320pt;}
.y110{bottom:687.013333pt;}
.y59{bottom:687.573333pt;}
.y151{bottom:694.133333pt;}
.y31{bottom:700.133333pt;}
.y11e{bottom:700.693333pt;}
.y19e{bottom:702.373333pt;}
.y1c5{bottom:705.493333pt;}
.y58{bottom:710.293333pt;}
.y178{bottom:711.013333pt;}
.y11{bottom:714.453333pt;}
.y8b{bottom:715.413333pt;}
.y150{bottom:716.773333pt;}
.y108{bottom:722.453333pt;}
.y30{bottom:722.773333pt;}
.y19d{bottom:723.893333pt;}
.yba{bottom:726.613333pt;}
.y1c4{bottom:726.933333pt;}
.y11d{bottom:728.293333pt;}
.y10b{bottom:730.453333pt;}
.y57{bottom:732.933333pt;}
.y177{bottom:735.173333pt;}
.y14f{bottom:739.493333pt;}
.y8a{bottom:739.653333pt;}
.y10{bottom:742.053333pt;}
.y19c{bottom:745.333333pt;}
.y2f{bottom:745.493333pt;}
.y1c3{bottom:748.373333pt;}
.y56{bottom:755.573333pt;}
.yb9{bottom:759.333333pt;}
.y107{bottom:761.173333pt;}
.y14e{bottom:762.133333pt;}
.y19b{bottom:766.773333pt;}
.y2e{bottom:768.133333pt;}
.yf{bottom:769.653333pt;}
.y1c2{bottom:769.893333pt;}
.y81{bottom:771.893347pt;}
.y82{bottom:771.893355pt;}
.y84{bottom:771.893363pt;}
.y86{bottom:771.893371pt;}
.y87{bottom:771.893379pt;}
.y89{bottom:771.893387pt;}
.y7e{bottom:773.973333pt;}
.y80{bottom:777.413360pt;}
.y83{bottom:777.413376pt;}
.y85{bottom:777.413384pt;}
.y88{bottom:777.413400pt;}
.y7f{bottom:777.573347pt;}
.y55{bottom:778.293333pt;}
.y176{bottom:780.773333pt;}
.yb8{bottom:781.973333pt;}
.y14d{bottom:784.773333pt;}
.ye{bottom:788.053333pt;}
.y19a{bottom:788.293333pt;}
.y2d{bottom:790.773333pt;}
.y1c1{bottom:791.333333pt;}
.y106{bottom:797.413333pt;}
.y54{bottom:800.933333pt;}
.y175{bottom:802.293333pt;}
.yb7{bottom:804.693333pt;}
.y14c{bottom:806.293333pt;}
.yd{bottom:809.653333pt;}
.y199{bottom:809.733333pt;}
.y1c0{bottom:812.773333pt;}
.y2c{bottom:813.493333pt;}
.y7c{bottom:814.613363pt;}
.y7a{bottom:816.693349pt;}
.y7b{bottom:820.133296pt;}
.y7d{bottom:820.293292pt;}
.y53{bottom:823.573333pt;}
.y174{bottom:823.733333pt;}
.yb6{bottom:827.333333pt;}
.y1bf{bottom:834.293333pt;}
.y198{bottom:835.413333pt;}
.y2b{bottom:836.133333pt;}
.yc{bottom:837.253333pt;}
.y173{bottom:845.173333pt;}
.y52{bottom:846.293333pt;}
.yb5{bottom:849.973333pt;}
.y1be{bottom:855.733333pt;}
.y78{bottom:858.133347pt;}
.y79{bottom:858.133355pt;}
.y197{bottom:859.573333pt;}
.y76{bottom:860.213333pt;}
.y77{bottom:863.653360pt;}
.yb{bottom:864.853333pt;}
.y2a{bottom:866.613333pt;}
.y51{bottom:868.933333pt;}
.yb4{bottom:872.693333pt;}
.yf9{bottom:872.986667pt;}
.y1bd{bottom:877.173333pt;}
.y101{bottom:883.653333pt;}
.y196{bottom:883.733333pt;}
.y172{bottom:888.133333pt;}
.y50{bottom:891.573333pt;}
.yb3{bottom:895.333333pt;}
.y1bc{bottom:898.613333pt;}
.ya{bottom:900.453333pt;}
.y73{bottom:903.573333pt;}
.y29{bottom:904.133333pt;}
.y75{bottom:907.013360pt;}
.y74{bottom:907.173347pt;}
.y195{bottom:907.813333pt;}
.y171{bottom:909.573333pt;}
.y4f{bottom:914.293333pt;}
.yf8{bottom:916.133333pt;}
.y1bb{bottom:920.133333pt;}
.y9{bottom:925.013333pt;}
.y28{bottom:925.573333pt;}
.yb2{bottom:927.413333pt;}
.y194{bottom:933.493333pt;}
.y4e{bottom:936.933333pt;}
.yf7{bottom:938.773333pt;}
.y170{bottom:939.013333pt;}
.y1ba{bottom:941.573333pt;}
.y27{bottom:947.013333pt;}
.y193{bottom:957.680000pt;}
.y4d{bottom:959.600000pt;}
.yf6{bottom:961.520000pt;}
.y1b9{bottom:963.040000pt;}
.y8{bottom:964.960000pt;}
.yb1{bottom:972.240000pt;}
.y16f{bottom:976.560000pt;}
.y192{bottom:981.840000pt;}
.y4c{bottom:982.320000pt;}
.y26{bottom:984.560000pt;}
.y7{bottom:986.400000pt;}
.yf5{bottom:994.880000pt;}
.y4b{bottom:1004.960000pt;}
.y25{bottom:1006.000000pt;}
.y2{bottom:1023.440000pt;}
.y24{bottom:1026.640000pt;}
.y1{bottom:1041.920000pt;}
.y23{bottom:1043.360000pt;}
.h1d{height:17.920633pt;}
.h2a{height:18.157620pt;}
.h40{height:18.572948pt;}
.h1f{height:19.562313pt;}
.h2c{height:19.821010pt;}
.h42{height:20.274386pt;}
.h3a{height:25.598667pt;}
.h22{height:25.600000pt;}
.h32{height:25.944433pt;}
.h2f{height:26.400000pt;}
.h3b{height:27.547029pt;}
.h23{height:27.642603pt;}
.h34{height:28.321160pt;}
.hb{height:29.717188pt;}
.h3c{height:30.070568pt;}
.h38{height:30.071729pt;}
.h10{height:30.777031pt;}
.h3e{height:32.000000pt;}
.h5{height:33.515625pt;}
.h27{height:34.400000pt;}
.h36{height:34.417195pt;}
.h1e{height:36.283804pt;}
.h4{height:36.585938pt;}
.h2b{height:36.762165pt;}
.h41{height:37.587809pt;}
.h1b{height:39.200000pt;}
.h20{height:39.607705pt;}
.h2d{height:40.129888pt;}
.hc{height:44.687500pt;}
.h33{height:44.860363pt;}
.h9{height:45.156250pt;}
.h45{height:45.243259pt;}
.h2{height:46.906250pt;}
.h21{height:48.133131pt;}
.h2e{height:48.767711pt;}
.hf{height:48.781250pt;}
.h35{height:48.969949pt;}
.h3{height:49.656250pt;}
.h43{height:49.862828pt;}
.h3d{height:52.007560pt;}
.h39{height:52.009568pt;}
.he{height:52.060937pt;}
.h24{height:52.110631pt;}
.h7{height:52.607031pt;}
.ha{height:53.717188pt;}
.hd{height:53.823801pt;}
.h47{height:54.281719pt;}
.h6{height:56.830156pt;}
.h37{height:59.510566pt;}
.h46{height:60.018505pt;}
.h8{height:60.283594pt;}
.h1c{height:64.993134pt;}
.h28{height:65.887829pt;}
.h3f{height:67.229163pt;}
.h26{height:70.362390pt;}
.h25{height:70.490766pt;}
.h29{height:76.277703pt;}
.h30{height:77.927590pt;}
.h11{height:82.824219pt;}
.h31{height:87.825622pt;}
.h14{height:94.664059pt;}
.h1a{height:94.664165pt;}
.h15{height:94.664219pt;}
.h13{height:94.664379pt;}
.h17{height:94.770832pt;}
.h16{height:96.584165pt;}
.h18{height:96.584219pt;}
.h19{height:104.904197pt;}
.h12{height:104.904304pt;}
.h44{height:170.134667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:27.200667pt;}
.w3{width:29.599467pt;}
.w6{width:55.998667pt;}
.w4{width:57.600000pt;}
.w9{width:64.001333pt;}
.wa{width:93.601333pt;}
.w2{width:167.997333pt;}
.w7{width:262.392000pt;}
.wc{width:305.676000pt;}
.wb{width:332.670667pt;}
.w8{width:470.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:1.490456pt;}
.x3f{left:2.889266pt;}
.x45{left:8.501619pt;}
.x42{left:9.889369pt;}
.x4e{left:12.587055pt;}
.x4a{left:21.183409pt;}
.x61{left:26.353344pt;}
.x4d{left:31.579451pt;}
.x40{left:45.514281pt;}
.x58{left:48.665756pt;}
.x4f{left:53.775460pt;}
.x3a{left:56.129379pt;}
.x3e{left:61.909122pt;}
.x3b{left:68.498393pt;}
.x4b{left:75.282216pt;}
.x3d{left:83.626888pt;}
.x59{left:86.047804pt;}
.x3{left:102.080040pt;}
.x1e{left:108.400013pt;}
.x15{left:109.599933pt;}
.x4{left:111.520000pt;}
.x5{left:118.000000pt;}
.x4c{left:121.801751pt;}
.x27{left:126.106667pt;}
.x8{left:128.746667pt;}
.x3c{left:129.888498pt;}
.x44{left:131.706667pt;}
.xb{left:133.466653pt;}
.x60{left:134.865910pt;}
.xd{left:139.946627pt;}
.x12{left:143.306600pt;}
.x52{left:147.129284pt;}
.x66{left:150.746653pt;}
.x51{left:153.215791pt;}
.x28{left:154.346667pt;}
.x2b{left:155.306667pt;}
.x46{left:159.706667pt;}
.x2a{left:160.986667pt;}
.x29{left:164.986667pt;}
.x35{left:166.186573pt;}
.x68{left:172.026667pt;}
.x10{left:180.586600pt;}
.x5a{left:189.386653pt;}
.x1f{left:191.786693pt;}
.x47{left:195.173333pt;}
.x5b{left:201.786667pt;}
.x54{left:206.228072pt;}
.x39{left:209.546693pt;}
.x5d{left:212.106667pt;}
.x56{left:222.640773pt;}
.x65{left:229.466680pt;}
.x20{left:240.586707pt;}
.x5e{left:241.546667pt;}
.x48{left:251.146667pt;}
.xc{left:253.466640pt;}
.x16{left:257.626680pt;}
.x63{left:271.573333pt;}
.x1{left:276.106667pt;}
.x21{left:283.786693pt;}
.x6{left:289.306667pt;}
.x2c{left:292.266653pt;}
.xe{left:293.226653pt;}
.x55{left:297.395002pt;}
.xf{left:298.346600pt;}
.x49{left:312.906667pt;}
.x53{left:317.807889pt;}
.x14{left:325.226600pt;}
.x2d{left:332.746653pt;}
.x18{left:343.866627pt;}
.x13{left:352.986600pt;}
.x19{left:354.506640pt;}
.x5f{left:362.506667pt;}
.x9{left:370.346667pt;}
.x2e{left:372.426640pt;}
.x11{left:381.466600pt;}
.x2f{left:383.946613pt;}
.x1b{left:385.706653pt;}
.x1c{left:395.733307pt;}
.x17{left:412.373307pt;}
.xa{left:434.853320pt;}
.x7{left:441.493333pt;}
.x30{left:479.813267pt;}
.x32{left:483.573267pt;}
.x31{left:490.613280pt;}
.x33{left:495.093280pt;}
.x36{left:496.213227pt;}
.x41{left:500.533333pt;}
.x22{left:505.413347pt;}
.x37{left:507.093227pt;}
.x23{left:516.053360pt;}
.x34{left:558.533227pt;}
.x24{left:564.933373pt;}
.x50{left:575.333333pt;}
.x64{left:577.253333pt;}
.x5c{left:590.373333pt;}
.x67{left:593.973320pt;}
.x1d{left:605.173307pt;}
.x2{left:606.373333pt;}
.x25{left:608.053373pt;}
.x26{left:618.053373pt;}
.x57{left:635.173333pt;}
.x38{left:690.800027pt;}
.x62{left:695.200000pt;}
.x1a{left:715.680013pt;}
}




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