
    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_99df784d8c8f553c1bdf51e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_521678a2e5ec466297a11956.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_f10d18dffd5cc20035e613bf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ea86364afdb43801b7479fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bf472004ce36fdff687977e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_7ca4b605655a0b33c066ca92.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8c617a585109075eeeddfa0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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_f9b53e4911b0368b1a544a70.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_f790272dd7c6df5cfc6c7409.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_0f061e687f597ba9e79444d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_b5c80e6b84a3b000a29561b8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dd393b3c3b058a146428f0fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_ccecf1f140aa5c004c042e92.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942871;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_d9aaa8f5cdd4ffe3863f8795.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7b5d2bc417610a4608e84df1.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1bd06e789d24c39ca7f8feee.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_223576be94f8d0b0b955be5e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_f2949e44adfc2170283d6364.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_bd5f7c9ef5881cdb8197488d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-2.407682px;}
.ls39{letter-spacing:-2.266970px;}
.ls3b{letter-spacing:-1.944002px;}
.ls33{letter-spacing:-1.774081px;}
.ls24{letter-spacing:-1.457281px;}
.ls34{letter-spacing:-1.403359px;}
.ls20{letter-spacing:-1.393921px;}
.ls36{letter-spacing:-1.295413px;}
.ls35{letter-spacing:-1.241437px;}
.ls38{letter-spacing:-1.187461px;}
.ls26{letter-spacing:-1.140481px;}
.ls56{letter-spacing:-1.075681px;}
.ls65{letter-spacing:-1.015921px;}
.ls23{letter-spacing:-1.013761px;}
.ls22{letter-spacing:-0.950401px;}
.ls64{letter-spacing:-0.836641px;}
.ls15{letter-spacing:-0.823681px;}
.ls13{letter-spacing:-0.760321px;}
.ls6c{letter-spacing:-0.702001px;}
.ls1e{letter-spacing:-0.696961px;}
.ls2e{letter-spacing:-0.633601px;}
.ls69{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.570240px;}
.ls21{letter-spacing:-0.506880px;}
.ls67{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.485779px;}
.ls52{letter-spacing:-0.478080px;}
.ls25{letter-spacing:-0.443520px;}
.ls1f{letter-spacing:-0.380160px;}
.ls55{letter-spacing:-0.298800px;}
.lsf{letter-spacing:-0.287280px;}
.ls16{letter-spacing:-0.253440px;}
.ls53{letter-spacing:-0.239040px;}
.ls6a{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.191520px;}
.lsa{letter-spacing:-0.179280px;}
.lsc{letter-spacing:-0.168480px;}
.ls18{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.119520px;}
.ls6b{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.063360px;}
.lsd{letter-spacing:-0.059760px;}
.ls12{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001140px;}
.ls48{letter-spacing:0.008580px;}
.ls3c{letter-spacing:0.054000px;}
.ls46{letter-spacing:0.064860px;}
.ls5b{letter-spacing:0.076080px;}
.ls61{letter-spacing:0.103380px;}
.ls62{letter-spacing:0.107930px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls68{letter-spacing:0.162000px;}
.lse{letter-spacing:0.191520px;}
.ls5f{letter-spacing:0.199140px;}
.ls4{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.237420px;}
.ls1{letter-spacing:0.239040px;}
.ls51{letter-spacing:0.293700px;}
.ls58{letter-spacing:0.294060px;}
.ls5a{letter-spacing:0.299280px;}
.ls4b{letter-spacing:0.299640px;}
.ls3f{letter-spacing:0.321780px;}
.ls49{letter-spacing:0.327420px;}
.ls4d{letter-spacing:0.358560px;}
.ls41{letter-spacing:0.362700px;}
.ls32{letter-spacing:0.380280px;}
.ls3e{letter-spacing:0.417420px;}
.ls43{letter-spacing:0.418920px;}
.ls5e{letter-spacing:0.423060px;}
.ls4e{letter-spacing:0.445560px;}
.ls50{letter-spacing:0.468060px;}
.ls44{letter-spacing:0.490560px;}
.ls66{letter-spacing:0.597600px;}
.ls40{letter-spacing:0.625741px;}
.ls47{letter-spacing:0.655501px;}
.ls54{letter-spacing:0.657361px;}
.ls4c{letter-spacing:0.682021px;}
.ls19{letter-spacing:0.696421px;}
.ls59{letter-spacing:0.698881px;}
.ls4f{letter-spacing:0.710101px;}
.ls60{letter-spacing:0.811141px;}
.ls42{letter-spacing:1.109281px;}
.ls45{letter-spacing:1.137421px;}
.ls5{letter-spacing:1.393921px;}
.ls3a{letter-spacing:1.403359px;}
.ls1c{letter-spacing:2.534702px;}
.ls6{letter-spacing:2.670782px;}
.ls57{letter-spacing:2.748962px;}
.ls5d{letter-spacing:2.961722px;}
.ls5c{letter-spacing:3.168063px;}
.ls63{letter-spacing:3.227043px;}
.ls1a{letter-spacing:4.133283px;}
.ls1b{letter-spacing:4.257063px;}
.ls2a{letter-spacing:5.448424px;}
.ls28{letter-spacing:6.145925px;}
.ls27{letter-spacing:6.843425px;}
.ls7{letter-spacing:7.857066px;}
.ls2f{letter-spacing:8.300167px;}
.ls2c{letter-spacing:9.824708px;}
.ls3d{letter-spacing:9.897788px;}
.ls1d{letter-spacing:11.911570px;}
.ls29{letter-spacing:12.609070px;}
.ls31{letter-spacing:13.368431px;}
.ls2b{letter-spacing:14.763432px;}
.ls8{letter-spacing:15.777073px;}
.ls30{letter-spacing:24.140299px;}
.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;}
}
.ws24{word-spacing:-47.520038px;}
.ws2{word-spacing:-44.820036px;}
.ws33{word-spacing:-41.938919px;}
.ws8{word-spacing:-40.716033px;}
.ws6{word-spacing:-40.500032px;}
.ws3{word-spacing:-26.429781px;}
.ws3e{word-spacing:-19.362255px;}
.ws21{word-spacing:-17.614094px;}
.ws2d{word-spacing:-17.233934px;}
.ws2c{word-spacing:-17.170574px;}
.ws20{word-spacing:-17.107214px;}
.ws2b{word-spacing:-16.980494px;}
.ws22{word-spacing:-16.917134px;}
.ws2e{word-spacing:-16.853773px;}
.ws23{word-spacing:-16.663693px;}
.ws0{word-spacing:-16.613293px;}
.ws2a{word-spacing:-16.600333px;}
.ws3b{word-spacing:-16.553533px;}
.ws1{word-spacing:-16.493773px;}
.ws4{word-spacing:-16.416013px;}
.ws3a{word-spacing:-16.374253px;}
.ws3c{word-spacing:-16.314493px;}
.ws5{word-spacing:-16.272013px;}
.ws2f{word-spacing:-16.156813px;}
.ws3d{word-spacing:-15.537612px;}
.ws7{word-spacing:-15.228012px;}
.ws45{word-spacing:-15.174012px;}
.ws44{word-spacing:-15.120012px;}
.ws38{word-spacing:-15.066012px;}
.ws39{word-spacing:-15.012012px;}
.ws47{word-spacing:-14.904012px;}
.ws43{word-spacing:-14.526012px;}
.wsa{word-spacing:-14.446092px;}
.ws46{word-spacing:-14.418012px;}
.wsb{word-spacing:-14.382732px;}
.wsc{word-spacing:-14.192651px;}
.wsd{word-spacing:-13.875851px;}
.wsf{word-spacing:-13.685771px;}
.wse{word-spacing:-13.622411px;}
.ws37{word-spacing:-13.493861px;}
.ws36{word-spacing:-13.008082px;}
.ws9{word-spacing:-12.312010px;}
.ws34{word-spacing:-12.306400px;}
.ws35{word-spacing:-12.252424px;}
.ws30{word-spacing:-12.198448px;}
.ws31{word-spacing:-12.090502px;}
.ws32{word-spacing:-11.226891px;}
.ws14{word-spacing:-0.810001px;}
.ws41{word-spacing:-0.358560px;}
.ws15{word-spacing:-0.239040px;}
.ws18{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.ws3f{word-spacing:0.059760px;}
.ws29{word-spacing:0.063360px;}
.ws48{word-spacing:0.119520px;}
.ws19{word-spacing:0.216000px;}
.ws16{word-spacing:0.288000px;}
.ws13{word-spacing:0.702001px;}
.ws1c{word-spacing:0.760321px;}
.ws1d{word-spacing:0.823681px;}
.ws42{word-spacing:0.836641px;}
.ws40{word-spacing:0.956161px;}
.ws1a{word-spacing:1.457281px;}
.ws26{word-spacing:2.154242px;}
.ws25{word-spacing:2.217602px;}
.ws28{word-spacing:2.914562px;}
.ws27{word-spacing:4.308483px;}
.ws1b{word-spacing:8.680327px;}
.ws1e{word-spacing:15.840013px;}
.ws1f{word-spacing:16.600333px;}
._d{margin-left:-17.378252px;}
._c{margin-left:-16.345285px;}
._b{margin-left:-9.521691px;}
._a{margin-left:-7.768635px;}
._23{margin-left:-4.095531px;}
._2{margin-left:-2.489925px;}
._1{margin-left:-1.325581px;}
._0{width:1.253521px;}
._3{width:2.280310px;}
._4{width:3.477820px;}
._7{width:5.357742px;}
._6{width:6.533521px;}
._5{width:8.126449px;}
._9{width:9.986579px;}
._12{width:11.455875px;}
._e{width:12.496148px;}
._10{width:14.134770px;}
._8{width:15.386761px;}
._f{width:16.850166px;}
._1f{width:17.979849px;}
._13{width:19.036809px;}
._14{width:20.702406px;}
._18{width:22.552187px;}
._19{width:23.886920px;}
._1a{width:24.942719px;}
._17{width:26.012876px;}
._16{width:27.067770px;}
._1c{width:29.026823px;}
._15{width:30.706747px;}
._1b{width:32.237976px;}
._1e{width:34.036378px;}
._22{width:35.099372px;}
._20{width:36.150868px;}
._24{width:37.631031px;}
._11{width:39.906680px;}
._1d{width:43.526302px;}
._21{width:59.294114px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(232,44,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000029px;}
.fs6{font-size:48.240039px;}
.fs7{font-size:53.975443px;}
.fs2{font-size:54.000043px;}
.fs0{font-size:59.760048px;}
.fs5{font-size:63.360051px;}
.fs1{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y24d{bottom:2.880230px;}
.y9e{bottom:4.320076px;}
.y3d{bottom:4.320077px;}
.y1cb{bottom:7.708525px;}
.y1cd{bottom:7.709875px;}
.y39{bottom:20.520086px;}
.y3f{bottom:23.580078px;}
.y1cc{bottom:23.618738px;}
.y1ca{bottom:23.620238px;}
.y5{bottom:29.700087px;}
.y3e{bottom:73.800000px;}
.y9f{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.y1c6{bottom:79.855733px;}
.ya0{bottom:81.720065px;}
.y40{bottom:81.900066px;}
.y38{bottom:86.400000px;}
.y1c3{bottom:87.811439px;}
.y3{bottom:89.100071px;}
.y3b{bottom:89.460072px;}
.y9d{bottom:90.360000px;}
.y3c{bottom:91.620000px;}
.y3a{bottom:91.620073px;}
.y6{bottom:92.880074px;}
.y1c5{bottom:95.767445px;}
.y1c2{bottom:103.720302px;}
.y1c9{bottom:104.796103px;}
.y2{bottom:110.160088px;}
.y1c4{bottom:111.676308px;}
.y1c8{bottom:133.484976px;}
.y1c7{bottom:149.393838px;}
.y178{bottom:156.057275px;}
.y142{bottom:156.149075px;}
.y1dc{bottom:159.837128px;}
.yd5{bottom:160.892529px;}
.y196{bottom:160.903929px;}
.y10b{bottom:161.591379px;}
.y9c{bottom:163.071835px;}
.y76{bottom:163.694336px;}
.y37{bottom:166.338763px;}
.y177{bottom:174.051739px;}
.y141{bottom:174.143539px;}
.y1db{bottom:177.831592px;}
.yd4{bottom:179.076743px;}
.y195{bottom:179.088143px;}
.y10a{bottom:179.411394px;}
.y1bd{bottom:180.417163px;}
.y9b{bottom:181.256050px;}
.y75{bottom:181.688800px;}
.y36{bottom:184.333227px;}
.y140{bottom:192.138004px;}
.y176{bottom:192.235954px;}
.y210{bottom:195.266106px;}
.y1da{bottom:196.015807px;}
.y1bc{bottom:196.328876px;}
.y109{bottom:197.057108px;}
.yd3{bottom:197.071208px;}
.y194{bottom:197.082608px;}
.y1c1{bottom:197.907027px;}
.y9a{bottom:199.250514px;}
.y74{bottom:199.873015px;}
.y35{bottom:202.327692px;}
.y13f{bottom:209.958018px;}
.y175{bottom:210.431418px;}
.y20f{bottom:212.551820px;}
.y1c0{bottom:213.815890px;}
.y1d9{bottom:214.200021px;}
.y108{bottom:214.877122px;}
.yd2{bottom:215.255422px;}
.y193{bottom:215.266822px;}
.y99{bottom:217.434729px;}
.y73{bottom:217.867479px;}
.y235{bottom:218.520402px;}
.y34{bottom:220.511906px;}
.y1bf{bottom:227.757201px;}
.y13e{bottom:227.952482px;}
.y174{bottom:228.615633px;}
.y20e{bottom:229.657534px;}
.y1d8{bottom:232.194486px;}
.y107{bottom:232.697136px;}
.yd1{bottom:233.249887px;}
.y192{bottom:233.261287px;}
.y98{bottom:235.429193px;}
.y72{bottom:236.051694px;}
.y33{bottom:238.506371px;}
.y1be{bottom:243.666064px;}
.y13d{bottom:245.946947px;}
.y173{bottom:246.799847px;}
.y20d{bottom:247.123248px;}
.y106{bottom:250.342850px;}
.y1d7{bottom:250.378700px;}
.yd0{bottom:251.434101px;}
.y191{bottom:251.445501px;}
.y97{bottom:253.613408px;}
.y71{bottom:254.235908px;}
.y32{bottom:256.690585px;}
.y13c{bottom:263.941411px;}
.y20c{bottom:264.408962px;}
.y172{bottom:264.794312px;}
.y1b7{bottom:265.452381px;}
.y105{bottom:268.162865px;}
.y1d6{bottom:268.373165px;}
.ycf{bottom:269.618316px;}
.y190{bottom:269.629716px;}
.y24e{bottom:270.000216px;}
.y96{bottom:271.797622px;}
.y70{bottom:272.230373px;}
.y1b9{bottom:273.406587px;}
.y31{bottom:274.685050px;}
.y20b{bottom:281.336025px;}
.y1b6{bottom:281.364094px;}
.y13b{bottom:281.935876px;}
.y171{bottom:282.978526px;}
.y234{bottom:284.040000px;}
.y104{bottom:285.808579px;}
.y1d5{bottom:286.557379px;}
.yce{bottom:287.612780px;}
.y18f{bottom:287.624180px;}
.y1b8{bottom:289.316950px;}
.y95{bottom:289.792087px;}
.y6f{bottom:290.224837px;}
.y30{bottom:292.679514px;}
.y1b5{bottom:297.272957px;}
.y20a{bottom:298.800239px;}
.y13a{bottom:299.755890px;}
.y170{bottom:301.162741px;}
.y24c{bottom:302.580242px;}
.y103{bottom:303.628593px;}
.y1d4{bottom:304.741594px;}
.ycd{bottom:305.796995px;}
.y18e{bottom:305.808395px;}
.y94{bottom:307.976301px;}
.y6e{bottom:308.219302px;}
.y2f{bottom:309.959528px;}
.y23f{bottom:311.040249px;}
.y139{bottom:317.750354px;}
.y24b{bottom:317.880254px;}
.y16f{bottom:319.157205px;}
.y1bb{bottom:321.265476px;}
.y102{bottom:321.275657px;}
.y1d3{bottom:322.736058px;}
.ycc{bottom:323.981209px;}
.y18d{bottom:323.992609px;}
.y2e{bottom:324.576110px;}
.y209{bottom:324.854810px;}
.y93{bottom:325.970766px;}
.y6d{bottom:326.213766px;}
.y23e{bottom:326.520261px;}
.y24a{bottom:333.540267px;}
.y138{bottom:335.744819px;}
.y1ba{bottom:337.172988px;}
.y16e{bottom:337.341420px;}
.y101{bottom:339.095671px;}
.y1d2{bottom:340.920273px;}
.ycb{bottom:341.975674px;}
.y18c{bottom:341.987074px;}
.y208{bottom:342.319024px;}
.y23d{bottom:342.360274px;}
.y2d{bottom:342.569074px;}
.y6c{bottom:344.033780px;}
.y92{bottom:344.154980px;}
.y249{bottom:349.020279px;}
.y137{bottom:353.739283px;}
.y16d{bottom:355.335884px;}
.y100{bottom:356.741385px;}
.y1d1{bottom:358.380287px;}
.y207{bottom:359.426088px;}
.y1b1{bottom:359.501106px;}
.yca{bottom:360.159888px;}
.y18b{bottom:360.171288px;}
.y2c{bottom:360.754789px;}
.y6b{bottom:362.028245px;}
.y91{bottom:362.339195px;}
.y248{bottom:364.500292px;}
.y1ac{bottom:367.455463px;}
.y23c{bottom:370.980297px;}
.y136{bottom:371.559297px;}
.y1d0{bottom:372.420298px;}
.y16c{bottom:373.520099px;}
.yff{bottom:374.561400px;}
.y1b0{bottom:375.412819px;}
.y206{bottom:376.711801px;}
.yc9{bottom:378.154353px;}
.y18a{bottom:378.165753px;}
.y2b{bottom:378.939003px;}
.y6a{bottom:380.022709px;}
.y247{bottom:380.331904px;}
.y90{bottom:380.333659px;}
.y1ab{bottom:383.367175px;}
.y23b{bottom:386.460309px;}
.y1cf{bottom:387.540310px;}
.y135{bottom:389.552262px;}
.y1af{bottom:391.321682px;}
.y16b{bottom:391.704313px;}
.yfe{bottom:392.207114px;}
.y205{bottom:393.997515px;}
.y246{bottom:395.816117px;}
.yc8{bottom:396.338567px;}
.y189{bottom:396.349967px;}
.y2a{bottom:396.933468px;}
.y69{bottom:398.017173px;}
.y19d{bottom:398.415600px;}
.y8f{bottom:398.517874px;}
.y1ce{bottom:398.520319px;}
.y1aa{bottom:399.274688px;}
.y23a{bottom:406.620325px;}
.y1ae{bottom:407.230545px;}
.y134{bottom:407.546726px;}
.y16a{bottom:409.698778px;}
.yfd{bottom:410.027128px;}
.y204{bottom:411.283229px;}
.y245{bottom:411.476129px;}
.yc7{bottom:414.522782px;}
.y188{bottom:414.534182px;}
.y29{bottom:415.117682px;}
.y1a9{bottom:415.183551px;}
.y68{bottom:415.837188px;}
.y8e{bottom:416.928589px;}
.y239{bottom:422.100338px;}
.y1ad{bottom:423.138057px;}
.y133{bottom:425.541190px;}
.yfc{bottom:427.672842px;}
.y169{bottom:427.882992px;}
.y203{bottom:428.388943px;}
.y244{bottom:431.456145px;}
.yc6{bottom:432.517246px;}
.y187{bottom:432.528646px;}
.y28{bottom:433.110646px;}
.y67{bottom:433.830152px;}
.y8d{bottom:435.112803px;}
.y238{bottom:442.076154px;}
.y132{bottom:443.535655px;}
.yfb{bottom:445.492856px;}
.y202{bottom:445.674657px;}
.y168{bottom:445.877457px;}
.y1b3{bottom:446.827726px;}
.yc5{bottom:450.701461px;}
.y186{bottom:450.712861px;}
.y27{bottom:451.105111px;}
.y243{bottom:451.436161px;}
.y66{bottom:451.824616px;}
.y8c{bottom:453.471468px;}
.y1b4{bottom:459.553586px;}
.y131{bottom:461.355669px;}
.y237{bottom:462.420370px;}
.y1b2{bottom:462.736589px;}
.y201{bottom:462.960370px;}
.yfa{bottom:463.138571px;}
.y167{bottom:464.061671px;}
.y242{bottom:466.920374px;}
.yc4{bottom:468.695925px;}
.y185{bottom:468.707325px;}
.y26{bottom:469.289325px;}
.y65{bottom:469.819081px;}
.y8b{bottom:471.655682px;}
.y130{bottom:479.350133px;}
.y200{bottom:480.048984px;}
.yf9{bottom:480.958585px;}
.y166{bottom:482.245886px;}
.y241{bottom:482.580386px;}
.y1a8{bottom:486.426708px;}
.y236{bottom:486.720389px;}
.yc3{bottom:486.880140px;}
.y184{bottom:486.891540px;}
.y25{bottom:487.283790px;}
.y64{bottom:487.813545px;}
.y8a{bottom:490.014347px;}
.y1a3{bottom:494.381064px;}
.y12f{bottom:497.344598px;}
.y1ff{bottom:497.514698px;}
.y240{bottom:498.060398px;}
.yf8{bottom:498.536799px;}
.y165{bottom:500.240350px;}
.y1a7{bottom:502.338421px;}
.yc2{bottom:505.064354px;}
.y183{bottom:505.075754px;}
.y24{bottom:505.468004px;}
.y63{bottom:505.633560px;}
.y89{bottom:508.198562px;}
.y1a2{bottom:510.292777px;}
.y1fe{bottom:514.620412px;}
.y12e{bottom:515.339062px;}
.yf7{bottom:516.356813px;}
.y1a6{bottom:518.245933px;}
.y164{bottom:518.424565px;}
.yc1{bottom:523.058818px;}
.y182{bottom:523.070218px;}
.y23{bottom:523.462469px;}
.y62{bottom:523.628024px;}
.y1a1{bottom:526.201640px;}
.y233{bottom:526.500421px;}
.y88{bottom:526.557226px;}
.y1fd{bottom:531.888426px;}
.y12d{bottom:533.159077px;}
.yf6{bottom:534.002527px;}
.y1a5{bottom:534.154796px;}
.y163{bottom:536.608779px;}
.y232{bottom:540.540432px;}
.yc0{bottom:541.243033px;}
.y181{bottom:541.254433px;}
.y22{bottom:541.456933px;}
.y61{bottom:541.622488px;}
.y1a0{bottom:542.109152px;}
.y87{bottom:544.741441px;}
.y1fc{bottom:549.354739px;}
.y1a4{bottom:550.063659px;}
.y12c{bottom:551.153541px;}
.yf5{bottom:551.822541px;}
.y231{bottom:551.992942px;}
.y162{bottom:554.603244px;}
.ybf{bottom:559.427248px;}
.y180{bottom:559.438648px;}
.y21{bottom:559.641148px;}
.y60{bottom:559.806703px;}
.y86{bottom:563.100105px;}
.y1fb{bottom:566.460453px;}
.y12b{bottom:569.148005px;}
.y230{bottom:569.456556px;}
.yf4{bottom:569.468256px;}
.y161{bottom:572.787458px;}
.ybe{bottom:577.421712px;}
.y17f{bottom:577.433112px;}
.y20{bottom:577.635612px;}
.y5f{bottom:577.801167px;}
.y85{bottom:581.284320px;}
.y19f{bottom:583.051835px;}
.y1fa{bottom:583.734767px;}
.y22f{bottom:586.742269px;}
.y12a{bottom:587.142470px;}
.yf3{bottom:587.288270px;}
.y160{bottom:590.781923px;}
.ybd{bottom:595.605926px;}
.y17e{bottom:595.617326px;}
.y1f{bottom:595.819827px;}
.y5e{bottom:595.985382px;}
.y19e{bottom:598.962198px;}
.y84{bottom:599.642985px;}
.y1f9{bottom:600.840481px;}
.y22e{bottom:603.849333px;}
.yf2{bottom:604.935334px;}
.y129{bottom:605.135434px;}
.y15f{bottom:613.464791px;}
.ybc{bottom:613.600391px;}
.y17d{bottom:613.611791px;}
.y1e{bottom:613.814291px;}
.y5d{bottom:613.979846px;}
.y83{bottom:617.827199px;}
.y1f8{bottom:618.114494px;}
.y22d{bottom:620.955047px;}
.y128{bottom:622.955448px;}
.yf1{bottom:627.254002px;}
.y15e{bottom:631.649005px;}
.ybb{bottom:631.784605px;}
.y17c{bottom:631.796005px;}
.y1d{bottom:631.808755px;}
.y5c{bottom:632.164061px;}
.y1f7{bottom:635.400508px;}
.y82{bottom:636.011414px;}
.y22c{bottom:638.420761px;}
.y127{bottom:640.949913px;}
.yf0{bottom:645.438216px;}
.yba{bottom:649.968820px;}
.y17b{bottom:649.980220px;}
.y1c{bottom:649.992970px;}
.y5b{bottom:650.348275px;}
.y1f6{bottom:652.670022px;}
.y15d{bottom:654.141973px;}
.y81{bottom:654.370078px;}
.y22b{bottom:655.526474px;}
.y126{bottom:658.944377px;}
.yef{bottom:667.931184px;}
.yb9{bottom:667.963284px;}
.y17a{bottom:667.974684px;}
.y1b{bottom:667.987434px;}
.y5a{bottom:668.342740px;}
.y1f5{bottom:670.133486px;}
.y15c{bottom:672.136438px;}
.y80{bottom:672.554293px;}
.y22a{bottom:672.992188px;}
.y125{bottom:676.938842px;}
.yee{bottom:686.115399px;}
.yb8{bottom:686.147499px;}
.y179{bottom:686.158899px;}
.y1a{bottom:686.171649px;}
.y59{bottom:686.526954px;}
.y1f4{bottom:687.060550px;}
.y15b{bottom:690.130902px;}
.y229{bottom:690.277902px;}
.y7f{bottom:690.912958px;}
.y124{bottom:694.758856px;}
.yed{bottom:704.108363px;}
.yb7{bottom:704.141963px;}
.y19{bottom:704.166113px;}
.y1f3{bottom:704.317913px;}
.y58{bottom:704.521419px;}
.y228{bottom:707.383616px;}
.y15a{bottom:708.125366px;}
.y7e{bottom:709.097172px;}
.y123{bottom:712.753320px;}
.y1f2{bottom:721.782127px;}
.y18{bottom:722.160578px;}
.yec{bottom:722.294078px;}
.yb6{bottom:722.326178px;}
.y57{bottom:722.705633px;}
.y227{bottom:724.490680px;}
.y159{bottom:725.945381px;}
.y7d{bottom:727.455837px;}
.y122{bottom:730.747785px;}
.y1f1{bottom:739.067841px;}
.yeb{bottom:740.478292px;}
.yb5{bottom:740.510392px;}
.y56{bottom:740.889848px;}
.y226{bottom:741.954894px;}
.y158{bottom:743.939845px;}
.y7c{bottom:745.450301px;}
.y17{bottom:748.260599px;}
.y121{bottom:748.742249px;}
.y1f0{bottom:756.353555px;}
.yea{bottom:758.472757px;}
.yb4{bottom:758.504857px;}
.y55{bottom:758.884312px;}
.y225{bottom:759.240607px;}
.y157{bottom:761.934310px;}
.y7b{bottom:763.444766px;}
.y120{bottom:766.387963px;}
.y1ef{bottom:773.280619px;}
.y224{bottom:776.329221px;}
.y16{bottom:776.340621px;}
.ye9{bottom:776.656971px;}
.yb3{bottom:776.689071px;}
.y54{bottom:777.068527px;}
.y156{bottom:779.928774px;}
.y7a{bottom:781.628980px;}
.y11f{bottom:784.207977px;}
.y1ee{bottom:790.560632px;}
.y223{bottom:793.794935px;}
.ye8{bottom:794.841186px;}
.yb2{bottom:794.873286px;}
.y53{bottom:795.252741px;}
.y15{bottom:797.040638px;}
.y155{bottom:797.748788px;}
.y79{bottom:799.813195px;}
.y11e{bottom:801.853691px;}
.y1ed{bottom:807.997246px;}
.y222{bottom:810.900649px;}
.ye7{bottom:812.835650px;}
.yb1{bottom:812.867750px;}
.y52{bottom:813.247206px;}
.y154{bottom:815.743253px;}
.y14{bottom:817.740654px;}
.y78{bottom:817.807659px;}
.y11d{bottom:819.673706px;}
.y1ec{bottom:825.282960px;}
.y221{bottom:828.169263px;}
.ye6{bottom:831.019865px;}
.yb0{bottom:831.051965px;}
.y153{bottom:833.737717px;}
.y51{bottom:835.740174px;}
.y77{bottom:835.991874px;}
.y11c{bottom:837.319420px;}
.y1eb{bottom:842.568674px;}
.y220{bottom:845.274976px;}
.ye5{bottom:849.014329px;}
.yaf{bottom:849.046429px;}
.y13{bottom:849.776480px;}
.y152{bottom:851.730681px;}
.y50{bottom:853.200188px;}
.y11b{bottom:855.139434px;}
.y1ea{bottom:859.674388px;}
.y21f{bottom:862.560690px;}
.y12{bottom:864.896492px;}
.ye4{bottom:867.198544px;}
.yae{bottom:867.230644px;}
.y4f{bottom:867.799894px;}
.y151{bottom:869.725146px;}
.y11a{bottom:872.785148px;}
.y1e9{bottom:876.960102px;}
.y21e{bottom:880.009304px;}
.y11{bottom:880.380704px;}
.ye3{bottom:885.382758px;}
.yad{bottom:885.414858px;}
.y4e{bottom:885.794359px;}
.y150{bottom:887.545160px;}
.y119{bottom:890.605162px;}
.y21d{bottom:897.115018px;}
.y10{bottom:897.120718px;}
.ye2{bottom:903.377223px;}
.yac{bottom:903.409323px;}
.y4d{bottom:903.978573px;}
.y14f{bottom:905.539624px;}
.y118{bottom:908.250877px;}
.y21c{bottom:914.400732px;}
.ye1{bottom:921.561437px;}
.y1e8{bottom:921.577637px;}
.yab{bottom:921.593537px;}
.y4c{bottom:922.162788px;}
.y14e{bottom:923.534089px;}
.y117{bottom:926.070891px;}
.yf{bottom:931.159045px;}
.y21b{bottom:931.494745px;}
.ye0{bottom:939.555902px;}
.y1e7{bottom:939.572102px;}
.yaa{bottom:939.588002px;}
.y4b{bottom:940.157252px;}
.y14d{bottom:941.528553px;}
.y116{bottom:943.890905px;}
.y21a{bottom:948.780759px;}
.ydf{bottom:957.740116px;}
.y1e6{bottom:957.756316px;}
.ya9{bottom:957.772216px;}
.y4a{bottom:958.341467px;}
.ye{bottom:958.689167px;}
.y14c{bottom:959.348567px;}
.y115{bottom:961.537969px;}
.y219{bottom:966.050273px;}
.yde{bottom:975.924331px;}
.y1e5{bottom:975.940531px;}
.ya8{bottom:975.956431px;}
.y49{bottom:976.335931px;}
.y14b{bottom:977.343032px;}
.y114{bottom:979.357983px;}
.y218{bottom:983.515087px;}
.yd{bottom:986.220789px;}
.ydd{bottom:993.918795px;}
.y1e4{bottom:993.934995px;}
.ya7{bottom:993.950895px;}
.y48{bottom:994.330395px;}
.y14a{bottom:995.337496px;}
.y113{bottom:997.003698px;}
.y217{bottom:1000.620800px;}
.ydc{bottom:1012.103010px;}
.y1e3{bottom:1012.119210px;}
.ya6{bottom:1012.135110px;}
.y47{bottom:1012.514610px;}
.y149{bottom:1013.331961px;}
.y112{bottom:1014.823712px;}
.y19c{bottom:1015.560662px;}
.y216{bottom:1017.720814px;}
.yc{bottom:1023.829419px;}
.ydb{bottom:1030.287224px;}
.y1e2{bottom:1030.303424px;}
.ya5{bottom:1030.319324px;}
.y46{bottom:1030.509074px;}
.y148{bottom:1031.326425px;}
.y111{bottom:1032.469426px;}
.y215{bottom:1035.151128px;}
.yb{bottom:1040.935133px;}
.yda{bottom:1048.281689px;}
.y1e1{bottom:1048.297889px;}
.y19b{bottom:1048.313639px;}
.ya4{bottom:1048.313789px;}
.y45{bottom:1048.693289px;}
.y147{bottom:1049.146439px;}
.y110{bottom:1050.289440px;}
.y214{bottom:1052.436842px;}
.ya{bottom:1058.220847px;}
.yd9{bottom:1066.465903px;}
.y1e0{bottom:1066.482103px;}
.y19a{bottom:1066.497853px;}
.ya3{bottom:1066.498003px;}
.y44{bottom:1066.687753px;}
.y146{bottom:1067.140904px;}
.y10f{bottom:1067.935154px;}
.y213{bottom:1069.543906px;}
.y9{bottom:1076.940862px;}
.yd8{bottom:1084.458868px;}
.y1df{bottom:1084.476568px;}
.y199{bottom:1084.492318px;}
.ya2{bottom:1084.492468px;}
.y43{bottom:1084.682218px;}
.y145{bottom:1085.133868px;}
.y10e{bottom:1085.755169px;}
.y212{bottom:1087.008120px;}
.yd7{bottom:1102.644582px;}
.y1de{bottom:1102.660782px;}
.y198{bottom:1102.676532px;}
.ya1{bottom:1102.676682px;}
.y42{bottom:1102.866432px;}
.y144{bottom:1103.128333px;}
.y10d{bottom:1103.400883px;}
.y211{bottom:1104.115183px;}
.y8{bottom:1104.295183px;}
.yd6{bottom:1120.828797px;}
.y1dd{bottom:1120.844997px;}
.y197{bottom:1120.860747px;}
.y41{bottom:1120.860897px;}
.y143{bottom:1120.948347px;}
.y10c{bottom:1121.220897px;}
.y7{bottom:1121.400897px;}
.y1{bottom:1206.360965px;}
.h2d{height:24.380879px;}
.h13{height:29.700000px;}
.h12{height:33.120000px;}
.h11{height:33.494792px;}
.h14{height:35.998596px;}
.h18{height:36.000000px;}
.h1b{height:37.477090px;}
.h7{height:39.313508px;}
.h2f{height:39.366242px;}
.h19{height:41.479838px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.h15{height:46.127849px;}
.hf{height:46.406287px;}
.hd{height:46.432654px;}
.he{height:47.566444px;}
.h1d{height:48.278359px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h9{height:51.385471px;}
.h23{height:51.406771px;}
.h22{height:51.407971px;}
.h29{height:51.409471px;}
.h21{height:51.427471px;}
.h25{height:51.428071px;}
.h2a{height:51.431071px;}
.h24{height:51.433471px;}
.h2b{height:51.434071px;}
.h20{height:51.476071px;}
.h1f{height:51.479071px;}
.h28{height:51.504271px;}
.h27{height:51.524671px;}
.h26{height:51.567271px;}
.h2c{height:51.655471px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h1e{height:53.428051px;}
.h17{height:54.480981px;}
.h10{height:55.811295px;}
.h16{height:56.646608px;}
.h1c{height:58.490906px;}
.ha{height:61.658135px;}
.hb{height:85.613623px;}
.h2e{height:230.760000px;}
.h1a{height:613.616400px;}
.h0{height:1262.879850px;}
.h1{height:1263.000000px;}
.w6{width:27.000000px;}
.w4{width:27.180000px;}
.w3{width:246.598560px;}
.w2{width:247.140000px;}
.w9{width:252.538560px;}
.w7{width:259.020000px;}
.w5{width:264.060000px;}
.wa{width:478.440000px;}
.w8{width:521.816400px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:8.100270px;}
.xd{left:10.800074px;}
.x5{left:15.480469px;}
.x1d{left:16.646862px;}
.x11{left:22.320471px;}
.x2b{left:23.970130px;}
.x35{left:27.484371px;}
.x18{left:28.980473px;}
.x1f{left:32.881922px;}
.x31{left:41.601913px;}
.x2a{left:48.485338px;}
.x1e{left:56.772746px;}
.x40{left:77.040000px;}
.xc{left:81.360000px;}
.x7{left:84.959453px;}
.x42{left:87.123970px;}
.x2e{left:88.504048px;}
.xe{left:92.160074px;}
.x36{left:95.182761px;}
.x1c{left:104.433195px;}
.x9{left:106.201345px;}
.x41{left:108.360087px;}
.x3e{left:116.810688px;}
.x32{left:124.396355px;}
.x33{left:128.509634px;}
.x13{left:138.058445px;}
.xa{left:169.911616px;}
.x1a{left:185.824800px;}
.x22{left:190.795030px;}
.x1b{left:194.728504px;}
.x20{left:206.380514px;}
.x3a{left:227.608054px;}
.x23{left:234.370476px;}
.x21{left:237.897412px;}
.x28{left:265.281061px;}
.x34{left:274.089068px;}
.x29{left:286.228548px;}
.x2d{left:297.713075px;}
.x38{left:309.917406px;}
.x3b{left:311.017597px;}
.x3c{left:320.855845px;}
.x30{left:322.840346px;}
.x44{left:329.580000px;}
.x2c{left:331.290114px;}
.x2f{left:332.407067px;}
.x43{left:337.680270px;}
.x37{left:348.336127px;}
.x39{left:369.407472px;}
.x24{left:371.572646px;}
.x26{left:385.252736px;}
.x27{left:390.066333px;}
.x25{left:422.741927px;}
.x2{left:432.900781px;}
.x16{left:439.560000px;}
.xf{left:446.400792px;}
.x14{left:457.183611px;}
.xb{left:463.863116px;}
.x15{left:478.425128px;}
.x8{left:500.401045px;}
.x17{left:562.860000px;}
.x10{left:567.000000px;}
.x4{left:570.780000px;}
.x3f{left:572.940458px;}
.x19{left:630.720505px;}
.x6{left:632.880506px;}
.x12{left:637.380510px;}
.x1{left:705.780565px;}
.x3d{left:707.580566px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-2.140162pt;}
.ls39{letter-spacing:-2.015084pt;}
.ls3b{letter-spacing:-1.728001pt;}
.ls33{letter-spacing:-1.576961pt;}
.ls24{letter-spacing:-1.295361pt;}
.ls34{letter-spacing:-1.247430pt;}
.ls20{letter-spacing:-1.239041pt;}
.ls36{letter-spacing:-1.151478pt;}
.ls35{letter-spacing:-1.103500pt;}
.ls38{letter-spacing:-1.055521pt;}
.ls26{letter-spacing:-1.013761pt;}
.ls56{letter-spacing:-0.956161pt;}
.ls65{letter-spacing:-0.903041pt;}
.ls23{letter-spacing:-0.901121pt;}
.ls22{letter-spacing:-0.844801pt;}
.ls64{letter-spacing:-0.743681pt;}
.ls15{letter-spacing:-0.732161pt;}
.ls13{letter-spacing:-0.675841pt;}
.ls6c{letter-spacing:-0.624000pt;}
.ls1e{letter-spacing:-0.619520pt;}
.ls2e{letter-spacing:-0.563200pt;}
.ls69{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.506880pt;}
.ls21{letter-spacing:-0.450560pt;}
.ls67{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.431804pt;}
.ls52{letter-spacing:-0.424960pt;}
.ls25{letter-spacing:-0.394240pt;}
.ls1f{letter-spacing:-0.337920pt;}
.ls55{letter-spacing:-0.265600pt;}
.lsf{letter-spacing:-0.255360pt;}
.ls16{letter-spacing:-0.225280pt;}
.ls53{letter-spacing:-0.212480pt;}
.ls6a{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.170240pt;}
.lsa{letter-spacing:-0.159360pt;}
.lsc{letter-spacing:-0.149760pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.106240pt;}
.ls6b{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.056320pt;}
.lsd{letter-spacing:-0.053120pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001013pt;}
.ls48{letter-spacing:0.007627pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls46{letter-spacing:0.057653pt;}
.ls5b{letter-spacing:0.067627pt;}
.ls61{letter-spacing:0.091893pt;}
.ls62{letter-spacing:0.095938pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls68{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.170240pt;}
.ls5f{letter-spacing:0.177013pt;}
.ls4{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.211040pt;}
.ls1{letter-spacing:0.212480pt;}
.ls51{letter-spacing:0.261067pt;}
.ls58{letter-spacing:0.261387pt;}
.ls5a{letter-spacing:0.266027pt;}
.ls4b{letter-spacing:0.266347pt;}
.ls3f{letter-spacing:0.286027pt;}
.ls49{letter-spacing:0.291040pt;}
.ls4d{letter-spacing:0.318720pt;}
.ls41{letter-spacing:0.322400pt;}
.ls32{letter-spacing:0.338027pt;}
.ls3e{letter-spacing:0.371040pt;}
.ls43{letter-spacing:0.372374pt;}
.ls5e{letter-spacing:0.376054pt;}
.ls4e{letter-spacing:0.396054pt;}
.ls50{letter-spacing:0.416054pt;}
.ls44{letter-spacing:0.436054pt;}
.ls66{letter-spacing:0.531200pt;}
.ls40{letter-spacing:0.556214pt;}
.ls47{letter-spacing:0.582667pt;}
.ls54{letter-spacing:0.584320pt;}
.ls4c{letter-spacing:0.606240pt;}
.ls19{letter-spacing:0.619040pt;}
.ls59{letter-spacing:0.621227pt;}
.ls4f{letter-spacing:0.631201pt;}
.ls60{letter-spacing:0.721014pt;}
.ls42{letter-spacing:0.986027pt;}
.ls45{letter-spacing:1.011041pt;}
.ls5{letter-spacing:1.239041pt;}
.ls3a{letter-spacing:1.247430pt;}
.ls1c{letter-spacing:2.253068pt;}
.ls6{letter-spacing:2.374029pt;}
.ls57{letter-spacing:2.443522pt;}
.ls5d{letter-spacing:2.632642pt;}
.ls5c{letter-spacing:2.816056pt;}
.ls63{letter-spacing:2.868482pt;}
.ls1a{letter-spacing:3.674030pt;}
.ls1b{letter-spacing:3.784056pt;}
.ls2a{letter-spacing:4.843044pt;}
.ls28{letter-spacing:5.463044pt;}
.ls27{letter-spacing:6.083045pt;}
.ls7{letter-spacing:6.984059pt;}
.ls2f{letter-spacing:7.377926pt;}
.ls2c{letter-spacing:8.733074pt;}
.ls3d{letter-spacing:8.798034pt;}
.ls1d{letter-spacing:10.588062pt;}
.ls29{letter-spacing:11.208062pt;}
.ls31{letter-spacing:11.883050pt;}
.ls2b{letter-spacing:13.123050pt;}
.ls8{letter-spacing:14.024065pt;}
.ls30{letter-spacing:21.458044pt;}
.ws24{word-spacing:-42.240034pt;}
.ws2{word-spacing:-39.840032pt;}
.ws33{word-spacing:-37.279039pt;}
.ws8{word-spacing:-36.192029pt;}
.ws6{word-spacing:-36.000029pt;}
.ws3{word-spacing:-23.493139pt;}
.ws3e{word-spacing:-17.210894pt;}
.ws21{word-spacing:-15.656973pt;}
.ws2d{word-spacing:-15.319052pt;}
.ws2c{word-spacing:-15.262732pt;}
.ws20{word-spacing:-15.206412pt;}
.ws2b{word-spacing:-15.093772pt;}
.ws22{word-spacing:-15.037452pt;}
.ws2e{word-spacing:-14.981132pt;}
.ws23{word-spacing:-14.812172pt;}
.ws0{word-spacing:-14.767372pt;}
.ws2a{word-spacing:-14.755852pt;}
.ws3b{word-spacing:-14.714252pt;}
.ws1{word-spacing:-14.661132pt;}
.ws4{word-spacing:-14.592012pt;}
.ws3a{word-spacing:-14.554892pt;}
.ws3c{word-spacing:-14.501772pt;}
.ws5{word-spacing:-14.464012pt;}
.ws2f{word-spacing:-14.361611pt;}
.ws3d{word-spacing:-13.811211pt;}
.ws7{word-spacing:-13.536011pt;}
.ws45{word-spacing:-13.488011pt;}
.ws44{word-spacing:-13.440011pt;}
.ws38{word-spacing:-13.392011pt;}
.ws39{word-spacing:-13.344011pt;}
.ws47{word-spacing:-13.248011pt;}
.ws43{word-spacing:-12.912010pt;}
.wsa{word-spacing:-12.840970pt;}
.ws46{word-spacing:-12.816010pt;}
.wsb{word-spacing:-12.784650pt;}
.wsc{word-spacing:-12.615690pt;}
.wsd{word-spacing:-12.334090pt;}
.wsf{word-spacing:-12.165130pt;}
.wse{word-spacing:-12.108810pt;}
.ws37{word-spacing:-11.994543pt;}
.ws36{word-spacing:-11.562739pt;}
.ws9{word-spacing:-10.944009pt;}
.ws34{word-spacing:-10.939022pt;}
.ws35{word-spacing:-10.891043pt;}
.ws30{word-spacing:-10.843065pt;}
.ws31{word-spacing:-10.747113pt;}
.ws32{word-spacing:-9.979459pt;}
.ws14{word-spacing:-0.720001pt;}
.ws41{word-spacing:-0.318720pt;}
.ws15{word-spacing:-0.212480pt;}
.ws18{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.053120pt;}
.ws29{word-spacing:0.056320pt;}
.ws48{word-spacing:0.106240pt;}
.ws19{word-spacing:0.192000pt;}
.ws16{word-spacing:0.256000pt;}
.ws13{word-spacing:0.624000pt;}
.ws1c{word-spacing:0.675841pt;}
.ws1d{word-spacing:0.732161pt;}
.ws42{word-spacing:0.743681pt;}
.ws40{word-spacing:0.849921pt;}
.ws1a{word-spacing:1.295361pt;}
.ws26{word-spacing:1.914882pt;}
.ws25{word-spacing:1.971202pt;}
.ws28{word-spacing:2.590722pt;}
.ws27{word-spacing:3.829763pt;}
.ws1b{word-spacing:7.715846pt;}
.ws1e{word-spacing:14.080011pt;}
.ws1f{word-spacing:14.755852pt;}
._d{margin-left:-15.447335pt;}
._c{margin-left:-14.529142pt;}
._b{margin-left:-8.463725pt;}
._a{margin-left:-6.905453pt;}
._23{margin-left:-3.640472pt;}
._2{margin-left:-2.213267pt;}
._1{margin-left:-1.178294pt;}
._0{width:1.114241pt;}
._3{width:2.026942pt;}
._4{width:3.091395pt;}
._7{width:4.762438pt;}
._6{width:5.807574pt;}
._5{width:7.223510pt;}
._9{width:8.876959pt;}
._12{width:10.183000pt;}
._e{width:11.107687pt;}
._10{width:12.564240pt;}
._8{width:13.677121pt;}
._f{width:14.977925pt;}
._1f{width:15.982088pt;}
._13{width:16.921608pt;}
._14{width:18.402139pt;}
._18{width:20.046388pt;}
._19{width:21.232818pt;}
._1a{width:22.171306pt;}
._17{width:23.122557pt;}
._16{width:24.060240pt;}
._1c{width:25.801621pt;}
._15{width:27.294886pt;}
._1b{width:28.655979pt;}
._1e{width:30.254558pt;}
._22{width:31.199442pt;}
._20{width:32.134105pt;}
._24{width:33.449806pt;}
._11{width:35.472605pt;}
._1d{width:38.690046pt;}
._21{width:52.705879pt;}
.fs8{font-size:32.000026pt;}
.fs6{font-size:42.880034pt;}
.fs7{font-size:47.978172pt;}
.fs2{font-size:48.000038pt;}
.fs0{font-size:53.120042pt;}
.fs5{font-size:56.320045pt;}
.fs1{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y24d{bottom:2.560204pt;}
.y9e{bottom:3.840067pt;}
.y3d{bottom:3.840068pt;}
.y1cb{bottom:6.852022pt;}
.y1cd{bottom:6.853222pt;}
.y39{bottom:18.240076pt;}
.y3f{bottom:20.960069pt;}
.y1cc{bottom:20.994433pt;}
.y1ca{bottom:20.995767pt;}
.y5{bottom:26.400077pt;}
.y3e{bottom:65.600000pt;}
.y9f{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.y1c6{bottom:70.982873pt;}
.ya0{bottom:72.640058pt;}
.y40{bottom:72.800058pt;}
.y38{bottom:76.800000pt;}
.y1c3{bottom:78.054612pt;}
.y3{bottom:79.200063pt;}
.y3b{bottom:79.520064pt;}
.y9d{bottom:80.320000pt;}
.y3c{bottom:81.440000pt;}
.y3a{bottom:81.440065pt;}
.y6{bottom:82.560066pt;}
.y1c5{bottom:85.126618pt;}
.y1c2{bottom:92.195824pt;}
.y1c9{bottom:93.152091pt;}
.y2{bottom:97.920078pt;}
.y1c4{bottom:99.267829pt;}
.y1c8{bottom:118.653312pt;}
.y1c7{bottom:132.794523pt;}
.y178{bottom:138.717578pt;}
.y142{bottom:138.799178pt;}
.y1dc{bottom:142.077447pt;}
.yd5{bottom:143.015581pt;}
.y196{bottom:143.025714pt;}
.y10b{bottom:143.636782pt;}
.y9c{bottom:144.952743pt;}
.y76{bottom:145.506076pt;}
.y37{bottom:147.856678pt;}
.y177{bottom:154.712657pt;}
.y141{bottom:154.794257pt;}
.y1db{bottom:158.072526pt;}
.yd4{bottom:159.179327pt;}
.y195{bottom:159.189461pt;}
.y10a{bottom:159.476794pt;}
.y1bd{bottom:160.370812pt;}
.y9b{bottom:161.116489pt;}
.y75{bottom:161.501156pt;}
.y36{bottom:163.851758pt;}
.y140{bottom:170.789337pt;}
.y176{bottom:170.876403pt;}
.y210{bottom:173.569872pt;}
.y1da{bottom:174.236273pt;}
.y1bc{bottom:174.514556pt;}
.y109{bottom:175.161873pt;}
.yd3{bottom:175.174407pt;}
.y194{bottom:175.184540pt;}
.y1c1{bottom:175.917357pt;}
.y9a{bottom:177.111568pt;}
.y74{bottom:177.664902pt;}
.y35{bottom:179.846837pt;}
.y13f{bottom:186.629349pt;}
.y175{bottom:187.050150pt;}
.y20f{bottom:188.934951pt;}
.y1c0{bottom:190.058569pt;}
.y1d9{bottom:190.400019pt;}
.y108{bottom:191.001886pt;}
.yd2{bottom:191.338153pt;}
.y193{bottom:191.348286pt;}
.y99{bottom:193.275315pt;}
.y73{bottom:193.659982pt;}
.y235{bottom:194.240357pt;}
.y34{bottom:196.010583pt;}
.y1bf{bottom:202.450845pt;}
.y13e{bottom:202.624429pt;}
.y174{bottom:203.213896pt;}
.y20e{bottom:204.140030pt;}
.y1d8{bottom:206.395098pt;}
.y107{bottom:206.841899pt;}
.yd1{bottom:207.333233pt;}
.y192{bottom:207.343366pt;}
.y98{bottom:209.270394pt;}
.y72{bottom:209.823728pt;}
.y33{bottom:212.005663pt;}
.y1be{bottom:216.592057pt;}
.y13d{bottom:218.619508pt;}
.y173{bottom:219.377642pt;}
.y20d{bottom:219.665109pt;}
.y106{bottom:222.526978pt;}
.y1d7{bottom:222.558845pt;}
.yd0{bottom:223.496979pt;}
.y191{bottom:223.507112pt;}
.y97{bottom:225.434140pt;}
.y71{bottom:225.987474pt;}
.y32{bottom:228.169409pt;}
.y13c{bottom:234.614588pt;}
.y20c{bottom:235.030188pt;}
.y172{bottom:235.372722pt;}
.y1b7{bottom:235.957672pt;}
.y105{bottom:238.366991pt;}
.y1d6{bottom:238.553924pt;}
.ycf{bottom:239.660725pt;}
.y190{bottom:239.670858pt;}
.y24e{bottom:240.000192pt;}
.y96{bottom:241.597887pt;}
.y70{bottom:241.982554pt;}
.y1b9{bottom:243.028078pt;}
.y31{bottom:244.164489pt;}
.y20b{bottom:250.076467pt;}
.y1b6{bottom:250.101417pt;}
.y13b{bottom:250.609667pt;}
.y171{bottom:251.536468pt;}
.y234{bottom:252.480000pt;}
.y104{bottom:254.052070pt;}
.y1d5{bottom:254.717670pt;}
.yce{bottom:255.655805pt;}
.y18f{bottom:255.665938pt;}
.y1b8{bottom:257.170622pt;}
.y95{bottom:257.592966pt;}
.y6f{bottom:257.977633pt;}
.y30{bottom:260.159568pt;}
.y1b5{bottom:264.242628pt;}
.y20a{bottom:265.600212pt;}
.y13a{bottom:266.449680pt;}
.y170{bottom:267.700214pt;}
.y24c{bottom:268.960215pt;}
.y103{bottom:269.892083pt;}
.y1d4{bottom:270.881417pt;}
.ycd{bottom:271.819551pt;}
.y18e{bottom:271.829684pt;}
.y94{bottom:273.756712pt;}
.y6e{bottom:273.972713pt;}
.y2f{bottom:275.519580pt;}
.y23f{bottom:276.480221pt;}
.y139{bottom:282.444759pt;}
.y24b{bottom:282.560226pt;}
.y16f{bottom:283.695294pt;}
.y1bb{bottom:285.569312pt;}
.y102{bottom:285.578362pt;}
.y1d3{bottom:286.876496pt;}
.ycc{bottom:287.983297pt;}
.y18d{bottom:287.993430pt;}
.y2e{bottom:288.512097pt;}
.y209{bottom:288.759831pt;}
.y93{bottom:289.751792pt;}
.y6d{bottom:289.967792pt;}
.y23e{bottom:290.240232pt;}
.y24a{bottom:296.480237pt;}
.y138{bottom:298.439839pt;}
.y1ba{bottom:299.709323pt;}
.y16e{bottom:299.859040pt;}
.y101{bottom:301.418374pt;}
.y1d2{bottom:303.040242pt;}
.ycb{bottom:303.978377pt;}
.y18c{bottom:303.988510pt;}
.y208{bottom:304.283577pt;}
.y23d{bottom:304.320243pt;}
.y2d{bottom:304.505844pt;}
.y6c{bottom:305.807805pt;}
.y92{bottom:305.915538pt;}
.y249{bottom:310.240248pt;}
.y137{bottom:314.434918pt;}
.y16d{bottom:315.854119pt;}
.y100{bottom:317.103454pt;}
.y1d1{bottom:318.560255pt;}
.y207{bottom:319.489856pt;}
.y1b1{bottom:319.556539pt;}
.yca{bottom:320.142123pt;}
.y18b{bottom:320.152256pt;}
.y2c{bottom:320.670923pt;}
.y6b{bottom:321.802884pt;}
.y91{bottom:322.079284pt;}
.y248{bottom:324.000259pt;}
.y1ac{bottom:326.627078pt;}
.y23c{bottom:329.760264pt;}
.y136{bottom:330.274931pt;}
.y1d0{bottom:331.040265pt;}
.y16c{bottom:332.017866pt;}
.yff{bottom:332.943466pt;}
.y1b0{bottom:333.700284pt;}
.y206{bottom:334.854935pt;}
.yc9{bottom:336.137202pt;}
.y18a{bottom:336.147336pt;}
.y2b{bottom:336.834669pt;}
.y6a{bottom:337.797964pt;}
.y247{bottom:338.072804pt;}
.y90{bottom:338.074364pt;}
.y1ab{bottom:340.770823pt;}
.y23b{bottom:343.520275pt;}
.y1cf{bottom:344.480276pt;}
.y135{bottom:346.268677pt;}
.y1af{bottom:347.841495pt;}
.y16b{bottom:348.181612pt;}
.yfe{bottom:348.628546pt;}
.y205{bottom:350.220014pt;}
.y246{bottom:351.836548pt;}
.yc8{bottom:352.300949pt;}
.y189{bottom:352.311082pt;}
.y2a{bottom:352.829749pt;}
.y69{bottom:353.793043pt;}
.y19d{bottom:354.147200pt;}
.y8f{bottom:354.238110pt;}
.y1ce{bottom:354.240283pt;}
.y1aa{bottom:354.910834pt;}
.y23a{bottom:361.440289pt;}
.y1ae{bottom:361.982706pt;}
.y134{bottom:362.263756pt;}
.y16a{bottom:364.176691pt;}
.yfd{bottom:364.468558pt;}
.y204{bottom:365.585092pt;}
.y245{bottom:365.756559pt;}
.yc7{bottom:368.464695pt;}
.y188{bottom:368.474828pt;}
.y29{bottom:368.993495pt;}
.y1a9{bottom:369.052045pt;}
.y68{bottom:369.633056pt;}
.y8e{bottom:370.603190pt;}
.y239{bottom:375.200300pt;}
.y1ad{bottom:376.122718pt;}
.y133{bottom:378.258836pt;}
.yfc{bottom:380.153637pt;}
.y169{bottom:380.340438pt;}
.y203{bottom:380.790171pt;}
.y244{bottom:383.516573pt;}
.yc6{bottom:384.459774pt;}
.y187{bottom:384.469908pt;}
.y28{bottom:384.987241pt;}
.y67{bottom:385.626802pt;}
.y8d{bottom:386.766936pt;}
.y238{bottom:392.956581pt;}
.y132{bottom:394.253915pt;}
.yfb{bottom:395.993650pt;}
.y202{bottom:396.155250pt;}
.y168{bottom:396.335517pt;}
.y1b3{bottom:397.180201pt;}
.yc5{bottom:400.623520pt;}
.y186{bottom:400.633654pt;}
.y27{bottom:400.982321pt;}
.y243{bottom:401.276588pt;}
.y66{bottom:401.621881pt;}
.y8c{bottom:403.085749pt;}
.y1b4{bottom:408.492077pt;}
.y131{bottom:410.093928pt;}
.y237{bottom:411.040329pt;}
.y1b2{bottom:411.321412pt;}
.y201{bottom:411.520329pt;}
.yfa{bottom:411.678729pt;}
.y167{bottom:412.499263pt;}
.y242{bottom:415.040332pt;}
.yc4{bottom:416.618600pt;}
.y185{bottom:416.628733pt;}
.y26{bottom:417.146067pt;}
.y65{bottom:417.616961pt;}
.y8b{bottom:419.249495pt;}
.y130{bottom:426.089008pt;}
.y200{bottom:426.710208pt;}
.yf9{bottom:427.518742pt;}
.y166{bottom:428.663010pt;}
.y241{bottom:428.960343pt;}
.y1a8{bottom:432.379296pt;}
.y236{bottom:432.640346pt;}
.yc3{bottom:432.782346pt;}
.y184{bottom:432.792480pt;}
.y25{bottom:433.141147pt;}
.y64{bottom:433.612040pt;}
.y8a{bottom:435.568308pt;}
.y1a3{bottom:439.449835pt;}
.y12f{bottom:442.084087pt;}
.y1ff{bottom:442.235287pt;}
.y240{bottom:442.720354pt;}
.yf8{bottom:443.143821pt;}
.y165{bottom:444.658089pt;}
.y1a7{bottom:446.523041pt;}
.yc2{bottom:448.946092pt;}
.y183{bottom:448.956226pt;}
.y24{bottom:449.304893pt;}
.y63{bottom:449.452053pt;}
.y89{bottom:451.732055pt;}
.y1a2{bottom:453.593580pt;}
.y1fe{bottom:457.440366pt;}
.y12e{bottom:458.079166pt;}
.yf7{bottom:458.983834pt;}
.y1a6{bottom:460.663052pt;}
.y164{bottom:460.821835pt;}
.yc1{bottom:464.941172pt;}
.y182{bottom:464.951305pt;}
.y23{bottom:465.299972pt;}
.y62{bottom:465.447132pt;}
.y1a1{bottom:467.734791pt;}
.y233{bottom:468.000374pt;}
.y88{bottom:468.050868pt;}
.y1fd{bottom:472.789712pt;}
.y12d{bottom:473.919179pt;}
.yf6{bottom:474.668913pt;}
.y1a5{bottom:474.804263pt;}
.y163{bottom:476.985582pt;}
.y232{bottom:480.480384pt;}
.yc0{bottom:481.104918pt;}
.y181{bottom:481.115052pt;}
.y22{bottom:481.295052pt;}
.y61{bottom:481.442212pt;}
.y1a0{bottom:481.874802pt;}
.y87{bottom:484.214614pt;}
.y1fc{bottom:488.315324pt;}
.y1a4{bottom:488.945474pt;}
.y12c{bottom:489.914259pt;}
.yf5{bottom:490.508926pt;}
.y231{bottom:490.660393pt;}
.y162{bottom:492.980661pt;}
.ybf{bottom:497.268664pt;}
.y180{bottom:497.278798pt;}
.y21{bottom:497.458798pt;}
.y60{bottom:497.605958pt;}
.y86{bottom:500.533427pt;}
.y1fb{bottom:503.520403pt;}
.y12b{bottom:505.909338pt;}
.y230{bottom:506.183605pt;}
.yf4{bottom:506.194005pt;}
.y161{bottom:509.144407pt;}
.ybe{bottom:513.263744pt;}
.y17f{bottom:513.273877pt;}
.y20{bottom:513.453877pt;}
.y5f{bottom:513.601038pt;}
.y85{bottom:516.697173pt;}
.y19f{bottom:518.268298pt;}
.y1fa{bottom:518.875348pt;}
.y22f{bottom:521.548684pt;}
.y12a{bottom:521.904418pt;}
.yf3{bottom:522.034018pt;}
.y160{bottom:525.139487pt;}
.ybd{bottom:529.427490pt;}
.y17e{bottom:529.437624pt;}
.y1f{bottom:529.617624pt;}
.y5e{bottom:529.764784pt;}
.y19e{bottom:532.410843pt;}
.y84{bottom:533.015986pt;}
.y1f9{bottom:534.080427pt;}
.y22e{bottom:536.754963pt;}
.yf2{bottom:537.720297pt;}
.y129{bottom:537.898164pt;}
.y15f{bottom:545.302036pt;}
.ybc{bottom:545.422570pt;}
.y17d{bottom:545.432703pt;}
.y1e{bottom:545.612703pt;}
.y5d{bottom:545.759863pt;}
.y83{bottom:549.179733pt;}
.y1f8{bottom:549.435106pt;}
.y22d{bottom:551.960042pt;}
.y128{bottom:553.738176pt;}
.yf1{bottom:557.559113pt;}
.y15e{bottom:561.465783pt;}
.ybb{bottom:561.586316pt;}
.y17c{bottom:561.596449pt;}
.y1d{bottom:561.607783pt;}
.y5c{bottom:561.923610pt;}
.y1f7{bottom:564.800452pt;}
.y82{bottom:565.343479pt;}
.y22c{bottom:567.485121pt;}
.y127{bottom:569.733256pt;}
.yf0{bottom:573.722859pt;}
.yba{bottom:577.750062pt;}
.y17b{bottom:577.760196pt;}
.y1c{bottom:577.771529pt;}
.y5b{bottom:578.087356pt;}
.y1f6{bottom:580.151131pt;}
.y15d{bottom:581.459532pt;}
.y81{bottom:581.662292pt;}
.y22b{bottom:582.690199pt;}
.y126{bottom:585.728335pt;}
.yef{bottom:593.716608pt;}
.yb9{bottom:593.745142pt;}
.y17a{bottom:593.755275pt;}
.y1b{bottom:593.766608pt;}
.y5a{bottom:594.082435pt;}
.y1f5{bottom:595.674210pt;}
.y15c{bottom:597.454611pt;}
.y80{bottom:597.826038pt;}
.y22a{bottom:598.215279pt;}
.y125{bottom:601.723415pt;}
.yee{bottom:609.880355pt;}
.yb8{bottom:609.908888pt;}
.y179{bottom:609.919021pt;}
.y1a{bottom:609.930355pt;}
.y59{bottom:610.246182pt;}
.y1f4{bottom:610.720489pt;}
.y15b{bottom:613.449691pt;}
.y229{bottom:613.580358pt;}
.y7f{bottom:614.144851pt;}
.y124{bottom:617.563427pt;}
.yed{bottom:625.874101pt;}
.yb7{bottom:625.903967pt;}
.y19{bottom:625.925434pt;}
.y1f3{bottom:626.060368pt;}
.y58{bottom:626.241261pt;}
.y228{bottom:628.785436pt;}
.y15a{bottom:629.444770pt;}
.y7e{bottom:630.308598pt;}
.y123{bottom:633.558507pt;}
.y1f2{bottom:641.584113pt;}
.y18{bottom:641.920514pt;}
.yec{bottom:642.039180pt;}
.yb6{bottom:642.067714pt;}
.y57{bottom:642.405007pt;}
.y227{bottom:643.991715pt;}
.y159{bottom:645.284783pt;}
.y7d{bottom:646.627411pt;}
.y122{bottom:649.553586pt;}
.y1f1{bottom:656.949192pt;}
.yeb{bottom:658.202927pt;}
.yb5{bottom:658.231460pt;}
.y56{bottom:658.568754pt;}
.y226{bottom:659.515461pt;}
.y158{bottom:661.279862pt;}
.y7c{bottom:662.622490pt;}
.y17{bottom:665.120532pt;}
.y121{bottom:665.548666pt;}
.y1f0{bottom:672.314271pt;}
.yea{bottom:674.198006pt;}
.yb4{bottom:674.226539pt;}
.y55{bottom:674.563833pt;}
.y225{bottom:674.880540pt;}
.y157{bottom:677.274942pt;}
.y7b{bottom:678.617570pt;}
.y120{bottom:681.233745pt;}
.y1ef{bottom:687.360550pt;}
.y224{bottom:690.070419pt;}
.y16{bottom:690.080552pt;}
.ye9{bottom:690.361752pt;}
.yb3{bottom:690.390286pt;}
.y54{bottom:690.727579pt;}
.y156{bottom:693.270021pt;}
.y7a{bottom:694.781316pt;}
.y11f{bottom:697.073758pt;}
.y1ee{bottom:702.720562pt;}
.y223{bottom:705.595498pt;}
.ye8{bottom:706.525499pt;}
.yb2{bottom:706.554032pt;}
.y53{bottom:706.891326pt;}
.y15{bottom:708.480567pt;}
.y155{bottom:709.110034pt;}
.y79{bottom:710.945062pt;}
.y11e{bottom:712.758837pt;}
.y1ed{bottom:718.219775pt;}
.y222{bottom:720.800577pt;}
.ye7{bottom:722.520578pt;}
.yb1{bottom:722.549111pt;}
.y52{bottom:722.886405pt;}
.y154{bottom:725.105113pt;}
.y14{bottom:726.880582pt;}
.y78{bottom:726.940142pt;}
.y11d{bottom:728.598850pt;}
.y1ec{bottom:733.584854pt;}
.y221{bottom:736.150456pt;}
.ye6{bottom:738.684324pt;}
.yb0{bottom:738.712858pt;}
.y153{bottom:741.100193pt;}
.y51{bottom:742.880154pt;}
.y77{bottom:743.103888pt;}
.y11c{bottom:744.283929pt;}
.y1eb{bottom:748.949932pt;}
.y220{bottom:751.355534pt;}
.ye5{bottom:754.679404pt;}
.yaf{bottom:754.707937pt;}
.y13{bottom:755.356871pt;}
.y152{bottom:757.093939pt;}
.y50{bottom:758.400167pt;}
.y11b{bottom:760.123941pt;}
.y1ea{bottom:764.155011pt;}
.y21f{bottom:766.720613pt;}
.y12{bottom:768.796882pt;}
.ye4{bottom:770.843150pt;}
.yae{bottom:770.871683pt;}
.y4f{bottom:771.377684pt;}
.y151{bottom:773.089018pt;}
.y11a{bottom:775.809021pt;}
.y1e9{bottom:779.520090pt;}
.y21e{bottom:782.230492pt;}
.y11{bottom:782.560626pt;}
.ye3{bottom:787.006896pt;}
.yad{bottom:787.035430pt;}
.y4e{bottom:787.372763pt;}
.y150{bottom:788.929031pt;}
.y119{bottom:791.649033pt;}
.y21d{bottom:797.435571pt;}
.y10{bottom:797.440638pt;}
.ye2{bottom:803.001976pt;}
.yac{bottom:803.030509pt;}
.y4d{bottom:803.536509pt;}
.y14f{bottom:804.924111pt;}
.y118{bottom:807.334113pt;}
.y21c{bottom:812.800650pt;}
.ye1{bottom:819.165722pt;}
.y1e8{bottom:819.180122pt;}
.yab{bottom:819.194255pt;}
.y4c{bottom:819.700256pt;}
.y14e{bottom:820.919190pt;}
.y117{bottom:823.174125pt;}
.yf{bottom:827.696929pt;}
.y21b{bottom:827.995329pt;}
.ye0{bottom:835.160801pt;}
.y1e7{bottom:835.175201pt;}
.yaa{bottom:835.189335pt;}
.y4b{bottom:835.695335pt;}
.y14d{bottom:836.914270pt;}
.y116{bottom:839.014138pt;}
.y21a{bottom:843.360675pt;}
.ydf{bottom:851.324548pt;}
.y1e6{bottom:851.338948pt;}
.ya9{bottom:851.353081pt;}
.y4a{bottom:851.859081pt;}
.ye{bottom:852.168148pt;}
.y14c{bottom:852.754282pt;}
.y115{bottom:854.700417pt;}
.y219{bottom:858.711354pt;}
.yde{bottom:867.488294pt;}
.y1e5{bottom:867.502694pt;}
.ya8{bottom:867.516827pt;}
.y49{bottom:867.854161pt;}
.y14b{bottom:868.749362pt;}
.y114{bottom:870.540430pt;}
.y218{bottom:874.235633pt;}
.yd{bottom:876.640701pt;}
.ydd{bottom:883.483373pt;}
.y1e4{bottom:883.497773pt;}
.ya7{bottom:883.511907pt;}
.y48{bottom:883.849240pt;}
.y14a{bottom:884.744441pt;}
.y113{bottom:886.225509pt;}
.y217{bottom:889.440712pt;}
.ydc{bottom:899.647120pt;}
.y1e3{bottom:899.661520pt;}
.ya6{bottom:899.675653pt;}
.y47{bottom:900.012987pt;}
.y149{bottom:900.739521pt;}
.y112{bottom:902.065522pt;}
.y19c{bottom:902.720589pt;}
.y216{bottom:904.640724pt;}
.yc{bottom:910.070595pt;}
.ydb{bottom:915.810866pt;}
.y1e2{bottom:915.825266pt;}
.ya5{bottom:915.839399pt;}
.y46{bottom:916.008066pt;}
.y148{bottom:916.734600pt;}
.y111{bottom:917.750601pt;}
.y215{bottom:920.134336pt;}
.yb{bottom:925.275674pt;}
.yda{bottom:931.805945pt;}
.y1e1{bottom:931.820345pt;}
.y19b{bottom:931.834345pt;}
.ya4{bottom:931.834479pt;}
.y45{bottom:932.171812pt;}
.y147{bottom:932.574613pt;}
.y110{bottom:933.590614pt;}
.y214{bottom:935.499415pt;}
.ya{bottom:940.640753pt;}
.yd9{bottom:947.969692pt;}
.y1e0{bottom:947.984092pt;}
.y19a{bottom:947.998092pt;}
.ya3{bottom:947.998225pt;}
.y44{bottom:948.166892pt;}
.y146{bottom:948.569692pt;}
.y10f{bottom:949.275693pt;}
.y213{bottom:950.705694pt;}
.y9{bottom:957.280766pt;}
.yd8{bottom:963.963438pt;}
.y1df{bottom:963.979171pt;}
.y199{bottom:963.993171pt;}
.ya2{bottom:963.993305pt;}
.y43{bottom:964.161971pt;}
.y145{bottom:964.563438pt;}
.y10e{bottom:965.115705pt;}
.y212{bottom:966.229440pt;}
.yd7{bottom:980.128517pt;}
.y1de{bottom:980.142917pt;}
.y198{bottom:980.156917pt;}
.ya1{bottom:980.157051pt;}
.y42{bottom:980.325718pt;}
.y144{bottom:980.558518pt;}
.y10d{bottom:980.800785pt;}
.y211{bottom:981.435718pt;}
.y8{bottom:981.595719pt;}
.yd6{bottom:996.292264pt;}
.y1dd{bottom:996.306664pt;}
.y197{bottom:996.320664pt;}
.y41{bottom:996.320797pt;}
.y143{bottom:996.398530pt;}
.y10c{bottom:996.640797pt;}
.y7{bottom:996.800797pt;}
.y1{bottom:1072.320858pt;}
.h2d{height:21.671892pt;}
.h13{height:26.400000pt;}
.h12{height:29.440000pt;}
.h11{height:29.773149pt;}
.h14{height:31.998752pt;}
.h18{height:32.000000pt;}
.h1b{height:33.312969pt;}
.h7{height:34.945340pt;}
.h2f{height:34.992215pt;}
.h19{height:36.870967pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.h15{height:41.002533pt;}
.hf{height:41.250033pt;}
.hd{height:41.273471pt;}
.he{height:42.281284pt;}
.h1d{height:42.914097pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h9{height:45.675974pt;}
.h23{height:45.694907pt;}
.h22{height:45.695974pt;}
.h29{height:45.697307pt;}
.h21{height:45.713307pt;}
.h25{height:45.713841pt;}
.h2a{height:45.716507pt;}
.h24{height:45.718641pt;}
.h2b{height:45.719174pt;}
.h20{height:45.756507pt;}
.h1f{height:45.759174pt;}
.h28{height:45.781574pt;}
.h27{height:45.799707pt;}
.h26{height:45.837574pt;}
.h2c{height:45.915974pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h1e{height:47.491600pt;}
.h17{height:48.427539pt;}
.h10{height:49.610040pt;}
.h16{height:50.352540pt;}
.h1c{height:51.991917pt;}
.ha{height:54.807231pt;}
.hb{height:76.100998pt;}
.h2e{height:205.120000pt;}
.h1a{height:545.436800pt;}
.h0{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.w6{width:24.000000pt;}
.w4{width:24.160000pt;}
.w3{width:219.198720pt;}
.w2{width:219.680000pt;}
.w9{width:224.478720pt;}
.w7{width:230.240000pt;}
.w5{width:234.720000pt;}
.wa{width:425.280000pt;}
.w8{width:463.836800pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:7.200240pt;}
.xd{left:9.600066pt;}
.x5{left:13.760417pt;}
.x1d{left:14.797211pt;}
.x11{left:19.840419pt;}
.x2b{left:21.306782pt;}
.x35{left:24.430552pt;}
.x18{left:25.760421pt;}
.x1f{left:29.228375pt;}
.x31{left:36.979478pt;}
.x2a{left:43.098079pt;}
.x1e{left:50.464663pt;}
.x40{left:68.480000pt;}
.xc{left:72.320000pt;}
.x7{left:75.519514pt;}
.x42{left:77.443529pt;}
.x2e{left:78.670265pt;}
.xe{left:81.920066pt;}
.x36{left:84.606899pt;}
.x1c{left:92.829507pt;}
.x9{left:94.401196pt;}
.x41{left:96.320077pt;}
.x3e{left:103.831723pt;}
.x32{left:110.574538pt;}
.x33{left:114.230786pt;}
.x13{left:122.718618pt;}
.xa{left:151.032547pt;}
.x1a{left:165.177600pt;}
.x22{left:169.595582pt;}
.x1b{left:173.092004pt;}
.x20{left:183.449346pt;}
.x3a{left:202.318270pt;}
.x23{left:208.329312pt;}
.x21{left:211.464366pt;}
.x28{left:235.805387pt;}
.x34{left:243.634727pt;}
.x29{left:254.425376pt;}
.x2d{left:264.633844pt;}
.x38{left:275.482138pt;}
.x3b{left:276.460087pt;}
.x3c{left:285.205196pt;}
.x30{left:286.969197pt;}
.x44{left:292.960000pt;}
.x2c{left:294.480101pt;}
.x2f{left:295.472949pt;}
.x43{left:300.160240pt;}
.x37{left:309.632113pt;}
.x39{left:328.362197pt;}
.x24{left:330.286796pt;}
.x26{left:342.446876pt;}
.x27{left:346.725630pt;}
.x25{left:375.770602pt;}
.x2{left:384.800695pt;}
.x16{left:390.720000pt;}
.xf{left:396.800704pt;}
.x14{left:406.385432pt;}
.xb{left:412.322770pt;}
.x15{left:425.266780pt;}
.x8{left:444.800929pt;}
.x17{left:500.320000pt;}
.x10{left:504.000000pt;}
.x4{left:507.360000pt;}
.x3f{left:509.280407pt;}
.x19{left:560.640449pt;}
.x6{left:562.560450pt;}
.x12{left:566.560453pt;}
.x1{left:627.360502pt;}
.x3d{left:628.960503pt;}
.x3{left:694.080942pt;}
}




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