
    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_82c6d7032f7a2ce4366e1ef9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.814941;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_395f9ba13b70db24a6f21eea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_301bdd1c779d4839dc4a480d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989258;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_918be6b871953e25ae74a3d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_489ed51822645fce4acf5996.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995117;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_9857ad0fe47f0e76d77d1d54.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118000;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_4d580a469f0dce9af3fa16e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172000;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_b0849ea2af5e60df0c48014c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.077000;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_78e65352a0a24fcbfb3668da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989258;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_07dcb5c5ef45fd2ecf556d3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.814941;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_1db408627880a2c9b22e35bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120000;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_b58d1b0439a209398045983a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.181000;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_b092594a1776f982c450dccc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.153000;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_a35b81451b118864ece0ac62.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989258;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_523c1db84eac97fe19e43e90.woff2')format("woff");}.fff{font-family:fff;line-height:1.120000;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_a35b81451b118864ece0ac62.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.989258;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_a35b81451b118864ece0ac62.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.989258;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_eb8393c9c24f56cc6523cc68.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.061000;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_a35b81451b118864ece0ac62.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a35b81451b118864ece0ac62.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.989258;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.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v4{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.979400px;}
.v1{vertical-align:39.960000px;}
.ls3{letter-spacing:-4.320000px;}
.ls4{letter-spacing:-2.400000px;}
.ls5{letter-spacing:-1.399200px;}
.ls1a{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.840003px;}
.lsd{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.699600px;}
.ls15{letter-spacing:-0.629640px;}
.ls8{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.524700px;}
.lse{letter-spacing:-0.349800px;}
.lsf{letter-spacing:-0.314820px;}
.ls12{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.174900px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013412px;}
.ls0{letter-spacing:0.017143px;}
.ls11{letter-spacing:0.174900px;}
.ls10{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.524700px;}
.ls17{letter-spacing:0.699600px;}
.ls18{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.200000px;}
.lsb{letter-spacing:55.584000px;}
.ls7{letter-spacing:71.136000px;}
.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;}
}
.ws1{word-spacing:-24.024000px;}
.ws91{word-spacing:-16.980000px;}
.ws2{word-spacing:-16.816800px;}
.ws3{word-spacing:-16.680000px;}
.ws19{word-spacing:-16.080000px;}
.ws1a{word-spacing:-15.780000px;}
.ws4{word-spacing:-11.676000px;}
.ws5{word-spacing:-11.333520px;}
.wsb6{word-spacing:-10.424040px;}
.wsba{word-spacing:-10.249140px;}
.ws90{word-spacing:-9.899340px;}
.ws6{word-spacing:-9.724440px;}
.wsaa{word-spacing:-9.549540px;}
.ws80{word-spacing:-9.374640px;}
.ws41{word-spacing:-9.199740px;}
.wscc{word-spacing:-9.024840px;}
.ws1b{word-spacing:-7.779552px;}
.wsf2{word-spacing:-5.520000px;}
.wsea{word-spacing:-5.220000px;}
.wsfb{word-spacing:-4.416000px;}
.ws7f{word-spacing:-3.996000px;}
.ws59{word-spacing:-3.660000px;}
.ws12{word-spacing:-3.540000px;}
.ws8b{word-spacing:-3.408000px;}
.ws50{word-spacing:-3.240000px;}
.ws96{word-spacing:-3.120000px;}
.wsd8{word-spacing:-3.060000px;}
.wsd9{word-spacing:-3.000000px;}
.wsd7{word-spacing:-2.976000px;}
.wse6{word-spacing:-2.916000px;}
.ws17{word-spacing:-2.880000px;}
.ws5f{word-spacing:-2.760000px;}
.ws26{word-spacing:-2.700000px;}
.wsdd{word-spacing:-2.646000px;}
.wsa{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.592000px;}
.ws27{word-spacing:-2.580000px;}
.wse3{word-spacing:-2.484000px;}
.ws97{word-spacing:-2.460000px;}
.wse5{word-spacing:-2.400000px;}
.wsd1{word-spacing:-2.376000px;}
.ws48{word-spacing:-2.340000px;}
.wsb3{word-spacing:-2.322000px;}
.ws8a{word-spacing:-2.304000px;}
.ws24{word-spacing:-2.280000px;}
.ws63{word-spacing:-2.220000px;}
.wsdb{word-spacing:-2.160000px;}
.ws44{word-spacing:-2.100000px;}
.wsf9{word-spacing:-2.052000px;}
.ws3f{word-spacing:-2.016000px;}
.wscb{word-spacing:-1.998000px;}
.ws16{word-spacing:-1.980000px;}
.wsa4{word-spacing:-1.872000px;}
.wsef{word-spacing:-1.860000px;}
.wsb1{word-spacing:-1.836000px;}
.wsdf{word-spacing:-1.800000px;}
.wsdc{word-spacing:-1.782000px;}
.wsa9{word-spacing:-1.776000px;}
.ws94{word-spacing:-1.740000px;}
.ws47{word-spacing:-1.680000px;}
.ws8c{word-spacing:-1.632000px;}
.wscd{word-spacing:-1.620000px;}
.wsda{word-spacing:-1.566000px;}
.ws38{word-spacing:-1.536000px;}
.wsad{word-spacing:-1.500000px;}
.wsc8{word-spacing:-1.488000px;}
.wsd2{word-spacing:-1.380000px;}
.ws81{word-spacing:-1.350000px;}
.ws4d{word-spacing:-1.296000px;}
.ws85{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.152000px;}
.wsab{word-spacing:-1.140000px;}
.wsde{word-spacing:-1.134000px;}
.ws6d{word-spacing:-1.104000px;}
.ws25{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.056000px;}
.ws9f{word-spacing:-1.020000px;}
.ws45{word-spacing:-0.960000px;}
.ws58{word-spacing:-0.900000px;}
.ws6b{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.840000px;}
.wse1{word-spacing:-0.780000px;}
.wsb2{word-spacing:-0.756000px;}
.wsd{word-spacing:-0.660000px;}
.wsa0{word-spacing:-0.600000px;}
.wsa1{word-spacing:-0.540000px;}
.wsbf{word-spacing:-0.486000px;}
.ws23{word-spacing:-0.480000px;}
.wscf{word-spacing:-0.432000px;}
.ws65{word-spacing:-0.420000px;}
.wse8{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.336000px;}
.ws8f{word-spacing:-0.324000px;}
.ws37{word-spacing:-0.300000px;}
.ws40{word-spacing:-0.240000px;}
.wsc2{word-spacing:-0.216000px;}
.ws9e{word-spacing:-0.180000px;}
.ws61{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws6a{word-spacing:0.048000px;}
.ws7b{word-spacing:0.060000px;}
.wsc5{word-spacing:0.096000px;}
.wsb7{word-spacing:0.120000px;}
.wsa6{word-spacing:0.180000px;}
.wsae{word-spacing:0.216000px;}
.ws70{word-spacing:0.240000px;}
.ws39{word-spacing:0.288000px;}
.ws9d{word-spacing:0.300000px;}
.ws84{word-spacing:0.314820px;}
.wse{word-spacing:0.360000px;}
.ws46{word-spacing:0.420000px;}
.wsf6{word-spacing:0.432000px;}
.wsce{word-spacing:0.480000px;}
.wsa8{word-spacing:0.486000px;}
.wsfa{word-spacing:0.540000px;}
.wsd6{word-spacing:0.576000px;}
.wsb4{word-spacing:0.594000px;}
.ws88{word-spacing:0.600000px;}
.wsb5{word-spacing:0.629640px;}
.ws28{word-spacing:0.660000px;}
.ws4a{word-spacing:0.672000px;}
.wsf{word-spacing:0.720000px;}
.wsf4{word-spacing:0.756000px;}
.wsd5{word-spacing:0.768000px;}
.ws98{word-spacing:0.780000px;}
.ws69{word-spacing:0.816000px;}
.ws73{word-spacing:0.840000px;}
.ws6e{word-spacing:0.864000px;}
.ws22{word-spacing:0.900000px;}
.wsc9{word-spacing:0.912000px;}
.ws57{word-spacing:1.020000px;}
.wsf7{word-spacing:1.026000px;}
.wse9{word-spacing:1.080000px;}
.wsed{word-spacing:1.104000px;}
.ws32{word-spacing:1.140000px;}
.ws68{word-spacing:1.200000px;}
.ws3b{word-spacing:1.248000px;}
.wsac{word-spacing:1.260000px;}
.ws8d{word-spacing:1.296000px;}
.ws20{word-spacing:1.320000px;}
.wsb8{word-spacing:1.380000px;}
.wsd3{word-spacing:1.440000px;}
.wsc7{word-spacing:1.488000px;}
.ws56{word-spacing:1.500000px;}
.wsc3{word-spacing:1.512000px;}
.ws5e{word-spacing:1.560000px;}
.ws82{word-spacing:1.566000px;}
.ws4c{word-spacing:1.584000px;}
.ws9{word-spacing:1.620000px;}
.ws2a{word-spacing:1.740000px;}
.ws99{word-spacing:1.860000px;}
.ws8e{word-spacing:1.872000px;}
.ws93{word-spacing:1.920000px;}
.ws83{word-spacing:1.944000px;}
.ws51{word-spacing:1.980000px;}
.wsf8{word-spacing:1.998000px;}
.ws21{word-spacing:2.040000px;}
.wsbd{word-spacing:2.100000px;}
.wsc0{word-spacing:2.214000px;}
.wsa3{word-spacing:2.220000px;}
.wsf0{word-spacing:2.280000px;}
.ws3c{word-spacing:2.304000px;}
.wse4{word-spacing:2.322000px;}
.wsa5{word-spacing:2.340000px;}
.ws10{word-spacing:2.400000px;}
.ws86{word-spacing:2.520000px;}
.ws4e{word-spacing:2.640000px;}
.wsb0{word-spacing:2.646000px;}
.wse2{word-spacing:2.760000px;}
.ws9b{word-spacing:2.820000px;}
.ws92{word-spacing:2.880000px;}
.ws9c{word-spacing:2.940000px;}
.wsc4{word-spacing:2.970000px;}
.wsc6{word-spacing:3.072000px;}
.wsec{word-spacing:3.120000px;}
.wsd0{word-spacing:3.240000px;}
.ws89{word-spacing:3.264000px;}
.wsa7{word-spacing:3.294000px;}
.wsaf{word-spacing:3.402000px;}
.ws4b{word-spacing:3.408000px;}
.ws7c{word-spacing:3.480000px;}
.wse7{word-spacing:3.510000px;}
.ws49{word-spacing:3.552000px;}
.wsc1{word-spacing:3.564000px;}
.ws14{word-spacing:3.660000px;}
.wsb9{word-spacing:3.840000px;}
.wsd4{word-spacing:3.888000px;}
.wsbc{word-spacing:3.900000px;}
.ws1d{word-spacing:3.942000px;}
.wse0{word-spacing:3.960000px;}
.ws3d{word-spacing:4.080000px;}
.wsa2{word-spacing:4.140000px;}
.wsf3{word-spacing:4.212000px;}
.wsf1{word-spacing:4.260000px;}
.ws1c{word-spacing:4.266000px;}
.ws8{word-spacing:4.320000px;}
.ws5a{word-spacing:4.440000px;}
.ws13{word-spacing:4.500000px;}
.ws7e{word-spacing:4.560000px;}
.ws64{word-spacing:4.680000px;}
.ws42{word-spacing:4.740000px;}
.ws95{word-spacing:4.980000px;}
.ws18{word-spacing:5.040000px;}
.wsbb{word-spacing:5.100000px;}
.ws2e{word-spacing:5.160000px;}
.ws33{word-spacing:5.220000px;}
.wsb{word-spacing:5.280000px;}
.wsbe{word-spacing:5.340000px;}
.ws9a{word-spacing:5.400000px;}
.ws66{word-spacing:5.520000px;}
.ws3a{word-spacing:5.616000px;}
.ws71{word-spacing:5.700000px;}
.ws43{word-spacing:5.760000px;}
.ws78{word-spacing:5.820000px;}
.ws79{word-spacing:5.880000px;}
.wsf5{word-spacing:5.940000px;}
.ws5b{word-spacing:6.000000px;}
.ws87{word-spacing:6.420000px;}
.ws34{word-spacing:6.480000px;}
.ws67{word-spacing:6.576000px;}
.ws62{word-spacing:6.600000px;}
.wseb{word-spacing:6.720000px;}
.ws5d{word-spacing:6.840000px;}
.ws54{word-spacing:7.020000px;}
.ws15{word-spacing:7.620000px;}
.wsee{word-spacing:7.800000px;}
.ws11{word-spacing:7.920000px;}
.ws60{word-spacing:8.340000px;}
.ws55{word-spacing:8.400000px;}
.ws4f{word-spacing:8.460000px;}
.ws52{word-spacing:8.820000px;}
.wsc{word-spacing:9.180000px;}
.ws76{word-spacing:9.600000px;}
.ws53{word-spacing:9.720000px;}
.ws5c{word-spacing:9.840000px;}
.ws7d{word-spacing:10.020000px;}
.ws2b{word-spacing:11.700000px;}
.ws31{word-spacing:11.880000px;}
.ws30{word-spacing:12.840000px;}
.ws6f{word-spacing:12.900000px;}
.ws36{word-spacing:13.200000px;}
.ws77{word-spacing:13.320000px;}
.ws72{word-spacing:13.500000px;}
.ws75{word-spacing:14.040000px;}
.ws2d{word-spacing:14.160000px;}
.ws2c{word-spacing:14.880000px;}
.ws2f{word-spacing:16.140000px;}
.ws7a{word-spacing:20.040000px;}
.ws74{word-spacing:26.700000px;}
.ws35{word-spacing:32.160000px;}
._4{margin-left:-38.750400px;}
._6{margin-left:-37.556057px;}
._2{margin-left:-8.540914px;}
._f{margin-left:-6.240000px;}
._1{margin-left:-5.196686px;}
._0{margin-left:-3.881657px;}
._5{margin-left:-2.816914px;}
._8{margin-left:-1.080000px;}
._c{width:1.088598px;}
._b{width:2.259943px;}
._3{width:4.320000px;}
._14{width:5.520000px;}
._12{width:6.576000px;}
._a{width:8.675829px;}
._e{width:35.217529px;}
._10{width:38.873032px;}
._7{width:41.685529px;}
._9{width:42.964215px;}
._13{width:55.583910px;}
._11{width:71.135955px;}
._d{width:133.002000px;}
.fc3{color:rgb(90,91,157);}
.fc5{color:transparent;}
.fc4{color:rgb(189,186,218);}
.fc2{color:rgb(91,91,158);}
.fc6{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(40,53,131);}
.fsf{font-size:27.984000px;}
.fse{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs2{font-size:42.000000px;}
.fs10{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:69.960000px;}
.fs12{font-size:71.999973px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.000243px;}
.fs11{font-size:83.999969px;}
.fsb{font-size:84.000283px;}
.fs5{font-size:92.400000px;}
.fs7{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs3{font-size:144.000000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:5.291265px;}
.y71{bottom:14.999994px;}
.y28{bottom:15.000051px;}
.y70{bottom:19.266893px;}
.y27{bottom:19.266965px;}
.y1{bottom:63.779550px;}
.y6b{bottom:106.299150px;}
.yb8{bottom:106.299300px;}
.y12c{bottom:106.300650px;}
.ydf{bottom:106.302150px;}
.yd9{bottom:110.295150px;}
.y58{bottom:110.295300px;}
.y113{bottom:110.295450px;}
.y6a{bottom:120.699150px;}
.yb7{bottom:120.699300px;}
.y12b{bottom:121.299150px;}
.yde{bottom:121.300650px;}
.ya0{bottom:124.695150px;}
.y17d{bottom:124.951200px;}
.y57{bottom:124.951500px;}
.yd8{bottom:128.947200px;}
.y141{bottom:128.947350px;}
.y112{bottom:128.947500px;}
.y25{bottom:129.921000px;}
.y69{bottom:135.099150px;}
.ydd{bottom:136.299150px;}
.y151{bottom:139.095150px;}
.yb6{bottom:139.095300px;}
.y9f{bottom:139.351200px;}
.y198{bottom:143.347200px;}
.y56{bottom:143.347500px;}
.yd7{bottom:143.603100px;}
.y1a3{bottom:143.603250px;}
.y140{bottom:143.603400px;}
.y24{bottom:146.751000px;}
.yf6{bottom:147.599100px;}
.y111{bottom:147.599550px;}
.y68{bottom:153.495150px;}
.y9e{bottom:157.747200px;}
.y150{bottom:157.747350px;}
.y13f{bottom:158.003400px;}
.yd6{bottom:161.999100px;}
.y1a2{bottom:161.999250px;}
.y55{bottom:161.999550px;}
.y23{bottom:163.581000px;}
.yf5{bottom:166.251150px;}
.y110{bottom:166.251750px;}
.y67{bottom:168.151200px;}
.y13e{bottom:172.403400px;}
.y9d{bottom:176.399100px;}
.y17c{bottom:176.399250px;}
.yd5{bottom:176.655150px;}
.y54{bottom:176.655750px;}
.y22{bottom:180.411000px;}
.yfe{bottom:180.651150px;}
.y66{bottom:182.551200px;}
.y163{bottom:185.907000px;}
.y13d{bottom:186.803400px;}
.y12e{bottom:192.200700px;}
.y9c{bottom:195.051150px;}
.y17b{bottom:195.051450px;}
.y53{bottom:195.051750px;}
.y21{bottom:197.241000px;}
.y197{bottom:199.303050px;}
.y162{bottom:200.905500px;}
.y65{bottom:200.947200px;}
.y13c{bottom:201.203400px;}
.y14f{bottom:205.199400px;}
.y12d{bottom:207.199200px;}
.y9b{bottom:209.707050px;}
.y52{bottom:209.707800px;}
.y196{bottom:213.958950px;}
.y20{bottom:214.071000px;}
.y13b{bottom:215.603400px;}
.yf8{bottom:217.914900px;}
.y1a6{bottom:218.979450px;}
.y10e{bottom:219.319800px;}
.y125{bottom:219.355350px;}
.y64{bottom:219.599100px;}
.y16a{bottom:222.902700px;}
.y10f{bottom:223.815300px;}
.y126{bottom:223.850850px;}
.ybf{bottom:223.868250px;}
.y9a{bottom:224.107050px;}
.yd4{bottom:228.103050px;}
.y51{bottom:228.103800px;}
.y1f{bottom:230.901000px;}
.y195{bottom:232.355100px;}
.yf7{bottom:232.913400px;}
.y1a5{bottom:233.977950px;}
.y13a{bottom:233.999400px;}
.y10d{bottom:235.519800px;}
.y124{bottom:235.555350px;}
.y100{bottom:237.993150px;}
.ybe{bottom:238.866750px;}
.y169{bottom:240.902700px;}
.y99{bottom:242.503050px;}
.yd3{bottom:242.759100px;}
.y50{bottom:242.759850px;}
.y1a4{bottom:248.976450px;}
.y194{bottom:251.007000px;}
.y10c{bottom:251.719800px;}
.y123{bottom:251.755350px;}
.yff{bottom:252.991650px;}
.ybd{bottom:253.865250px;}
.y168{bottom:258.902700px;}
.y98{bottom:261.154950px;}
.yd2{bottom:261.155100px;}
.y4f{bottom:261.155850px;}
.y153{bottom:263.505450px;}
.y17a{bottom:267.733200px;}
.y122{bottom:267.955350px;}
.y97{bottom:275.811000px;}
.yd1{bottom:275.811150px;}
.y4e{bottom:275.812050px;}
.y167{bottom:276.902700px;}
.y6d{bottom:277.086600px;}
.y152{bottom:278.503950px;}
.y179{bottom:283.933200px;}
.y121{bottom:284.155350px;}
.y10b{bottom:284.927700px;}
.y143{bottom:289.135350px;}
.y4d{bottom:290.212050px;}
.y6c{bottom:292.085100px;}
.y96{bottom:294.207000px;}
.yd0{bottom:294.207150px;}
.y166{bottom:294.902700px;}
.y178{bottom:300.133200px;}
.y120{bottom:300.355350px;}
.y10a{bottom:302.927700px;}
.y142{bottom:304.133850px;}
.y4c{bottom:308.608050px;}
.y95{bottom:308.862900px;}
.y19a{bottom:309.214050px;}
.y165{bottom:312.902700px;}
.y11f{bottom:316.555350px;}
.y109{bottom:320.927700px;}
.y94{bottom:323.262900px;}
.y199{bottom:324.212550px;}
.y1e{bottom:332.717100px;}
.y11e{bottom:332.755350px;}
.y177{bottom:333.341100px;}
.y93{bottom:337.662900px;}
.y108{bottom:338.927700px;}
.y164{bottom:339.407700px;}
.ycf{bottom:348.952650px;}
.y1d{bottom:350.717100px;}
.y176{bottom:351.341100px;}
.y92{bottom:352.062900px;}
.y107{bottom:356.927700px;}
.y5b{bottom:361.065900px;}
.y4b{bottom:361.557600px;}
.y11d{bottom:365.963100px;}
.y91{bottom:366.462900px;}
.yce{bottom:366.952650px;}
.y175{bottom:369.341100px;}
.y1c{bottom:372.969000px;}
.y106{bottom:374.927700px;}
.y5a{bottom:376.064400px;}
.y4a{bottom:379.947600px;}
.y11c{bottom:383.963100px;}
.y90{bottom:384.858900px;}
.ycd{bottom:384.952650px;}
.y174{bottom:387.341100px;}
.y1b{bottom:390.969150px;}
.y59{bottom:391.062900px;}
.y16c{bottom:393.190350px;}
.y49{bottom:398.337600px;}
.y105{bottom:401.431650px;}
.y11b{bottom:401.963100px;}
.ycc{bottom:402.952650px;}
.y173{bottom:405.341100px;}
.y16b{bottom:408.188850px;}
.y1a{bottom:408.969150px;}
.y48{bottom:416.727600px;}
.y104{bottom:419.431650px;}
.y11a{bottom:419.963100px;}
.ycb{bottom:420.952650px;}
.y172{bottom:423.341100px;}
.y19{bottom:426.969150px;}
.y47{bottom:435.117600px;}
.y103{bottom:437.431650px;}
.y119{bottom:437.963100px;}
.y171{bottom:441.341100px;}
.y18{bottom:444.969150px;}
.y8f{bottom:445.893750px;}
.y46{bottom:453.507600px;}
.y102{bottom:455.431650px;}
.yc9{bottom:455.960550px;}
.y118{bottom:455.963100px;}
.y170{bottom:459.341100px;}
.yca{bottom:460.455900px;}
.y17{bottom:462.969150px;}
.y8e{bottom:463.593750px;}
.y45{bottom:471.897600px;}
.yc8{bottom:472.160550px;}
.y101{bottom:473.431650px;}
.y117{bottom:473.963100px;}
.y16f{bottom:477.341100px;}
.y16{bottom:480.969150px;}
.y8d{bottom:481.293750px;}
.yc7{bottom:488.360400px;}
.y44{bottom:490.287600px;}
.y116{bottom:491.963100px;}
.y16e{bottom:495.341100px;}
.y15{bottom:498.969150px;}
.y8c{bottom:498.993750px;}
.yc6{bottom:504.560400px;}
.y43{bottom:508.677600px;}
.y16d{bottom:513.341100px;}
.y115{bottom:516.497550px;}
.y8b{bottom:516.693750px;}
.yc5{bottom:520.760400px;}
.y1b0{bottom:525.161550px;}
.y14{bottom:525.472950px;}
.y42{bottom:527.067600px;}
.y1b1{bottom:529.657050px;}
.y128{bottom:531.261300px;}
.y114{bottom:531.496050px;}
.y8a{bottom:534.393750px;}
.y12a{bottom:539.765400px;}
.y1af{bottom:541.361550px;}
.y41{bottom:545.457600px;}
.y127{bottom:546.259800px;}
.y89{bottom:552.093750px;}
.y13{bottom:552.472950px;}
.y17f{bottom:552.639300px;}
.ybc{bottom:552.760350px;}
.yb5{bottom:553.427700px;}
.yc4{bottom:553.968300px;}
.y129{bottom:554.763900px;}
.y1ae{bottom:557.561550px;}
.y40{bottom:563.847600px;}
.y17e{bottom:567.637800px;}
.ybb{bottom:567.758850px;}
.y88{bottom:569.793750px;}
.yb4{bottom:571.427700px;}
.yc3{bottom:571.968300px;}
.y1ad{bottom:573.761550px;}
.y3f{bottom:582.237600px;}
.ya4{bottom:582.400950px;}
.yba{bottom:582.757350px;}
.y87{bottom:587.493750px;}
.yb3{bottom:589.427700px;}
.y1ac{bottom:589.961550px;}
.yc2{bottom:589.968300px;}
.y6f{bottom:594.214050px;}
.ya3{bottom:597.399450px;}
.yb9{bottom:597.755850px;}
.y86{bottom:605.193750px;}
.y1ab{bottom:606.161550px;}
.yb2{bottom:607.427700px;}
.yc1{bottom:607.968300px;}
.y3e{bottom:609.147150px;}
.y6e{bottom:609.212550px;}
.y12{bottom:610.087200px;}
.ya2{bottom:612.397950px;}
.y1aa{bottom:622.361550px;}
.y85{bottom:622.893750px;}
.yb1{bottom:625.427700px;}
.yc0{bottom:625.968300px;}
.ya1{bottom:627.396450px;}
.y3d{bottom:627.537150px;}
.y11{bottom:628.087200px;}
.y84{bottom:640.593750px;}
.yb0{bottom:643.427700px;}
.y3c{bottom:645.927150px;}
.y1a0{bottom:646.686000px;}
.y146{bottom:648.428100px;}
.y10{bottom:650.339100px;}
.y1a1{bottom:651.181500px;}
.y138{bottom:652.086000px;}
.y1a9{bottom:655.569450px;}
.y139{bottom:656.581350px;}
.y83{bottom:658.293750px;}
.y193{bottom:660.694500px;}
.yaf{bottom:661.427700px;}
.y19f{bottom:662.886000px;}
.y145{bottom:663.426600px;}
.y3b{bottom:664.317150px;}
.y160{bottom:664.715850px;}
.ydc{bottom:665.268000px;}
.y137{bottom:668.286000px;}
.yf{bottom:668.339100px;}
.y161{bottom:669.211350px;}
.y1a8{bottom:673.569450px;}
.y82{bottom:675.993750px;}
.y144{bottom:678.425100px;}
.y192{bottom:678.693300px;}
.y19e{bottom:679.086000px;}
.yae{bottom:679.427700px;}
.ydb{bottom:680.266500px;}
.y15f{bottom:680.915850px;}
.y3a{bottom:682.707150px;}
.y136{bottom:684.486000px;}
.ye{bottom:686.339100px;}
.y1a7{bottom:691.569450px;}
.y81{bottom:693.693750px;}
.yda{bottom:695.265000px;}
.y19d{bottom:695.286000px;}
.y191{bottom:696.693300px;}
.y15e{bottom:697.115850px;}
.yad{bottom:697.427700px;}
.y135{bottom:700.686000px;}
.y39{bottom:701.097150px;}
.yd{bottom:704.339100px;}
.y80{bottom:711.393750px;}
.y19c{bottom:711.486000px;}
.y15d{bottom:713.315850px;}
.yac{bottom:715.427700px;}
.ye6{bottom:716.472150px;}
.y134{bottom:716.886000px;}
.y38{bottom:719.487150px;}
.yc{bottom:722.339100px;}
.y190{bottom:723.198300px;}
.yf4{bottom:724.893750px;}
.y19b{bottom:727.686000px;}
.y7f{bottom:729.093750px;}
.y15c{bottom:729.515850px;}
.y1b5{bottom:730.870650px;}
.ye5{bottom:731.470650px;}
.y133{bottom:733.086000px;}
.yab{bottom:733.427700px;}
.y37{bottom:737.881350px;}
.yb{bottom:740.339100px;}
.y18f{bottom:741.198300px;}
.yf3{bottom:742.893750px;}
.yfd{bottom:742.923750px;}
.y15b{bottom:745.715850px;}
.y1b4{bottom:745.869150px;}
.ye4{bottom:746.469150px;}
.y7e{bottom:746.793750px;}
.y132{bottom:749.286000px;}
.yaa{bottom:751.427700px;}
.y36{bottom:756.271350px;}
.ya{bottom:758.339100px;}
.y18e{bottom:759.198300px;}
.y14e{bottom:760.611900px;}
.y1b3{bottom:760.867650px;}
.yf2{bottom:760.893750px;}
.yfc{bottom:760.923750px;}
.ye3{bottom:761.467650px;}
.y7d{bottom:764.493750px;}
.y131{bottom:765.486000px;}
.ya9{bottom:769.427700px;}
.y35{bottom:774.665400px;}
.y1b2{bottom:775.866150px;}
.y9{bottom:776.339100px;}
.ye2{bottom:776.466150px;}
.y18d{bottom:777.198300px;}
.y14d{bottom:778.611900px;}
.yf1{bottom:778.893750px;}
.yfb{bottom:778.922700px;}
.y130{bottom:781.686000px;}
.y7c{bottom:782.193750px;}
.ya8{bottom:787.427700px;}
.ye1{bottom:791.467650px;}
.y34{bottom:793.055400px;}
.y18c{bottom:795.198300px;}
.y14c{bottom:796.611900px;}
.yf0{bottom:796.893750px;}
.yfa{bottom:796.922700px;}
.y7b{bottom:799.893750px;}
.ya7{bottom:805.427700px;}
.ye0{bottom:806.466150px;}
.y33{bottom:811.451550px;}
.y18b{bottom:813.198300px;}
.yef{bottom:814.893750px;}
.yf9{bottom:814.922700px;}
.y7a{bottom:817.593750px;}
.ya6{bottom:823.427700px;}
.y32{bottom:829.841550px;}
.y18a{bottom:831.198300px;}
.y14a{bottom:831.619800px;}
.yee{bottom:832.893750px;}
.y15a{bottom:832.922700px;}
.y79{bottom:835.293750px;}
.y14b{bottom:836.115300px;}
.ya5{bottom:841.427700px;}
.y149{bottom:847.819800px;}
.y31{bottom:848.231550px;}
.y189{bottom:849.198300px;}
.yed{bottom:850.893750px;}
.y159{bottom:850.922700px;}
.y78{bottom:852.993750px;}
.y63{bottom:859.427700px;}
.y4{bottom:860.671200px;}
.y148{bottom:864.019800px;}
.y30{bottom:866.621550px;}
.y188{bottom:867.198300px;}
.yec{bottom:868.893750px;}
.y158{bottom:868.922700px;}
.y77{bottom:870.692700px;}
.y62{bottom:877.427700px;}
.y147{bottom:880.219800px;}
.y187{bottom:885.198300px;}
.yeb{bottom:886.893750px;}
.y157{bottom:886.922700px;}
.y76{bottom:888.392700px;}
.y3{bottom:890.671200px;}
.y61{bottom:895.427700px;}
.y2f{bottom:902.021550px;}
.y2d{bottom:902.023350px;}
.y186{bottom:903.198300px;}
.yea{bottom:904.893750px;}
.y156{bottom:904.922700px;}
.y75{bottom:906.092700px;}
.y2e{bottom:906.517050px;}
.y60{bottom:913.427700px;}
.y2c{bottom:918.614850px;}
.ye9{bottom:922.893750px;}
.y155{bottom:922.922700px;}
.y74{bottom:923.792700px;}
.y5f{bottom:931.427700px;}
.y2b{bottom:935.206350px;}
.y184{bottom:938.206200px;}
.ye8{bottom:940.892700px;}
.y12f{bottom:940.893750px;}
.y154{bottom:940.922700px;}
.y73{bottom:941.492700px;}
.y185{bottom:942.701700px;}
.y5e{bottom:949.427700px;}
.y2a{bottom:951.797850px;}
.y183{bottom:954.406200px;}
.y8{bottom:956.746800px;}
.ye7{bottom:958.892700px;}
.y72{bottom:959.192700px;}
.y5d{bottom:967.427700px;}
.y181{bottom:970.606200px;}
.y182{bottom:975.101700px;}
.y29{bottom:985.397700px;}
.y5c{bottom:985.427700px;}
.y180{bottom:986.806200px;}
.y7{bottom:1001.728800px;}
.y2{bottom:1045.984350px;}
.y6{bottom:1046.710800px;}
.y5{bottom:1091.692800px;}
.h1c{height:27.407400px;}
.h11{height:27.408000px;}
.h10{height:28.459728px;}
.h15{height:40.023735px;}
.hc{height:40.023885px;}
.h13{height:42.768000px;}
.h12{height:43.392000px;}
.h1a{height:48.114000px;}
.hf{height:48.816000px;}
.h1b{height:48.816600px;}
.h14{height:49.302000px;}
.h19{height:53.460000px;}
.h3{height:54.240000px;}
.h18{height:54.244200px;}
.h1e{height:54.244800px;}
.h1d{height:54.261000px;}
.h8{height:54.780000px;}
.hb{height:54.978000px;}
.h17{height:58.042947px;}
.h2{height:58.042969px;}
.he{height:58.043165px;}
.h16{height:67.552709px;}
.hd{height:67.552962px;}
.h9{height:90.000000px;}
.ha{height:92.430000px;}
.h5{height:106.412109px;}
.h4{height:115.804688px;}
.h7{height:162.000000px;}
.h6{height:174.128906px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w3{width:106.299000px;}
.w4{width:106.299150px;}
.w2{width:106.299300px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xc{left:21.259800px;}
.xd{left:106.299300px;}
.x31{left:109.944750px;}
.x3d{left:115.240725px;}
.x2a{left:116.407500px;}
.xa{left:127.559100px;}
.x18{left:131.715150px;}
.x3b{left:133.056975px;}
.x28{left:137.897100px;}
.x1f{left:141.111900px;}
.x20{left:143.234775px;}
.x26{left:144.501675px;}
.xb{left:146.977350px;}
.x7{left:150.037650px;}
.x37{left:153.824625px;}
.x6{left:161.269650px;}
.x47{left:164.607825px;}
.x38{left:166.485750px;}
.x3a{left:177.453750px;}
.x40{left:187.722375px;}
.x4b{left:190.280850px;}
.xe{left:191.338650px;}
.x36{left:192.438000px;}
.x27{left:196.506375px;}
.x43{left:202.278300px;}
.x17{left:205.446750px;}
.x21{left:211.419225px;}
.x2e{left:212.598450px;}
.x33{left:215.572125px;}
.x4a{left:219.771600px;}
.x9{left:221.096400px;}
.x23{left:223.359750px;}
.x3f{left:227.322600px;}
.x22{left:248.811300px;}
.x15{left:254.384700px;}
.x39{left:263.805225px;}
.x4c{left:271.695975px;}
.x44{left:273.297075px;}
.x32{left:274.886400px;}
.x19{left:280.959000px;}
.x35{left:282.518400px;}
.x2b{left:284.665425px;}
.x34{left:292.961475px;}
.x24{left:302.078250px;}
.x2c{left:308.051850px;}
.x16{left:310.626600px;}
.x48{left:315.079500px;}
.x11{left:329.845650px;}
.x12{left:346.266375px;}
.x13{left:360.610125px;}
.x45{left:388.807650px;}
.x46{left:396.246900px;}
.x8{left:408.514050px;}
.x5{left:421.887150px;}
.x1a{left:429.649800px;}
.x1b{left:441.905100px;}
.x1d{left:454.504650px;}
.x29{left:457.625025px;}
.x49{left:462.804900px;}
.x1c{left:476.720250px;}
.xf{left:479.485650px;}
.x10{left:483.138300px;}
.x3{left:492.643050px;}
.x1e{left:525.118050px;}
.x4{left:544.747500px;}
.x2d{left:574.418100px;}
.x3c{left:587.728800px;}
.x25{left:595.624650px;}
.x2{left:661.972950px;}
.x41{left:669.953400px;}
.x42{left:677.124900px;}
.x14{left:680.314500px;}
.x1{left:686.782800px;}
.x2f{left:690.381000px;}
.x3e{left:694.269450px;}
.x30{left:697.552500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v4{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.759467pt;}
.v1{vertical-align:35.520000pt;}
.ls3{letter-spacing:-3.840000pt;}
.ls4{letter-spacing:-2.133333pt;}
.ls5{letter-spacing:-1.243733pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.746669pt;}
.lsd{letter-spacing:-0.746666pt;}
.ls1c{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.621867pt;}
.ls15{letter-spacing:-0.559680pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.466400pt;}
.lse{letter-spacing:-0.310933pt;}
.lsf{letter-spacing:-0.279840pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.155467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011922pt;}
.ls0{letter-spacing:0.015238pt;}
.ls11{letter-spacing:0.155467pt;}
.ls10{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.466400pt;}
.ls17{letter-spacing:0.621867pt;}
.ls18{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.066667pt;}
.lsb{letter-spacing:49.408000pt;}
.ls7{letter-spacing:63.232000pt;}
.ws1{word-spacing:-21.354667pt;}
.ws91{word-spacing:-15.093333pt;}
.ws2{word-spacing:-14.948267pt;}
.ws3{word-spacing:-14.826667pt;}
.ws19{word-spacing:-14.293333pt;}
.ws1a{word-spacing:-14.026667pt;}
.ws4{word-spacing:-10.378667pt;}
.ws5{word-spacing:-10.074240pt;}
.wsb6{word-spacing:-9.265813pt;}
.wsba{word-spacing:-9.110347pt;}
.ws90{word-spacing:-8.799413pt;}
.ws6{word-spacing:-8.643947pt;}
.wsaa{word-spacing:-8.488480pt;}
.ws80{word-spacing:-8.333013pt;}
.ws41{word-spacing:-8.177547pt;}
.wscc{word-spacing:-8.022080pt;}
.ws1b{word-spacing:-6.915157pt;}
.wsf2{word-spacing:-4.906667pt;}
.wsea{word-spacing:-4.640000pt;}
.wsfb{word-spacing:-3.925333pt;}
.ws7f{word-spacing:-3.552000pt;}
.ws59{word-spacing:-3.253333pt;}
.ws12{word-spacing:-3.146667pt;}
.ws8b{word-spacing:-3.029333pt;}
.ws50{word-spacing:-2.880000pt;}
.ws96{word-spacing:-2.773333pt;}
.wsd8{word-spacing:-2.720000pt;}
.wsd9{word-spacing:-2.666667pt;}
.wsd7{word-spacing:-2.645333pt;}
.wse6{word-spacing:-2.592000pt;}
.ws17{word-spacing:-2.560000pt;}
.ws5f{word-spacing:-2.453333pt;}
.ws26{word-spacing:-2.400000pt;}
.wsdd{word-spacing:-2.352000pt;}
.wsa{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.304000pt;}
.ws27{word-spacing:-2.293333pt;}
.wse3{word-spacing:-2.208000pt;}
.ws97{word-spacing:-2.186667pt;}
.wse5{word-spacing:-2.133333pt;}
.wsd1{word-spacing:-2.112000pt;}
.ws48{word-spacing:-2.080000pt;}
.wsb3{word-spacing:-2.064000pt;}
.ws8a{word-spacing:-2.048000pt;}
.ws24{word-spacing:-2.026667pt;}
.ws63{word-spacing:-1.973333pt;}
.wsdb{word-spacing:-1.920000pt;}
.ws44{word-spacing:-1.866667pt;}
.wsf9{word-spacing:-1.824000pt;}
.ws3f{word-spacing:-1.792000pt;}
.wscb{word-spacing:-1.776000pt;}
.ws16{word-spacing:-1.760000pt;}
.wsa4{word-spacing:-1.664000pt;}
.wsef{word-spacing:-1.653333pt;}
.wsb1{word-spacing:-1.632000pt;}
.wsdf{word-spacing:-1.600000pt;}
.wsdc{word-spacing:-1.584000pt;}
.wsa9{word-spacing:-1.578667pt;}
.ws94{word-spacing:-1.546667pt;}
.ws47{word-spacing:-1.493333pt;}
.ws8c{word-spacing:-1.450667pt;}
.wscd{word-spacing:-1.440000pt;}
.wsda{word-spacing:-1.392000pt;}
.ws38{word-spacing:-1.365333pt;}
.wsad{word-spacing:-1.333333pt;}
.wsc8{word-spacing:-1.322667pt;}
.wsd2{word-spacing:-1.226667pt;}
.ws81{word-spacing:-1.200000pt;}
.ws4d{word-spacing:-1.152000pt;}
.ws85{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.024000pt;}
.wsab{word-spacing:-1.013333pt;}
.wsde{word-spacing:-1.008000pt;}
.ws6d{word-spacing:-0.981333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.938667pt;}
.ws9f{word-spacing:-0.906667pt;}
.ws45{word-spacing:-0.853333pt;}
.ws58{word-spacing:-0.800000pt;}
.ws6b{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.746667pt;}
.wse1{word-spacing:-0.693333pt;}
.wsb2{word-spacing:-0.672000pt;}
.wsd{word-spacing:-0.586667pt;}
.wsa0{word-spacing:-0.533333pt;}
.wsa1{word-spacing:-0.480000pt;}
.wsbf{word-spacing:-0.432000pt;}
.ws23{word-spacing:-0.426667pt;}
.wscf{word-spacing:-0.384000pt;}
.ws65{word-spacing:-0.373333pt;}
.wse8{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.298667pt;}
.ws8f{word-spacing:-0.288000pt;}
.ws37{word-spacing:-0.266667pt;}
.ws40{word-spacing:-0.213333pt;}
.wsc2{word-spacing:-0.192000pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws61{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.042667pt;}
.ws7b{word-spacing:0.053333pt;}
.wsc5{word-spacing:0.085333pt;}
.wsb7{word-spacing:0.106667pt;}
.wsa6{word-spacing:0.160000pt;}
.wsae{word-spacing:0.192000pt;}
.ws70{word-spacing:0.213333pt;}
.ws39{word-spacing:0.256000pt;}
.ws9d{word-spacing:0.266667pt;}
.ws84{word-spacing:0.279840pt;}
.wse{word-spacing:0.320000pt;}
.ws46{word-spacing:0.373333pt;}
.wsf6{word-spacing:0.384000pt;}
.wsce{word-spacing:0.426667pt;}
.wsa8{word-spacing:0.432000pt;}
.wsfa{word-spacing:0.480000pt;}
.wsd6{word-spacing:0.512000pt;}
.wsb4{word-spacing:0.528000pt;}
.ws88{word-spacing:0.533333pt;}
.wsb5{word-spacing:0.559680pt;}
.ws28{word-spacing:0.586667pt;}
.ws4a{word-spacing:0.597333pt;}
.wsf{word-spacing:0.640000pt;}
.wsf4{word-spacing:0.672000pt;}
.wsd5{word-spacing:0.682667pt;}
.ws98{word-spacing:0.693333pt;}
.ws69{word-spacing:0.725333pt;}
.ws73{word-spacing:0.746667pt;}
.ws6e{word-spacing:0.768000pt;}
.ws22{word-spacing:0.800000pt;}
.wsc9{word-spacing:0.810667pt;}
.ws57{word-spacing:0.906667pt;}
.wsf7{word-spacing:0.912000pt;}
.wse9{word-spacing:0.960000pt;}
.wsed{word-spacing:0.981333pt;}
.ws32{word-spacing:1.013333pt;}
.ws68{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.109333pt;}
.wsac{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws20{word-spacing:1.173333pt;}
.wsb8{word-spacing:1.226667pt;}
.wsd3{word-spacing:1.280000pt;}
.wsc7{word-spacing:1.322667pt;}
.ws56{word-spacing:1.333333pt;}
.wsc3{word-spacing:1.344000pt;}
.ws5e{word-spacing:1.386667pt;}
.ws82{word-spacing:1.392000pt;}
.ws4c{word-spacing:1.408000pt;}
.ws9{word-spacing:1.440000pt;}
.ws2a{word-spacing:1.546667pt;}
.ws99{word-spacing:1.653333pt;}
.ws8e{word-spacing:1.664000pt;}
.ws93{word-spacing:1.706667pt;}
.ws83{word-spacing:1.728000pt;}
.ws51{word-spacing:1.760000pt;}
.wsf8{word-spacing:1.776000pt;}
.ws21{word-spacing:1.813333pt;}
.wsbd{word-spacing:1.866667pt;}
.wsc0{word-spacing:1.968000pt;}
.wsa3{word-spacing:1.973333pt;}
.wsf0{word-spacing:2.026667pt;}
.ws3c{word-spacing:2.048000pt;}
.wse4{word-spacing:2.064000pt;}
.wsa5{word-spacing:2.080000pt;}
.ws10{word-spacing:2.133333pt;}
.ws86{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.346667pt;}
.wsb0{word-spacing:2.352000pt;}
.wse2{word-spacing:2.453333pt;}
.ws9b{word-spacing:2.506667pt;}
.ws92{word-spacing:2.560000pt;}
.ws9c{word-spacing:2.613333pt;}
.wsc4{word-spacing:2.640000pt;}
.wsc6{word-spacing:2.730667pt;}
.wsec{word-spacing:2.773333pt;}
.wsd0{word-spacing:2.880000pt;}
.ws89{word-spacing:2.901333pt;}
.wsa7{word-spacing:2.928000pt;}
.wsaf{word-spacing:3.024000pt;}
.ws4b{word-spacing:3.029333pt;}
.ws7c{word-spacing:3.093333pt;}
.wse7{word-spacing:3.120000pt;}
.ws49{word-spacing:3.157333pt;}
.wsc1{word-spacing:3.168000pt;}
.ws14{word-spacing:3.253333pt;}
.wsb9{word-spacing:3.413333pt;}
.wsd4{word-spacing:3.456000pt;}
.wsbc{word-spacing:3.466667pt;}
.ws1d{word-spacing:3.504000pt;}
.wse0{word-spacing:3.520000pt;}
.ws3d{word-spacing:3.626667pt;}
.wsa2{word-spacing:3.680000pt;}
.wsf3{word-spacing:3.744000pt;}
.wsf1{word-spacing:3.786667pt;}
.ws1c{word-spacing:3.792000pt;}
.ws8{word-spacing:3.840000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws13{word-spacing:4.000000pt;}
.ws7e{word-spacing:4.053333pt;}
.ws64{word-spacing:4.160000pt;}
.ws42{word-spacing:4.213333pt;}
.ws95{word-spacing:4.426667pt;}
.ws18{word-spacing:4.480000pt;}
.wsbb{word-spacing:4.533333pt;}
.ws2e{word-spacing:4.586667pt;}
.ws33{word-spacing:4.640000pt;}
.wsb{word-spacing:4.693333pt;}
.wsbe{word-spacing:4.746667pt;}
.ws9a{word-spacing:4.800000pt;}
.ws66{word-spacing:4.906667pt;}
.ws3a{word-spacing:4.992000pt;}
.ws71{word-spacing:5.066667pt;}
.ws43{word-spacing:5.120000pt;}
.ws78{word-spacing:5.173333pt;}
.ws79{word-spacing:5.226667pt;}
.wsf5{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.333333pt;}
.ws87{word-spacing:5.706667pt;}
.ws34{word-spacing:5.760000pt;}
.ws67{word-spacing:5.845333pt;}
.ws62{word-spacing:5.866667pt;}
.wseb{word-spacing:5.973333pt;}
.ws5d{word-spacing:6.080000pt;}
.ws54{word-spacing:6.240000pt;}
.ws15{word-spacing:6.773333pt;}
.wsee{word-spacing:6.933333pt;}
.ws11{word-spacing:7.040000pt;}
.ws60{word-spacing:7.413333pt;}
.ws55{word-spacing:7.466667pt;}
.ws4f{word-spacing:7.520000pt;}
.ws52{word-spacing:7.840000pt;}
.wsc{word-spacing:8.160000pt;}
.ws76{word-spacing:8.533333pt;}
.ws53{word-spacing:8.640000pt;}
.ws5c{word-spacing:8.746667pt;}
.ws7d{word-spacing:8.906667pt;}
.ws2b{word-spacing:10.400000pt;}
.ws31{word-spacing:10.560000pt;}
.ws30{word-spacing:11.413333pt;}
.ws6f{word-spacing:11.466667pt;}
.ws36{word-spacing:11.733333pt;}
.ws77{word-spacing:11.840000pt;}
.ws72{word-spacing:12.000000pt;}
.ws75{word-spacing:12.480000pt;}
.ws2d{word-spacing:12.586667pt;}
.ws2c{word-spacing:13.226667pt;}
.ws2f{word-spacing:14.346667pt;}
.ws7a{word-spacing:17.813333pt;}
.ws74{word-spacing:23.733333pt;}
.ws35{word-spacing:28.586667pt;}
._4{margin-left:-34.444800pt;}
._6{margin-left:-33.383162pt;}
._2{margin-left:-7.591924pt;}
._f{margin-left:-5.546667pt;}
._1{margin-left:-4.619276pt;}
._0{margin-left:-3.450362pt;}
._5{margin-left:-2.503924pt;}
._8{margin-left:-0.960000pt;}
._c{width:0.967642pt;}
._b{width:2.008838pt;}
._3{width:3.840000pt;}
._14{width:4.906667pt;}
._12{width:5.845333pt;}
._a{width:7.711848pt;}
._e{width:31.304471pt;}
._10{width:34.553806pt;}
._7{width:37.053804pt;}
._9{width:38.190413pt;}
._13{width:49.407920pt;}
._11{width:63.231960pt;}
._d{width:118.224000pt;}
.fsf{font-size:24.874667pt;}
.fse{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs2{font-size:37.333333pt;}
.fs10{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:62.186667pt;}
.fs12{font-size:63.999976pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.000216pt;}
.fs11{font-size:74.666639pt;}
.fsb{font-size:74.666919pt;}
.fs5{font-size:82.133333pt;}
.fs7{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs3{font-size:128.000000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:4.703347pt;}
.y71{bottom:13.333328pt;}
.y28{bottom:13.333378pt;}
.y70{bottom:17.126127pt;}
.y27{bottom:17.126191pt;}
.y1{bottom:56.692933pt;}
.y6b{bottom:94.488133pt;}
.yb8{bottom:94.488267pt;}
.y12c{bottom:94.489467pt;}
.ydf{bottom:94.490800pt;}
.yd9{bottom:98.040133pt;}
.y58{bottom:98.040267pt;}
.y113{bottom:98.040400pt;}
.y6a{bottom:107.288133pt;}
.yb7{bottom:107.288267pt;}
.y12b{bottom:107.821467pt;}
.yde{bottom:107.822800pt;}
.ya0{bottom:110.840133pt;}
.y17d{bottom:111.067733pt;}
.y57{bottom:111.068000pt;}
.yd8{bottom:114.619733pt;}
.y141{bottom:114.619867pt;}
.y112{bottom:114.620000pt;}
.y25{bottom:115.485333pt;}
.y69{bottom:120.088133pt;}
.ydd{bottom:121.154800pt;}
.y151{bottom:123.640133pt;}
.yb6{bottom:123.640267pt;}
.y9f{bottom:123.867733pt;}
.y198{bottom:127.419733pt;}
.y56{bottom:127.420000pt;}
.yd7{bottom:127.647200pt;}
.y1a3{bottom:127.647333pt;}
.y140{bottom:127.647467pt;}
.y24{bottom:130.445333pt;}
.yf6{bottom:131.199200pt;}
.y111{bottom:131.199600pt;}
.y68{bottom:136.440133pt;}
.y9e{bottom:140.219733pt;}
.y150{bottom:140.219867pt;}
.y13f{bottom:140.447467pt;}
.yd6{bottom:143.999200pt;}
.y1a2{bottom:143.999333pt;}
.y55{bottom:143.999600pt;}
.y23{bottom:145.405333pt;}
.yf5{bottom:147.778800pt;}
.y110{bottom:147.779333pt;}
.y67{bottom:149.467733pt;}
.y13e{bottom:153.247467pt;}
.y9d{bottom:156.799200pt;}
.y17c{bottom:156.799333pt;}
.yd5{bottom:157.026800pt;}
.y54{bottom:157.027333pt;}
.y22{bottom:160.365333pt;}
.yfe{bottom:160.578800pt;}
.y66{bottom:162.267733pt;}
.y163{bottom:165.250667pt;}
.y13d{bottom:166.047467pt;}
.y12e{bottom:170.845067pt;}
.y9c{bottom:173.378800pt;}
.y17b{bottom:173.379067pt;}
.y53{bottom:173.379333pt;}
.y21{bottom:175.325333pt;}
.y197{bottom:177.158267pt;}
.y162{bottom:178.582667pt;}
.y65{bottom:178.619733pt;}
.y13c{bottom:178.847467pt;}
.y14f{bottom:182.399467pt;}
.y12d{bottom:184.177067pt;}
.y9b{bottom:186.406267pt;}
.y52{bottom:186.406933pt;}
.y196{bottom:190.185733pt;}
.y20{bottom:190.285333pt;}
.y13b{bottom:191.647467pt;}
.yf8{bottom:193.702133pt;}
.y1a6{bottom:194.648400pt;}
.y10e{bottom:194.950933pt;}
.y125{bottom:194.982533pt;}
.y64{bottom:195.199200pt;}
.y16a{bottom:198.135733pt;}
.y10f{bottom:198.946933pt;}
.y126{bottom:198.978533pt;}
.ybf{bottom:198.994000pt;}
.y9a{bottom:199.206267pt;}
.yd4{bottom:202.758267pt;}
.y51{bottom:202.758933pt;}
.y1f{bottom:205.245333pt;}
.y195{bottom:206.537867pt;}
.yf7{bottom:207.034133pt;}
.y1a5{bottom:207.980400pt;}
.y13a{bottom:207.999467pt;}
.y10d{bottom:209.350933pt;}
.y124{bottom:209.382533pt;}
.y100{bottom:211.549467pt;}
.ybe{bottom:212.326000pt;}
.y169{bottom:214.135733pt;}
.y99{bottom:215.558267pt;}
.yd3{bottom:215.785867pt;}
.y50{bottom:215.786533pt;}
.y1a4{bottom:221.312400pt;}
.y194{bottom:223.117333pt;}
.y10c{bottom:223.750933pt;}
.y123{bottom:223.782533pt;}
.yff{bottom:224.881467pt;}
.ybd{bottom:225.658000pt;}
.y168{bottom:230.135733pt;}
.y98{bottom:232.137733pt;}
.yd2{bottom:232.137867pt;}
.y4f{bottom:232.138533pt;}
.y153{bottom:234.227067pt;}
.y17a{bottom:237.985067pt;}
.y122{bottom:238.182533pt;}
.y97{bottom:245.165333pt;}
.yd1{bottom:245.165467pt;}
.y4e{bottom:245.166267pt;}
.y167{bottom:246.135733pt;}
.y6d{bottom:246.299200pt;}
.y152{bottom:247.559067pt;}
.y179{bottom:252.385067pt;}
.y121{bottom:252.582533pt;}
.y10b{bottom:253.269067pt;}
.y143{bottom:257.009200pt;}
.y4d{bottom:257.966267pt;}
.y6c{bottom:259.631200pt;}
.y96{bottom:261.517333pt;}
.yd0{bottom:261.517467pt;}
.y166{bottom:262.135733pt;}
.y178{bottom:266.785067pt;}
.y120{bottom:266.982533pt;}
.y10a{bottom:269.269067pt;}
.y142{bottom:270.341200pt;}
.y4c{bottom:274.318267pt;}
.y95{bottom:274.544800pt;}
.y19a{bottom:274.856933pt;}
.y165{bottom:278.135733pt;}
.y11f{bottom:281.382533pt;}
.y109{bottom:285.269067pt;}
.y94{bottom:287.344800pt;}
.y199{bottom:288.188933pt;}
.y1e{bottom:295.748533pt;}
.y11e{bottom:295.782533pt;}
.y177{bottom:296.303200pt;}
.y93{bottom:300.144800pt;}
.y108{bottom:301.269067pt;}
.y164{bottom:301.695733pt;}
.ycf{bottom:310.180133pt;}
.y1d{bottom:311.748533pt;}
.y176{bottom:312.303200pt;}
.y92{bottom:312.944800pt;}
.y107{bottom:317.269067pt;}
.y5b{bottom:320.947467pt;}
.y4b{bottom:321.384533pt;}
.y11d{bottom:325.300533pt;}
.y91{bottom:325.744800pt;}
.yce{bottom:326.180133pt;}
.y175{bottom:328.303200pt;}
.y1c{bottom:331.528000pt;}
.y106{bottom:333.269067pt;}
.y5a{bottom:334.279467pt;}
.y4a{bottom:337.731200pt;}
.y11c{bottom:341.300533pt;}
.y90{bottom:342.096800pt;}
.ycd{bottom:342.180133pt;}
.y174{bottom:344.303200pt;}
.y1b{bottom:347.528133pt;}
.y59{bottom:347.611467pt;}
.y16c{bottom:349.502533pt;}
.y49{bottom:354.077867pt;}
.y105{bottom:356.828133pt;}
.y11b{bottom:357.300533pt;}
.ycc{bottom:358.180133pt;}
.y173{bottom:360.303200pt;}
.y16b{bottom:362.834533pt;}
.y1a{bottom:363.528133pt;}
.y48{bottom:370.424533pt;}
.y104{bottom:372.828133pt;}
.y11a{bottom:373.300533pt;}
.ycb{bottom:374.180133pt;}
.y172{bottom:376.303200pt;}
.y19{bottom:379.528133pt;}
.y47{bottom:386.771200pt;}
.y103{bottom:388.828133pt;}
.y119{bottom:389.300533pt;}
.y171{bottom:392.303200pt;}
.y18{bottom:395.528133pt;}
.y8f{bottom:396.350000pt;}
.y46{bottom:403.117867pt;}
.y102{bottom:404.828133pt;}
.yc9{bottom:405.298267pt;}
.y118{bottom:405.300533pt;}
.y170{bottom:408.303200pt;}
.yca{bottom:409.294133pt;}
.y17{bottom:411.528133pt;}
.y8e{bottom:412.083333pt;}
.y45{bottom:419.464533pt;}
.yc8{bottom:419.698267pt;}
.y101{bottom:420.828133pt;}
.y117{bottom:421.300533pt;}
.y16f{bottom:424.303200pt;}
.y16{bottom:427.528133pt;}
.y8d{bottom:427.816667pt;}
.yc7{bottom:434.098133pt;}
.y44{bottom:435.811200pt;}
.y116{bottom:437.300533pt;}
.y16e{bottom:440.303200pt;}
.y15{bottom:443.528133pt;}
.y8c{bottom:443.550000pt;}
.yc6{bottom:448.498133pt;}
.y43{bottom:452.157867pt;}
.y16d{bottom:456.303200pt;}
.y115{bottom:459.108933pt;}
.y8b{bottom:459.283333pt;}
.yc5{bottom:462.898133pt;}
.y1b0{bottom:466.810267pt;}
.y14{bottom:467.087067pt;}
.y42{bottom:468.504533pt;}
.y1b1{bottom:470.806267pt;}
.y128{bottom:472.232267pt;}
.y114{bottom:472.440933pt;}
.y8a{bottom:475.016667pt;}
.y12a{bottom:479.791467pt;}
.y1af{bottom:481.210267pt;}
.y41{bottom:484.851200pt;}
.y127{bottom:485.564267pt;}
.y89{bottom:490.750000pt;}
.y13{bottom:491.087067pt;}
.y17f{bottom:491.234933pt;}
.ybc{bottom:491.342533pt;}
.yb5{bottom:491.935733pt;}
.yc4{bottom:492.416267pt;}
.y129{bottom:493.123467pt;}
.y1ae{bottom:495.610267pt;}
.y40{bottom:501.197867pt;}
.y17e{bottom:504.566933pt;}
.ybb{bottom:504.674533pt;}
.y88{bottom:506.483333pt;}
.yb4{bottom:507.935733pt;}
.yc3{bottom:508.416267pt;}
.y1ad{bottom:510.010267pt;}
.y3f{bottom:517.544533pt;}
.ya4{bottom:517.689733pt;}
.yba{bottom:518.006533pt;}
.y87{bottom:522.216667pt;}
.yb3{bottom:523.935733pt;}
.y1ac{bottom:524.410267pt;}
.yc2{bottom:524.416267pt;}
.y6f{bottom:528.190267pt;}
.ya3{bottom:531.021733pt;}
.yb9{bottom:531.338533pt;}
.y86{bottom:537.950000pt;}
.y1ab{bottom:538.810267pt;}
.yb2{bottom:539.935733pt;}
.yc1{bottom:540.416267pt;}
.y3e{bottom:541.464133pt;}
.y6e{bottom:541.522267pt;}
.y12{bottom:542.299733pt;}
.ya2{bottom:544.353733pt;}
.y1aa{bottom:553.210267pt;}
.y85{bottom:553.683333pt;}
.yb1{bottom:555.935733pt;}
.yc0{bottom:556.416267pt;}
.ya1{bottom:557.685733pt;}
.y3d{bottom:557.810800pt;}
.y11{bottom:558.299733pt;}
.y84{bottom:569.416667pt;}
.yb0{bottom:571.935733pt;}
.y3c{bottom:574.157467pt;}
.y1a0{bottom:574.832000pt;}
.y146{bottom:576.380533pt;}
.y10{bottom:578.079200pt;}
.y1a1{bottom:578.828000pt;}
.y138{bottom:579.632000pt;}
.y1a9{bottom:582.728400pt;}
.y139{bottom:583.627867pt;}
.y83{bottom:585.150000pt;}
.y193{bottom:587.284000pt;}
.yaf{bottom:587.935733pt;}
.y19f{bottom:589.232000pt;}
.y145{bottom:589.712533pt;}
.y3b{bottom:590.504133pt;}
.y160{bottom:590.858533pt;}
.ydc{bottom:591.349333pt;}
.y137{bottom:594.032000pt;}
.yf{bottom:594.079200pt;}
.y161{bottom:594.854533pt;}
.y1a8{bottom:598.728400pt;}
.y82{bottom:600.883333pt;}
.y144{bottom:603.044533pt;}
.y192{bottom:603.282933pt;}
.y19e{bottom:603.632000pt;}
.yae{bottom:603.935733pt;}
.ydb{bottom:604.681333pt;}
.y15f{bottom:605.258533pt;}
.y3a{bottom:606.850800pt;}
.y136{bottom:608.432000pt;}
.ye{bottom:610.079200pt;}
.y1a7{bottom:614.728400pt;}
.y81{bottom:616.616667pt;}
.yda{bottom:618.013333pt;}
.y19d{bottom:618.032000pt;}
.y191{bottom:619.282933pt;}
.y15e{bottom:619.658533pt;}
.yad{bottom:619.935733pt;}
.y135{bottom:622.832000pt;}
.y39{bottom:623.197467pt;}
.yd{bottom:626.079200pt;}
.y80{bottom:632.350000pt;}
.y19c{bottom:632.432000pt;}
.y15d{bottom:634.058533pt;}
.yac{bottom:635.935733pt;}
.ye6{bottom:636.864133pt;}
.y134{bottom:637.232000pt;}
.y38{bottom:639.544133pt;}
.yc{bottom:642.079200pt;}
.y190{bottom:642.842933pt;}
.yf4{bottom:644.350000pt;}
.y19b{bottom:646.832000pt;}
.y7f{bottom:648.083333pt;}
.y15c{bottom:648.458533pt;}
.y1b5{bottom:649.662800pt;}
.ye5{bottom:650.196133pt;}
.y133{bottom:651.632000pt;}
.yab{bottom:651.935733pt;}
.y37{bottom:655.894533pt;}
.yb{bottom:658.079200pt;}
.y18f{bottom:658.842933pt;}
.yf3{bottom:660.350000pt;}
.yfd{bottom:660.376667pt;}
.y15b{bottom:662.858533pt;}
.y1b4{bottom:662.994800pt;}
.ye4{bottom:663.528133pt;}
.y7e{bottom:663.816667pt;}
.y132{bottom:666.032000pt;}
.yaa{bottom:667.935733pt;}
.y36{bottom:672.241200pt;}
.ya{bottom:674.079200pt;}
.y18e{bottom:674.842933pt;}
.y14e{bottom:676.099467pt;}
.y1b3{bottom:676.326800pt;}
.yf2{bottom:676.350000pt;}
.yfc{bottom:676.376667pt;}
.ye3{bottom:676.860133pt;}
.y7d{bottom:679.550000pt;}
.y131{bottom:680.432000pt;}
.ya9{bottom:683.935733pt;}
.y35{bottom:688.591467pt;}
.y1b2{bottom:689.658800pt;}
.y9{bottom:690.079200pt;}
.ye2{bottom:690.192133pt;}
.y18d{bottom:690.842933pt;}
.y14d{bottom:692.099467pt;}
.yf1{bottom:692.350000pt;}
.yfb{bottom:692.375733pt;}
.y130{bottom:694.832000pt;}
.y7c{bottom:695.283333pt;}
.ya8{bottom:699.935733pt;}
.ye1{bottom:703.526800pt;}
.y34{bottom:704.938133pt;}
.y18c{bottom:706.842933pt;}
.y14c{bottom:708.099467pt;}
.yf0{bottom:708.350000pt;}
.yfa{bottom:708.375733pt;}
.y7b{bottom:711.016667pt;}
.ya7{bottom:715.935733pt;}
.ye0{bottom:716.858800pt;}
.y33{bottom:721.290267pt;}
.y18b{bottom:722.842933pt;}
.yef{bottom:724.350000pt;}
.yf9{bottom:724.375733pt;}
.y7a{bottom:726.750000pt;}
.ya6{bottom:731.935733pt;}
.y32{bottom:737.636933pt;}
.y18a{bottom:738.842933pt;}
.y14a{bottom:739.217600pt;}
.yee{bottom:740.350000pt;}
.y15a{bottom:740.375733pt;}
.y79{bottom:742.483333pt;}
.y14b{bottom:743.213600pt;}
.ya5{bottom:747.935733pt;}
.y149{bottom:753.617600pt;}
.y31{bottom:753.983600pt;}
.y189{bottom:754.842933pt;}
.yed{bottom:756.350000pt;}
.y159{bottom:756.375733pt;}
.y78{bottom:758.216667pt;}
.y63{bottom:763.935733pt;}
.y4{bottom:765.041067pt;}
.y148{bottom:768.017600pt;}
.y30{bottom:770.330267pt;}
.y188{bottom:770.842933pt;}
.yec{bottom:772.350000pt;}
.y158{bottom:772.375733pt;}
.y77{bottom:773.949067pt;}
.y62{bottom:779.935733pt;}
.y147{bottom:782.417600pt;}
.y187{bottom:786.842933pt;}
.yeb{bottom:788.350000pt;}
.y157{bottom:788.375733pt;}
.y76{bottom:789.682400pt;}
.y3{bottom:791.707733pt;}
.y61{bottom:795.935733pt;}
.y2f{bottom:801.796933pt;}
.y2d{bottom:801.798533pt;}
.y186{bottom:802.842933pt;}
.yea{bottom:804.350000pt;}
.y156{bottom:804.375733pt;}
.y75{bottom:805.415733pt;}
.y2e{bottom:805.792933pt;}
.y60{bottom:811.935733pt;}
.y2c{bottom:816.546533pt;}
.ye9{bottom:820.350000pt;}
.y155{bottom:820.375733pt;}
.y74{bottom:821.149067pt;}
.y5f{bottom:827.935733pt;}
.y2b{bottom:831.294533pt;}
.y184{bottom:833.961067pt;}
.ye8{bottom:836.349067pt;}
.y12f{bottom:836.350000pt;}
.y154{bottom:836.375733pt;}
.y73{bottom:836.882400pt;}
.y185{bottom:837.957067pt;}
.y5e{bottom:843.935733pt;}
.y2a{bottom:846.042533pt;}
.y183{bottom:848.361067pt;}
.y8{bottom:850.441600pt;}
.ye7{bottom:852.349067pt;}
.y72{bottom:852.615733pt;}
.y5d{bottom:859.935733pt;}
.y181{bottom:862.761067pt;}
.y182{bottom:866.757067pt;}
.y29{bottom:875.909067pt;}
.y5c{bottom:875.935733pt;}
.y180{bottom:877.161067pt;}
.y7{bottom:890.425600pt;}
.y2{bottom:929.763867pt;}
.y6{bottom:930.409600pt;}
.y5{bottom:970.393600pt;}
.h1c{height:24.362133pt;}
.h11{height:24.362667pt;}
.h10{height:25.297536pt;}
.h15{height:35.576653pt;}
.hc{height:35.576787pt;}
.h13{height:38.016000pt;}
.h12{height:38.570667pt;}
.h1a{height:42.768000pt;}
.hf{height:43.392000pt;}
.h1b{height:43.392533pt;}
.h14{height:43.824000pt;}
.h19{height:47.520000pt;}
.h3{height:48.213333pt;}
.h18{height:48.217067pt;}
.h1e{height:48.217600pt;}
.h1d{height:48.232000pt;}
.h8{height:48.693333pt;}
.hb{height:48.869333pt;}
.h17{height:51.593731pt;}
.h2{height:51.593750pt;}
.he{height:51.593924pt;}
.h16{height:60.046852pt;}
.hd{height:60.047078pt;}
.h9{height:80.000000pt;}
.ha{height:82.160000pt;}
.h5{height:94.588542pt;}
.h4{height:102.937500pt;}
.h7{height:144.000000pt;}
.h6{height:154.781250pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w3{width:94.488000pt;}
.w4{width:94.488133pt;}
.w2{width:94.488267pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xc{left:18.897600pt;}
.xd{left:94.488267pt;}
.x31{left:97.728667pt;}
.x3d{left:102.436200pt;}
.x2a{left:103.473333pt;}
.xa{left:113.385867pt;}
.x18{left:117.080133pt;}
.x3b{left:118.272867pt;}
.x28{left:122.575200pt;}
.x1f{left:125.432800pt;}
.x20{left:127.319800pt;}
.x26{left:128.445933pt;}
.xb{left:130.646533pt;}
.x7{left:133.366800pt;}
.x37{left:136.733000pt;}
.x6{left:143.350800pt;}
.x47{left:146.318067pt;}
.x38{left:147.987333pt;}
.x3a{left:157.736667pt;}
.x40{left:166.864333pt;}
.x4b{left:169.138533pt;}
.xe{left:170.078800pt;}
.x36{left:171.056000pt;}
.x27{left:174.672333pt;}
.x43{left:179.802933pt;}
.x17{left:182.619333pt;}
.x21{left:187.928200pt;}
.x2e{left:188.976400pt;}
.x33{left:191.619667pt;}
.x4a{left:195.352533pt;}
.x9{left:196.530133pt;}
.x23{left:198.542000pt;}
.x3f{left:202.064533pt;}
.x22{left:221.165600pt;}
.x15{left:226.119733pt;}
.x39{left:234.493533pt;}
.x4c{left:241.507533pt;}
.x44{left:242.930733pt;}
.x32{left:244.343467pt;}
.x19{left:249.741333pt;}
.x35{left:251.127467pt;}
.x2b{left:253.035933pt;}
.x34{left:260.410200pt;}
.x24{left:268.514000pt;}
.x2c{left:273.823867pt;}
.x16{left:276.112533pt;}
.x48{left:280.070667pt;}
.x11{left:293.196133pt;}
.x12{left:307.792333pt;}
.x13{left:320.542333pt;}
.x45{left:345.606800pt;}
.x46{left:352.219467pt;}
.x8{left:363.123600pt;}
.x5{left:375.010800pt;}
.x1a{left:381.910933pt;}
.x1b{left:392.804533pt;}
.x1d{left:404.004133pt;}
.x29{left:406.777800pt;}
.x49{left:411.382133pt;}
.x1c{left:423.751333pt;}
.xf{left:426.209467pt;}
.x10{left:429.456267pt;}
.x3{left:437.904933pt;}
.x1e{left:466.771600pt;}
.x4{left:484.220000pt;}
.x2d{left:510.593867pt;}
.x3c{left:522.425600pt;}
.x25{left:529.444133pt;}
.x2{left:588.420400pt;}
.x41{left:595.514133pt;}
.x42{left:601.888800pt;}
.x14{left:604.724000pt;}
.x1{left:610.473600pt;}
.x2f{left:613.672000pt;}
.x3e{left:617.128400pt;}
.x30{left:620.046667pt;}
}




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