
    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_51299630ed48d03bdb3b36ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_852d7d255cc03777b12ffb9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.793457;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_8b7d8b66daee2e02b74bad39.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943848;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_1d14235ea3e3764e618890e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_3065dd0cf3a9cec56c3a5e40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_0f65efc9770602e1b5b7ad5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_0bd9b5c2988ce246cb81b7fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_e8c852b48d3fa9622884f2fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_42e6ccee52d65ea7d6b22f27.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.166504;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_769fd2d368e1f9f19275d944.woff2')format("woff");}.fff{font-family:fff;line-height:0.972656;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_514345d7353578818aabfaba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_17e1367e44569fccba543d39.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.166504;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_3c8fb24c94dd48ede841b595.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_bb5515aa7fbfcc7cff0a2ea5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.954102;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_5ce5917a6e15eaef5c1c7212.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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_a583a144af0b036df7502fa7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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_3963f1b90e03577b85268f84.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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_e280a59d2d4d1bf9020e5ffc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.771973;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_04a4af06acd2fb211a307a06.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.747559;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_a4a8afbc169e01dd37acd60f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.901855;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_9bfc1fe31cc40992ae7e2d8f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.128906;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.137400px;}
.ls26{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.097800px;}
.ls31{letter-spacing:-0.090000px;}
.ls25{letter-spacing:-0.054000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.015120px;}
.ls6{letter-spacing:0.031680px;}
.ls2f{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.052560px;}
.ls12{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.234000px;}
.ls15{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.311040px;}
.ls21{letter-spacing:0.342000px;}
.ls34{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.385800px;}
.ls1b{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.522000px;}
.ls1d{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.558000px;}
.ls2{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.670320px;}
.ls17{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.738000px;}
.ls29{letter-spacing:0.756000px;}
.ls32{letter-spacing:0.810000px;}
.ls33{letter-spacing:0.900000px;}
.ls2b{letter-spacing:0.936000px;}
.ls1a{letter-spacing:1.134000px;}
.ls28{letter-spacing:1.260000px;}
.ls27{letter-spacing:1.278000px;}
.ls19{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.458000px;}
.ls2d{letter-spacing:1.494000px;}
.ls2a{letter-spacing:1.530000px;}
.ls2e{letter-spacing:1.620000px;}
.ls2c{letter-spacing:1.764000px;}
.ls1e{letter-spacing:3.546000px;}
.ls20{letter-spacing:9.306000px;}
.ls1f{letter-spacing:13.626000px;}
.ls18{letter-spacing:19.386000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-54.000000px;}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws23{word-spacing:-15.480000px;}
.ws26{word-spacing:-15.336000px;}
.ws21{word-spacing:-15.246000px;}
.ws25{word-spacing:-15.210000px;}
.ws8{word-spacing:-14.992560px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.802600px;}
.ws22{word-spacing:-14.652000px;}
.ws2a{word-spacing:-14.616000px;}
.ws29{word-spacing:-14.526000px;}
.ws1a{word-spacing:-14.472000px;}
.ws18{word-spacing:-14.148000px;}
.ws27{word-spacing:-13.950000px;}
.ws20{word-spacing:-13.752000px;}
.ws5{word-spacing:-13.716000px;}
.ws24{word-spacing:-13.644000px;}
.ws1b{word-spacing:-13.554000px;}
.ws19{word-spacing:-13.446000px;}
.ws1c{word-spacing:-13.356000px;}
.ws15{word-spacing:-13.302000px;}
.ws1e{word-spacing:-13.230000px;}
.ws0{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.068000px;}
.wsc{word-spacing:-13.049400px;}
.wse{word-spacing:-13.014000px;}
.ws1f{word-spacing:-12.960000px;}
.ws28{word-spacing:-12.924000px;}
.ws16{word-spacing:-12.852000px;}
.ws13{word-spacing:-12.834000px;}
.ws14{word-spacing:-12.744000px;}
.ws12{word-spacing:-12.726000px;}
.ws10{word-spacing:-12.708000px;}
.ws1d{word-spacing:-12.690000px;}
.wsf{word-spacing:-12.438000px;}
.ws6{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-2.182800px;}
._1{margin-left:-1.167120px;}
._0{width:1.169040px;}
._c{width:2.462880px;}
._f{width:3.575040px;}
._e{width:5.478240px;}
._b{width:6.647760px;}
._7{width:8.316000px;}
._8{width:9.696000px;}
._d{width:10.821840px;}
._1a{width:11.904720px;}
._15{width:14.844000px;}
._18{width:16.314000px;}
._9{width:17.911920px;}
._a{width:19.183920px;}
._16{width:20.236080px;}
._19{width:21.350640px;}
._1b{width:22.455600px;}
._14{width:24.300000px;}
._12{width:25.812000px;}
._1e{width:27.216000px;}
._27{width:28.512000px;}
._1c{width:29.538000px;}
._17{width:30.672000px;}
._1d{width:32.364000px;}
._21{width:33.498000px;}
._24{width:35.370000px;}
._30{width:36.750960px;}
._22{width:37.800000px;}
._13{width:39.342000px;}
._2a{width:41.585760px;}
._25{width:43.362000px;}
._2c{width:45.641520px;}
._26{width:46.851120px;}
._2f{width:48.130080px;}
._2b{width:49.661520px;}
._28{width:50.814000px;}
._23{width:52.812000px;}
._31{width:53.856000px;}
._3{width:55.008720px;}
._4{width:56.252640px;}
._1f{width:57.564000px;}
._20{width:58.878000px;}
._2d{width:59.988720px;}
._2e{width:64.746000px;}
._6{width:68.234400px;}
._11{width:70.113600px;}
._29{width:71.115360px;}
._5{width:72.597924px;}
._34{width:75.222000px;}
._33{width:76.302000px;}
._37{width:85.465920px;}
._32{width:96.995520px;}
._36{width:126.009600px;}
._35{width:193.299120px;}
._10{width:1404.960000px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:12.240000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y4f{bottom:-9.210000px;}
.y43{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:1.605000px;}
.y14{bottom:1.620000px;}
.y10{bottom:1.800000px;}
.y19{bottom:1.980000px;}
.y27{bottom:2.160000px;}
.y56{bottom:2.340000px;}
.y1b7{bottom:2.520000px;}
.ycc{bottom:3.045000px;}
.yb1{bottom:3.060000px;}
.ycf{bottom:3.225000px;}
.y21{bottom:3.240000px;}
.y25{bottom:3.270000px;}
.y23{bottom:3.420000px;}
.y15b{bottom:3.780000px;}
.y158{bottom:3.960000px;}
.y16f{bottom:3.990000px;}
.y1e{bottom:4.140000px;}
.y20{bottom:4.500000px;}
.y3f{bottom:6.465000px;}
.y41{bottom:6.645000px;}
.y178{bottom:7.725000px;}
.y102{bottom:7.740000px;}
.y186{bottom:7.770000px;}
.y125{bottom:7.905000px;}
.y120{bottom:7.920000px;}
.y3e{bottom:10.245000px;}
.y3c{bottom:10.425000px;}
.y128{bottom:10.785000px;}
.y38{bottom:10.965000px;}
.y1c{bottom:10.980000px;}
.y53{bottom:11.700000px;}
.y4e{bottom:11.850000px;}
.y45{bottom:12.600000px;}
.y54{bottom:13.680000px;}
.y12{bottom:13.860000px;}
.y17{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y55{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.yb0{bottom:18.360000px;}
.y157{bottom:19.980000px;}
.y127{bottom:33.825000px;}
.y122{bottom:33.840000px;}
.y18b{bottom:33.870000px;}
.y37{bottom:34.005000px;}
.y1b{bottom:34.020000px;}
.y4d{bottom:36.330000px;}
.y47{bottom:37.800000px;}
.y16{bottom:42.120000px;}
.y8{bottom:45.540000px;}
.y57{bottom:47.520000px;}
.yd{bottom:53.325000px;}
.y36{bottom:57.045000px;}
.y3{bottom:58.320000px;}
.y4c{bottom:59.730000px;}
.y52{bottom:63.720000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y35{bottom:80.085000px;}
.y4b{bottom:82.770000px;}
.yc{bottom:88.965000px;}
.y34{bottom:102.945000px;}
.y4a{bottom:106.350000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y206{bottom:111.600000px;}
.y207{bottom:111.780000px;}
.y11b{bottom:117.000000px;}
.y100{bottom:117.360000px;}
.yab{bottom:119.340000px;}
.y1dc{bottom:119.520000px;}
.ydd{bottom:121.680000px;}
.y48{bottom:123.300000px;}
.y33{bottom:125.985000px;}
.y12d{bottom:127.800000px;}
.y155{bottom:128.160000px;}
.y181{bottom:128.520000px;}
.y198{bottom:129.240000px;}
.y1b4{bottom:129.600000px;}
.y84{bottom:130.320000px;}
.y46{bottom:135.360000px;}
.y205{bottom:136.260000px;}
.y11a{bottom:140.040000px;}
.yff{bottom:140.580000px;}
.yaa{bottom:142.380000px;}
.y1db{bottom:142.560000px;}
.ydc{bottom:144.720000px;}
.y32{bottom:149.070000px;}
.y12c{bottom:150.840000px;}
.y180{bottom:151.560000px;}
.y154{bottom:151.740000px;}
.y197{bottom:152.280000px;}
.y1b3{bottom:152.640000px;}
.y83{bottom:153.180000px;}
.y204{bottom:160.740000px;}
.y119{bottom:163.080000px;}
.yfe{bottom:163.980000px;}
.ya9{bottom:165.420000px;}
.y1da{bottom:165.600000px;}
.ydb{bottom:167.760000px;}
.y31{bottom:172.110000px;}
.y12b{bottom:173.880000px;}
.y17f{bottom:174.600000px;}
.y196{bottom:175.140000px;}
.y153{bottom:175.500000px;}
.y1b2{bottom:175.680000px;}
.y82{bottom:176.220000px;}
.y203{bottom:185.220000px;}
.y44{bottom:185.940000px;}
.y118{bottom:186.120000px;}
.yfd{bottom:187.200000px;}
.ya8{bottom:188.460000px;}
.y1d9{bottom:188.640000px;}
.yda{bottom:190.800000px;}
.y30{bottom:195.150000px;}
.y12a{bottom:196.920000px;}
.y17e{bottom:197.460000px;}
.y195{bottom:198.180000px;}
.y1b1{bottom:198.720000px;}
.y152{bottom:199.080000px;}
.y81{bottom:199.260000px;}
.y117{bottom:209.010000px;}
.y202{bottom:209.910000px;}
.yfc{bottom:210.630000px;}
.y42{bottom:211.365000px;}
.ya7{bottom:211.530000px;}
.y1d8{bottom:211.710000px;}
.yd9{bottom:213.690000px;}
.y2f{bottom:218.190000px;}
.y129{bottom:219.990000px;}
.y17d{bottom:220.530000px;}
.y194{bottom:221.250000px;}
.y1b0{bottom:221.610000px;}
.y80{bottom:222.330000px;}
.y151{bottom:222.870000px;}
.y40{bottom:230.805000px;}
.y116{bottom:232.050000px;}
.y126{bottom:232.065000px;}
.yfb{bottom:234.030000px;}
.y201{bottom:234.390000px;}
.ya6{bottom:234.570000px;}
.y1d7{bottom:234.750000px;}
.yd8{bottom:236.730000px;}
.y2e{bottom:241.050000px;}
.y17c{bottom:243.570000px;}
.y193{bottom:244.290000px;}
.y1af{bottom:244.650000px;}
.y7f{bottom:245.370000px;}
.y150{bottom:246.450000px;}
.y3d{bottom:250.245000px;}
.y115{bottom:255.090000px;}
.yfa{bottom:257.250000px;}
.y1d6{bottom:257.610000px;}
.ya5{bottom:257.970000px;}
.y200{bottom:258.870000px;}
.yd7{bottom:259.770000px;}
.y2d{bottom:264.090000px;}
.y17b{bottom:266.610000px;}
.y192{bottom:267.330000px;}
.y1ae{bottom:267.690000px;}
.y7e{bottom:268.410000px;}
.y3b{bottom:269.505000px;}
.y14f{bottom:270.030000px;}
.y124{bottom:277.965000px;}
.y114{bottom:278.130000px;}
.yf9{bottom:280.650000px;}
.ya4{bottom:281.190000px;}
.yd6{bottom:282.810000px;}
.y1ff{bottom:283.530000px;}
.y17a{bottom:286.950000px;}
.y2c{bottom:287.130000px;}
.y39{bottom:289.485000px;}
.y191{bottom:290.190000px;}
.y1ad{bottom:290.730000px;}
.y7d{bottom:291.270000px;}
.y14e{bottom:293.790000px;}
.y28{bottom:296.145000px;}
.y179{bottom:296.505000px;}
.y113{bottom:301.170000px;}
.y24a{bottom:301.350000px;}
.y1d5{bottom:303.690000px;}
.yf8{bottom:304.230000px;}
.ya3{bottom:304.590000px;}
.yd5{bottom:305.850000px;}
.y1fe{bottom:308.010000px;}
.y2b{bottom:310.170000px;}
.y190{bottom:313.230000px;}
.y1ac{bottom:313.770000px;}
.y7c{bottom:314.310000px;}
.y14d{bottom:317.370000px;}
.y112{bottom:324.210000px;}
.y22e{bottom:325.830000px;}
.yd4{bottom:326.190000px;}
.y1d4{bottom:326.730000px;}
.ya2{bottom:327.990000px;}
.y1fd{bottom:332.670000px;}
.y249{bottom:333.030000px;}
.y2a{bottom:333.210000px;}
.y18f{bottom:336.270000px;}
.y1ab{bottom:336.810000px;}
.y7b{bottom:337.350000px;}
.yd3{bottom:338.085000px;}
.y14c{bottom:340.950000px;}
.y177{bottom:342.585000px;}
.y111{bottom:347.070000px;}
.y1d3{bottom:349.770000px;}
.y22d{bottom:350.310000px;}
.ya1{bottom:351.210000px;}
.yd2{bottom:353.385000px;}
.y248{bottom:356.070000px;}
.y29{bottom:356.250000px;}
.y1fc{bottom:357.150000px;}
.y18e{bottom:359.310000px;}
.y1aa{bottom:359.670000px;}
.y7a{bottom:360.390000px;}
.y14b{bottom:364.710000px;}
.yd1{bottom:368.685000px;}
.y110{bottom:370.110000px;}
.y22c{bottom:371.730000px;}
.y1d2{bottom:372.810000px;}
.ya0{bottom:374.610000px;}
.y247{bottom:379.110000px;}
.y1fb{bottom:381.630000px;}
.y18d{bottom:382.350000px;}
.y1a9{bottom:382.710000px;}
.y79{bottom:383.430000px;}
.yd0{bottom:383.985000px;}
.y14a{bottom:388.290000px;}
.y10f{bottom:393.150000px;}
.y22b{bottom:393.330000px;}
.y1d1{bottom:395.670000px;}
.y9f{bottom:397.830000px;}
.yce{bottom:399.285000px;}
.y246{bottom:403.410000px;}
.y18c{bottom:405.390000px;}
.y1a8{bottom:405.750000px;}
.y1fa{bottom:406.290000px;}
.y78{bottom:406.470000px;}
.y149{bottom:412.050000px;}
.y22a{bottom:414.750000px;}
.ycd{bottom:414.765000px;}
.y10e{bottom:416.190000px;}
.y18a{bottom:417.465000px;}
.y1d0{bottom:418.710000px;}
.y9e{bottom:421.230000px;}
.y245{bottom:428.070000px;}
.y1a7{bottom:428.790000px;}
.y77{bottom:429.330000px;}
.ycb{bottom:430.065000px;}
.y1f9{bottom:430.770000px;}
.y148{bottom:435.630000px;}
.y229{bottom:436.170000px;}
.y10d{bottom:439.230000px;}
.y1cf{bottom:441.795000px;}
.y123{bottom:443.775000px;}
.y9d{bottom:444.675000px;}
.yca{bottom:445.395000px;}
.y1a6{bottom:451.875000px;}
.y76{bottom:452.415000px;}
.y244{bottom:452.595000px;}
.y1f8{bottom:455.295000px;}
.y121{bottom:455.835000px;}
.y228{bottom:457.815000px;}
.y147{bottom:459.255000px;}
.yc9{bottom:460.695000px;}
.y10c{bottom:462.135000px;}
.y189{bottom:463.395000px;}
.y1ce{bottom:464.835000px;}
.y9c{bottom:467.895000px;}
.yf7{bottom:468.255000px;}
.y1a5{bottom:474.915000px;}
.y75{bottom:475.455000px;}
.yc8{bottom:476.175000px;}
.y243{bottom:477.075000px;}
.y227{bottom:479.235000px;}
.y1f7{bottom:479.955000px;}
.y146{bottom:483.015000px;}
.y10b{bottom:485.175000px;}
.y1cd{bottom:487.875000px;}
.y9b{bottom:491.295000px;}
.yc7{bottom:491.475000px;}
.yf6{bottom:491.655000px;}
.y1a4{bottom:497.775000px;}
.y74{bottom:498.495000px;}
.y226{bottom:498.855000px;}
.y11f{bottom:501.735000px;}
.y1f6{bottom:504.435000px;}
.y145{bottom:506.595000px;}
.yc6{bottom:506.775000px;}
.y10a{bottom:508.215000px;}
.y1cc{bottom:510.735000px;}
.y9a{bottom:514.515000px;}
.yf5{bottom:514.875000px;}
.y225{bottom:517.395000px;}
.y1a3{bottom:520.815000px;}
.y73{bottom:521.535000px;}
.yc5{bottom:522.075000px;}
.y242{bottom:526.215000px;}
.y1f5{bottom:528.915000px;}
.y144{bottom:530.175000px;}
.y109{bottom:531.255000px;}
.y176{bottom:532.155000px;}
.y1cb{bottom:533.775000px;}
.yc4{bottom:537.375000px;}
.y99{bottom:537.915000px;}
.yf4{bottom:538.275000px;}
.y224{bottom:538.815000px;}
.y1a2{bottom:543.855000px;}
.y72{bottom:544.575000px;}
.y175{bottom:546.555000px;}
.y241{bottom:550.695000px;}
.yc3{bottom:552.855000px;}
.y1f4{bottom:553.575000px;}
.y143{bottom:553.935000px;}
.y108{bottom:554.295000px;}
.y1ca{bottom:556.815000px;}
.y223{bottom:560.415000px;}
.y98{bottom:561.315000px;}
.yf3{bottom:561.495000px;}
.y174{bottom:562.575000px;}
.y1a1{bottom:566.895000px;}
.y71{bottom:567.435000px;}
.yc2{bottom:568.155000px;}
.y240{bottom:572.655000px;}
.y107{bottom:577.335000px;}
.y142{bottom:577.515000px;}
.y1f3{bottom:578.055000px;}
.y173{bottom:578.415000px;}
.y1c9{bottom:579.855000px;}
.y222{bottom:581.835000px;}
.yc1{bottom:583.455000px;}
.y97{bottom:584.535000px;}
.yf2{bottom:584.895000px;}
.y1a0{bottom:589.935000px;}
.y70{bottom:590.475000px;}
.y172{bottom:594.435000px;}
.yc0{bottom:598.755000px;}
.y106{bottom:600.195000px;}
.y141{bottom:601.275000px;}
.y1f2{bottom:602.535000px;}
.y1c8{bottom:602.895000px;}
.y221{bottom:603.255000px;}
.y96{bottom:607.935000px;}
.yf1{bottom:608.295000px;}
.y19f{bottom:612.795000px;}
.y6f{bottom:613.515000px;}
.ybf{bottom:614.055000px;}
.y188{bottom:614.775000px;}
.y23f{bottom:618.915000px;}
.y220{bottom:622.875000px;}
.y105{bottom:623.235000px;}
.y140{bottom:624.855000px;}
.y1c7{bottom:625.935000px;}
.y171{bottom:626.475000px;}
.y187{bottom:626.835000px;}
.y1f1{bottom:627.195000px;}
.ybe{bottom:629.535000px;}
.y95{bottom:631.155000px;}
.yf0{bottom:631.515000px;}
.y19e{bottom:635.835000px;}
.y6e{bottom:636.555000px;}
.y21f{bottom:641.415000px;}
.y170{bottom:642.315000px;}
.y23e{bottom:643.575000px;}
.ybd{bottom:644.835000px;}
.y104{bottom:646.275000px;}
.y13f{bottom:648.435000px;}
.y1c6{bottom:648.795000px;}
.y1f0{bottom:651.675000px;}
.y94{bottom:654.555000px;}
.yef{bottom:654.915000px;}
.y103{bottom:658.335000px;}
.y19d{bottom:658.875000px;}
.y6d{bottom:659.595000px;}
.ybc{bottom:660.135000px;}
.y21e{bottom:663.015000px;}
.y26{bottom:664.455000px;}
.y23d{bottom:668.055000px;}
.y1c5{bottom:671.835000px;}
.y13e{bottom:672.195000px;}
.y185{bottom:672.915000px;}
.y16e{bottom:674.355000px;}
.y24{bottom:674.535000px;}
.ybb{bottom:675.435000px;}
.y1ef{bottom:676.185000px;}
.y93{bottom:677.985000px;}
.yee{bottom:678.165000px;}
.y11e{bottom:680.145000px;}
.y101{bottom:681.405000px;}
.y19c{bottom:681.945000px;}
.y6c{bottom:682.485000px;}
.y21d{bottom:684.465000px;}
.y1c4{bottom:686.265000px;}
.y22{bottom:690.045000px;}
.y16d{bottom:690.405000px;}
.yba{bottom:690.945000px;}
.y11d{bottom:692.205000px;}
.y23c{bottom:692.565000px;}
.y13d{bottom:695.805000px;}
.y1ee{bottom:700.845000px;}
.y92{bottom:701.205000px;}
.yed{bottom:701.565000px;}
.y1c3{bottom:701.925000px;}
.y19b{bottom:704.985000px;}
.y6b{bottom:705.525000px;}
.y21c{bottom:705.885000px;}
.yb9{bottom:706.245000px;}
.y1f{bottom:706.965000px;}
.y23b{bottom:714.345000px;}
.y1c2{bottom:717.765000px;}
.y13c{bottom:719.385000px;}
.yb8{bottom:721.545000px;}
.y91{bottom:724.605000px;}
.yec{bottom:724.965000px;}
.y1d{bottom:725.325000px;}
.y21b{bottom:727.305000px;}
.y19a{bottom:728.025000px;}
.y6a{bottom:728.565000px;}
.y1c1{bottom:733.425000px;}
.y23a{bottom:736.305000px;}
.yb7{bottom:736.845000px;}
.y11c{bottom:738.285000px;}
.y1a{bottom:740.625000px;}
.y13b{bottom:743.145000px;}
.y90{bottom:747.825000px;}
.yeb{bottom:748.185000px;}
.y21a{bottom:748.905000px;}
.y1c0{bottom:749.265000px;}
.y1ed{bottom:749.805000px;}
.y199{bottom:751.425000px;}
.y69{bottom:751.605000px;}
.yb6{bottom:752.145000px;}
.y16c{bottom:754.305000px;}
.y239{bottom:760.785000px;}
.y1bf{bottom:764.925000px;}
.y13a{bottom:766.725000px;}
.yb5{bottom:767.625000px;}
.y219{bottom:768.525000px;}
.y16b{bottom:770.325000px;}
.y8f{bottom:771.225000px;}
.yea{bottom:771.585000px;}
.y1ec{bottom:774.465000px;}
.y68{bottom:774.645000px;}
.y1be{bottom:780.765000px;}
.yb4{bottom:782.925000px;}
.y238{bottom:785.265000px;}
.y16a{bottom:786.165000px;}
.y18{bottom:786.705000px;}
.y218{bottom:787.065000px;}
.y139{bottom:790.485000px;}
.y8e{bottom:794.625000px;}
.ye9{bottom:794.805000px;}
.y15{bottom:794.985000px;}
.y1bd{bottom:796.425000px;}
.y67{bottom:797.685000px;}
.yb3{bottom:798.225000px;}
.y1eb{bottom:798.945000px;}
.y169{bottom:802.185000px;}
.y237{bottom:807.045000px;}
.y217{bottom:808.485000px;}
.y1bc{bottom:812.265000px;}
.yb2{bottom:813.525000px;}
.y138{bottom:814.065000px;}
.y8d{bottom:817.845000px;}
.ye8{bottom:818.205000px;}
.y66{bottom:820.545000px;}
.y1ea{bottom:823.425000px;}
.y1bb{bottom:827.925000px;}
.y184{bottom:828.825000px;}
.y236{bottom:829.005000px;}
.yaf{bottom:829.725000px;}
.y216{bottom:829.905000px;}
.y168{bottom:834.225000px;}
.y137{bottom:837.645000px;}
.y183{bottom:840.885000px;}
.y8c{bottom:841.245000px;}
.ye7{bottom:841.605000px;}
.y65{bottom:843.585000px;}
.y1ba{bottom:843.765000px;}
.y1e9{bottom:848.085000px;}
.y167{bottom:850.065000px;}
.y13{bottom:851.145000px;}
.y215{bottom:851.505000px;}
.y235{bottom:853.485000px;}
.y1b9{bottom:859.425000px;}
.y11{bottom:860.325000px;}
.y136{bottom:861.405000px;}
.y8b{bottom:864.465000px;}
.ye6{bottom:864.825000px;}
.y166{bottom:866.085000px;}
.y64{bottom:866.625000px;}
.yae{bottom:871.845000px;}
.y1e8{bottom:872.565000px;}
.y214{bottom:872.925000px;}
.y1b8{bottom:875.265000px;}
.y234{bottom:877.965000px;}
.y165{bottom:882.105000px;}
.y135{bottom:884.985000px;}
.y182{bottom:886.785000px;}
.y8a{bottom:887.865000px;}
.yf{bottom:888.225000px;}
.y63{bottom:889.665000px;}
.y1b6{bottom:890.925000px;}
.yb{bottom:892.185000px;}
.y213{bottom:892.545000px;}
.yad{bottom:893.265000px;}
.y1e7{bottom:897.225000px;}
.y164{bottom:898.125000px;}
.y233{bottom:902.625000px;}
.y1b5{bottom:906.765000px;}
.y134{bottom:908.565000px;}
.y212{bottom:911.130000px;}
.y89{bottom:911.310000px;}
.ye5{bottom:911.490000px;}
.y62{bottom:912.750000px;}
.y163{bottom:914.010000px;}
.yac{bottom:914.730000px;}
.y1e6{bottom:921.750000px;}
.y232{bottom:927.150000px;}
.y162{bottom:930.030000px;}
.y133{bottom:932.370000px;}
.y211{bottom:932.550000px;}
.y88{bottom:934.530000px;}
.ye4{bottom:934.710000px;}
.y61{bottom:935.790000px;}
.y161{bottom:946.050000px;}
.y1e5{bottom:946.230000px;}
.y231{bottom:951.810000px;}
.y210{bottom:954.150000px;}
.y132{bottom:955.950000px;}
.ye3{bottom:957.750000px;}
.y87{bottom:957.930000px;}
.y60{bottom:958.650000px;}
.y160{bottom:962.070000px;}
.y1e4{bottom:970.890000px;}
.y20f{bottom:973.770000px;}
.y230{bottom:976.290000px;}
.y15f{bottom:978.090000px;}
.y131{bottom:979.710000px;}
.ye2{bottom:980.790000px;}
.y86{bottom:981.150000px;}
.y5f{bottom:981.690000px;}
.y20e{bottom:992.310000px;}
.y15e{bottom:993.930000px;}
.y1e3{bottom:995.370000px;}
.y22f{bottom:998.070000px;}
.y130{bottom:1003.290000px;}
.ye1{bottom:1004.010000px;}
.y85{bottom:1004.550000px;}
.y5e{bottom:1004.730000px;}
.y15d{bottom:1009.950000px;}
.ya{bottom:1013.550000px;}
.y20d{bottom:1013.730000px;}
.y1e2{bottom:1019.850000px;}
.y15c{bottom:1025.970000px;}
.y12f{bottom:1026.870000px;}
.ye0{bottom:1027.050000px;}
.y5d{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y49{bottom:1033.380000px;}
.y20c{bottom:1035.150000px;}
.y15a{bottom:1041.990000px;}
.y1e1{bottom:1044.510000px;}
.ydf{bottom:1050.270000px;}
.y12e{bottom:1050.630000px;}
.y5c{bottom:1050.810000px;}
.y20b{bottom:1056.750000px;}
.y159{bottom:1057.830000px;}
.y1e0{bottom:1068.990000px;}
.yde{bottom:1073.670000px;}
.y5b{bottom:1073.850000px;}
.y156{bottom:1074.570000px;}
.y20a{bottom:1078.170000px;}
.y1df{bottom:1093.470000px;}
.y5a{bottom:1096.710000px;}
.y209{bottom:1099.590000px;}
.y1de{bottom:1118.130000px;}
.y59{bottom:1119.750000px;}
.y208{bottom:1121.190000px;}
.y1dd{bottom:1142.610000px;}
.y58{bottom:1142.790000px;}
.y51{bottom:1161.000000px;}
.y50{bottom:1185.840000px;}
.h2c{height:2.005313px;}
.hb{height:3.960000px;}
.h22{height:6.645000px;}
.h12{height:8.280000px;}
.hc{height:8.289492px;}
.hf{height:9.180000px;}
.h1f{height:10.065000px;}
.h55{height:15.120000px;}
.h3b{height:15.285000px;}
.h16{height:15.300000px;}
.h3d{height:15.321000px;}
.h3c{height:15.465000px;}
.h3a{height:15.480000px;}
.h1d{height:15.510000px;}
.h56{height:15.660000px;}
.h54{height:15.682500px;}
.h47{height:15.825000px;}
.h4a{height:15.840000px;}
.h48{height:15.862500px;}
.h46{height:16.005000px;}
.h49{height:16.020000px;}
.h4c{height:16.050000px;}
.h23{height:16.543828px;}
.h1b{height:16.920000px;}
.h33{height:17.640000px;}
.h18{height:18.360000px;}
.h26{height:19.245000px;}
.h29{height:19.425000px;}
.h24{height:19.965000px;}
.h13{height:21.055781px;}
.h10{height:22.975313px;}
.h40{height:23.070000px;}
.h2d{height:25.416000px;}
.h27{height:27.071719px;}
.h35{height:27.898500px;}
.hd{height:27.900000px;}
.h2{height:28.798500px;}
.h25{height:29.145586px;}
.h39{height:30.600000px;}
.h45{height:32.025000px;}
.h4b{height:32.040000px;}
.h20{height:32.835938px;}
.h37{height:34.684453px;}
.h57{height:38.089687px;}
.h3e{height:39.659766px;}
.h2a{height:40.472227px;}
.h17{height:40.500000px;}
.h28{height:41.610234px;}
.h38{height:43.078711px;}
.he{height:44.860781px;}
.h1a{height:45.695391px;}
.h43{height:45.885000px;}
.h50{height:45.900000px;}
.h53{height:45.921000px;}
.h4e{height:46.065000px;}
.h14{height:46.080000px;}
.h1e{height:49.253906px;}
.h19{height:50.068125px;}
.h2e{height:50.578500px;}
.h34{height:50.597578px;}
.h15{height:51.284180px;}
.h31{height:54.000000px;}
.h7{height:54.457031px;}
.h1c{height:54.507656px;}
.h32{height:56.084062px;}
.h11{height:56.160000px;}
.h9{height:57.051211px;}
.h2b{height:58.125000px;}
.h3{height:58.651172px;}
.ha{height:60.136655px;}
.h4{height:60.679688px;}
.h30{height:63.180000px;}
.h5{height:70.664062px;}
.h36{height:72.562500px;}
.h8{height:106.942500px;}
.h2f{height:123.660000px;}
.h6{height:124.590000px;}
.h52{height:140.385000px;}
.h41{height:140.400000px;}
.h51{height:144.930000px;}
.h44{height:154.785000px;}
.h42{height:167.565000px;}
.h4d{height:178.575000px;}
.h4f{height:199.110000px;}
.h21{height:368.295000px;}
.h3f{height:473.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:52.189500px;}
.w17{width:71.640000px;}
.w18{width:72.180000px;}
.w12{width:82.245000px;}
.w13{width:86.925000px;}
.w4{width:101.329500px;}
.w1b{width:114.645000px;}
.w1a{width:117.561000px;}
.w9{width:154.429500px;}
.w11{width:154.815000px;}
.w16{width:180.199500px;}
.w3{width:265.155000px;}
.wf{width:280.320000px;}
.w14{width:324.015000px;}
.w15{width:324.019500px;}
.w8{width:325.455000px;}
.wd{width:333.555000px;}
.wc{width:338.284500px;}
.w10{width:339.315000px;}
.w7{width:349.624500px;}
.w2{width:414.424500px;}
.w19{width:442.864500px;}
.wa{width:520.650000px;}
.wb{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x1f{left:5.385000px;}
.x7{left:7.009500px;}
.x1c{left:9.720000px;}
.x2f{left:12.240000px;}
.x15{left:17.809500px;}
.x2c{left:19.260000px;}
.x2a{left:23.400000px;}
.x28{left:25.020000px;}
.x22{left:26.280000px;}
.x21{left:27.540000px;}
.x2b{left:28.620000px;}
.x20{left:30.420000px;}
.x29{left:31.500000px;}
.x18{left:32.565000px;}
.x1d{left:33.840000px;}
.x24{left:35.280000px;}
.x23{left:37.260000px;}
.xd{left:38.370000px;}
.x31{left:41.760000px;}
.x33{left:44.460000px;}
.x34{left:45.720000px;}
.x30{left:51.105000px;}
.x35{left:52.185000px;}
.x32{left:55.245000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.xb{left:112.125000px;}
.x14{left:122.025000px;}
.x4{left:133.950000px;}
.x19{left:143.445000px;}
.x16{left:164.385000px;}
.x6{left:209.385000px;}
.xe{left:221.115000px;}
.x8{left:254.188500px;}
.xc{left:263.385000px;}
.xf{left:273.705000px;}
.x26{left:288.255000px;}
.x10{left:303.405000px;}
.x25{left:324.030000px;}
.x11{left:341.025000px;}
.x27{left:359.895000px;}
.x17{left:444.720000px;}
.x13{left:450.480000px;}
.xa{left:458.580000px;}
.x1a{left:462.705000px;}
.x3{left:521.220000px;}
.x2d{left:550.920000px;}
.x12{left:573.990000px;}
.x1b{left:617.550000px;}
.x2e{left:668.490000px;}
.x9{left:675.103500px;}
.x1e{left:699.810000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.122133pt;}
.ls26{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.086933pt;}
.ls31{letter-spacing:-0.080000pt;}
.ls25{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.013440pt;}
.ls6{letter-spacing:0.028160pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.046720pt;}
.ls12{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.208000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.276480pt;}
.ls21{letter-spacing:0.304000pt;}
.ls34{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.464000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.496000pt;}
.ls2{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.595840pt;}
.ls17{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.656000pt;}
.ls29{letter-spacing:0.672000pt;}
.ls32{letter-spacing:0.720000pt;}
.ls33{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:1.008000pt;}
.ls28{letter-spacing:1.120000pt;}
.ls27{letter-spacing:1.136000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.296000pt;}
.ls2d{letter-spacing:1.328000pt;}
.ls2a{letter-spacing:1.360000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls2c{letter-spacing:1.568000pt;}
.ls1e{letter-spacing:3.152000pt;}
.ls20{letter-spacing:8.272000pt;}
.ls1f{letter-spacing:12.112000pt;}
.ls18{letter-spacing:17.232000pt;}
.ws17{word-spacing:-48.000000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws23{word-spacing:-13.760000pt;}
.ws26{word-spacing:-13.632000pt;}
.ws21{word-spacing:-13.552000pt;}
.ws25{word-spacing:-13.520000pt;}
.ws8{word-spacing:-13.326720pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.157867pt;}
.ws22{word-spacing:-13.024000pt;}
.ws2a{word-spacing:-12.992000pt;}
.ws29{word-spacing:-12.912000pt;}
.ws1a{word-spacing:-12.864000pt;}
.ws18{word-spacing:-12.576000pt;}
.ws27{word-spacing:-12.400000pt;}
.ws20{word-spacing:-12.224000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws24{word-spacing:-12.128000pt;}
.ws1b{word-spacing:-12.048000pt;}
.ws19{word-spacing:-11.952000pt;}
.ws1c{word-spacing:-11.872000pt;}
.ws15{word-spacing:-11.824000pt;}
.ws1e{word-spacing:-11.760000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.599467pt;}
.wse{word-spacing:-11.568000pt;}
.ws1f{word-spacing:-11.520000pt;}
.ws28{word-spacing:-11.488000pt;}
.ws16{word-spacing:-11.424000pt;}
.ws13{word-spacing:-11.408000pt;}
.ws14{word-spacing:-11.328000pt;}
.ws12{word-spacing:-11.312000pt;}
.ws10{word-spacing:-11.296000pt;}
.ws1d{word-spacing:-11.280000pt;}
.wsf{word-spacing:-11.056000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-1.940267pt;}
._1{margin-left:-1.037440pt;}
._0{width:1.039147pt;}
._c{width:2.189227pt;}
._f{width:3.177813pt;}
._e{width:4.869547pt;}
._b{width:5.909120pt;}
._7{width:7.392000pt;}
._8{width:8.618667pt;}
._d{width:9.619413pt;}
._1a{width:10.581973pt;}
._15{width:13.194667pt;}
._18{width:14.501333pt;}
._9{width:15.921707pt;}
._a{width:17.052373pt;}
._16{width:17.987627pt;}
._19{width:18.978347pt;}
._1b{width:19.960533pt;}
._14{width:21.600000pt;}
._12{width:22.944000pt;}
._1e{width:24.192000pt;}
._27{width:25.344000pt;}
._1c{width:26.256000pt;}
._17{width:27.264000pt;}
._1d{width:28.768000pt;}
._21{width:29.776000pt;}
._24{width:31.440000pt;}
._30{width:32.667520pt;}
._22{width:33.600000pt;}
._13{width:34.970667pt;}
._2a{width:36.965120pt;}
._25{width:38.544000pt;}
._2c{width:40.570240pt;}
._26{width:41.645440pt;}
._2f{width:42.782293pt;}
._2b{width:44.143573pt;}
._28{width:45.168000pt;}
._23{width:46.944000pt;}
._31{width:47.872000pt;}
._3{width:48.896640pt;}
._4{width:50.002347pt;}
._1f{width:51.168000pt;}
._20{width:52.336000pt;}
._2d{width:53.323307pt;}
._2e{width:57.552000pt;}
._6{width:60.652800pt;}
._11{width:62.323200pt;}
._29{width:63.213653pt;}
._5{width:64.531488pt;}
._34{width:66.864000pt;}
._33{width:67.824000pt;}
._37{width:75.969707pt;}
._32{width:86.218240pt;}
._36{width:112.008533pt;}
._35{width:171.821440pt;}
._10{width:1248.853333pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:10.880000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y4f{bottom:-8.186667pt;}
.y43{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:1.426667pt;}
.y14{bottom:1.440000pt;}
.y10{bottom:1.600000pt;}
.y19{bottom:1.760000pt;}
.y27{bottom:1.920000pt;}
.y56{bottom:2.080000pt;}
.y1b7{bottom:2.240000pt;}
.ycc{bottom:2.706667pt;}
.yb1{bottom:2.720000pt;}
.ycf{bottom:2.866667pt;}
.y21{bottom:2.880000pt;}
.y25{bottom:2.906667pt;}
.y23{bottom:3.040000pt;}
.y15b{bottom:3.360000pt;}
.y158{bottom:3.520000pt;}
.y16f{bottom:3.546667pt;}
.y1e{bottom:3.680000pt;}
.y20{bottom:4.000000pt;}
.y3f{bottom:5.746667pt;}
.y41{bottom:5.906667pt;}
.y178{bottom:6.866667pt;}
.y102{bottom:6.880000pt;}
.y186{bottom:6.906667pt;}
.y125{bottom:7.026667pt;}
.y120{bottom:7.040000pt;}
.y3e{bottom:9.106667pt;}
.y3c{bottom:9.266667pt;}
.y128{bottom:9.586667pt;}
.y38{bottom:9.746667pt;}
.y1c{bottom:9.760000pt;}
.y53{bottom:10.400000pt;}
.y4e{bottom:10.533333pt;}
.y45{bottom:11.200000pt;}
.y54{bottom:12.160000pt;}
.y12{bottom:12.320000pt;}
.y17{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y55{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.yb0{bottom:16.320000pt;}
.y157{bottom:17.760000pt;}
.y127{bottom:30.066667pt;}
.y122{bottom:30.080000pt;}
.y18b{bottom:30.106667pt;}
.y37{bottom:30.226667pt;}
.y1b{bottom:30.240000pt;}
.y4d{bottom:32.293333pt;}
.y47{bottom:33.600000pt;}
.y16{bottom:37.440000pt;}
.y8{bottom:40.480000pt;}
.y57{bottom:42.240000pt;}
.yd{bottom:47.400000pt;}
.y36{bottom:50.706667pt;}
.y3{bottom:51.840000pt;}
.y4c{bottom:53.093333pt;}
.y52{bottom:56.640000pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y35{bottom:71.186667pt;}
.y4b{bottom:73.573333pt;}
.yc{bottom:79.080000pt;}
.y34{bottom:91.506667pt;}
.y4a{bottom:94.533333pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y206{bottom:99.200000pt;}
.y207{bottom:99.360000pt;}
.y11b{bottom:104.000000pt;}
.y100{bottom:104.320000pt;}
.yab{bottom:106.080000pt;}
.y1dc{bottom:106.240000pt;}
.ydd{bottom:108.160000pt;}
.y48{bottom:109.600000pt;}
.y33{bottom:111.986667pt;}
.y12d{bottom:113.600000pt;}
.y155{bottom:113.920000pt;}
.y181{bottom:114.240000pt;}
.y198{bottom:114.880000pt;}
.y1b4{bottom:115.200000pt;}
.y84{bottom:115.840000pt;}
.y46{bottom:120.320000pt;}
.y205{bottom:121.120000pt;}
.y11a{bottom:124.480000pt;}
.yff{bottom:124.960000pt;}
.yaa{bottom:126.560000pt;}
.y1db{bottom:126.720000pt;}
.ydc{bottom:128.640000pt;}
.y32{bottom:132.506667pt;}
.y12c{bottom:134.080000pt;}
.y180{bottom:134.720000pt;}
.y154{bottom:134.880000pt;}
.y197{bottom:135.360000pt;}
.y1b3{bottom:135.680000pt;}
.y83{bottom:136.160000pt;}
.y204{bottom:142.880000pt;}
.y119{bottom:144.960000pt;}
.yfe{bottom:145.760000pt;}
.ya9{bottom:147.040000pt;}
.y1da{bottom:147.200000pt;}
.ydb{bottom:149.120000pt;}
.y31{bottom:152.986667pt;}
.y12b{bottom:154.560000pt;}
.y17f{bottom:155.200000pt;}
.y196{bottom:155.680000pt;}
.y153{bottom:156.000000pt;}
.y1b2{bottom:156.160000pt;}
.y82{bottom:156.640000pt;}
.y203{bottom:164.640000pt;}
.y44{bottom:165.280000pt;}
.y118{bottom:165.440000pt;}
.yfd{bottom:166.400000pt;}
.ya8{bottom:167.520000pt;}
.y1d9{bottom:167.680000pt;}
.yda{bottom:169.600000pt;}
.y30{bottom:173.466667pt;}
.y12a{bottom:175.040000pt;}
.y17e{bottom:175.520000pt;}
.y195{bottom:176.160000pt;}
.y1b1{bottom:176.640000pt;}
.y152{bottom:176.960000pt;}
.y81{bottom:177.120000pt;}
.y117{bottom:185.786667pt;}
.y202{bottom:186.586667pt;}
.yfc{bottom:187.226667pt;}
.y42{bottom:187.880000pt;}
.ya7{bottom:188.026667pt;}
.y1d8{bottom:188.186667pt;}
.yd9{bottom:189.946667pt;}
.y2f{bottom:193.946667pt;}
.y129{bottom:195.546667pt;}
.y17d{bottom:196.026667pt;}
.y194{bottom:196.666667pt;}
.y1b0{bottom:196.986667pt;}
.y80{bottom:197.626667pt;}
.y151{bottom:198.106667pt;}
.y40{bottom:205.160000pt;}
.y116{bottom:206.266667pt;}
.y126{bottom:206.280000pt;}
.yfb{bottom:208.026667pt;}
.y201{bottom:208.346667pt;}
.ya6{bottom:208.506667pt;}
.y1d7{bottom:208.666667pt;}
.yd8{bottom:210.426667pt;}
.y2e{bottom:214.266667pt;}
.y17c{bottom:216.506667pt;}
.y193{bottom:217.146667pt;}
.y1af{bottom:217.466667pt;}
.y7f{bottom:218.106667pt;}
.y150{bottom:219.066667pt;}
.y3d{bottom:222.440000pt;}
.y115{bottom:226.746667pt;}
.yfa{bottom:228.666667pt;}
.y1d6{bottom:228.986667pt;}
.ya5{bottom:229.306667pt;}
.y200{bottom:230.106667pt;}
.yd7{bottom:230.906667pt;}
.y2d{bottom:234.746667pt;}
.y17b{bottom:236.986667pt;}
.y192{bottom:237.626667pt;}
.y1ae{bottom:237.946667pt;}
.y7e{bottom:238.586667pt;}
.y3b{bottom:239.560000pt;}
.y14f{bottom:240.026667pt;}
.y124{bottom:247.080000pt;}
.y114{bottom:247.226667pt;}
.yf9{bottom:249.466667pt;}
.ya4{bottom:249.946667pt;}
.yd6{bottom:251.386667pt;}
.y1ff{bottom:252.026667pt;}
.y17a{bottom:255.066667pt;}
.y2c{bottom:255.226667pt;}
.y39{bottom:257.320000pt;}
.y191{bottom:257.946667pt;}
.y1ad{bottom:258.426667pt;}
.y7d{bottom:258.906667pt;}
.y14e{bottom:261.146667pt;}
.y28{bottom:263.240000pt;}
.y179{bottom:263.560000pt;}
.y113{bottom:267.706667pt;}
.y24a{bottom:267.866667pt;}
.y1d5{bottom:269.946667pt;}
.yf8{bottom:270.426667pt;}
.ya3{bottom:270.746667pt;}
.yd5{bottom:271.866667pt;}
.y1fe{bottom:273.786667pt;}
.y2b{bottom:275.706667pt;}
.y190{bottom:278.426667pt;}
.y1ac{bottom:278.906667pt;}
.y7c{bottom:279.386667pt;}
.y14d{bottom:282.106667pt;}
.y112{bottom:288.186667pt;}
.y22e{bottom:289.626667pt;}
.yd4{bottom:289.946667pt;}
.y1d4{bottom:290.426667pt;}
.ya2{bottom:291.546667pt;}
.y1fd{bottom:295.706667pt;}
.y249{bottom:296.026667pt;}
.y2a{bottom:296.186667pt;}
.y18f{bottom:298.906667pt;}
.y1ab{bottom:299.386667pt;}
.y7b{bottom:299.866667pt;}
.yd3{bottom:300.520000pt;}
.y14c{bottom:303.066667pt;}
.y177{bottom:304.520000pt;}
.y111{bottom:308.506667pt;}
.y1d3{bottom:310.906667pt;}
.y22d{bottom:311.386667pt;}
.ya1{bottom:312.186667pt;}
.yd2{bottom:314.120000pt;}
.y248{bottom:316.506667pt;}
.y29{bottom:316.666667pt;}
.y1fc{bottom:317.466667pt;}
.y18e{bottom:319.386667pt;}
.y1aa{bottom:319.706667pt;}
.y7a{bottom:320.346667pt;}
.y14b{bottom:324.186667pt;}
.yd1{bottom:327.720000pt;}
.y110{bottom:328.986667pt;}
.y22c{bottom:330.426667pt;}
.y1d2{bottom:331.386667pt;}
.ya0{bottom:332.986667pt;}
.y247{bottom:336.986667pt;}
.y1fb{bottom:339.226667pt;}
.y18d{bottom:339.866667pt;}
.y1a9{bottom:340.186667pt;}
.y79{bottom:340.826667pt;}
.yd0{bottom:341.320000pt;}
.y14a{bottom:345.146667pt;}
.y10f{bottom:349.466667pt;}
.y22b{bottom:349.626667pt;}
.y1d1{bottom:351.706667pt;}
.y9f{bottom:353.626667pt;}
.yce{bottom:354.920000pt;}
.y246{bottom:358.586667pt;}
.y18c{bottom:360.346667pt;}
.y1a8{bottom:360.666667pt;}
.y1fa{bottom:361.146667pt;}
.y78{bottom:361.306667pt;}
.y149{bottom:366.266667pt;}
.y22a{bottom:368.666667pt;}
.ycd{bottom:368.680000pt;}
.y10e{bottom:369.946667pt;}
.y18a{bottom:371.080000pt;}
.y1d0{bottom:372.186667pt;}
.y9e{bottom:374.426667pt;}
.y245{bottom:380.506667pt;}
.y1a7{bottom:381.146667pt;}
.y77{bottom:381.626667pt;}
.ycb{bottom:382.280000pt;}
.y1f9{bottom:382.906667pt;}
.y148{bottom:387.226667pt;}
.y229{bottom:387.706667pt;}
.y10d{bottom:390.426667pt;}
.y1cf{bottom:392.706667pt;}
.y123{bottom:394.466667pt;}
.y9d{bottom:395.266667pt;}
.yca{bottom:395.906667pt;}
.y1a6{bottom:401.666667pt;}
.y76{bottom:402.146667pt;}
.y244{bottom:402.306667pt;}
.y1f8{bottom:404.706667pt;}
.y121{bottom:405.186667pt;}
.y228{bottom:406.946667pt;}
.y147{bottom:408.226667pt;}
.yc9{bottom:409.506667pt;}
.y10c{bottom:410.786667pt;}
.y189{bottom:411.906667pt;}
.y1ce{bottom:413.186667pt;}
.y9c{bottom:415.906667pt;}
.yf7{bottom:416.226667pt;}
.y1a5{bottom:422.146667pt;}
.y75{bottom:422.626667pt;}
.yc8{bottom:423.266667pt;}
.y243{bottom:424.066667pt;}
.y227{bottom:425.986667pt;}
.y1f7{bottom:426.626667pt;}
.y146{bottom:429.346667pt;}
.y10b{bottom:431.266667pt;}
.y1cd{bottom:433.666667pt;}
.y9b{bottom:436.706667pt;}
.yc7{bottom:436.866667pt;}
.yf6{bottom:437.026667pt;}
.y1a4{bottom:442.466667pt;}
.y74{bottom:443.106667pt;}
.y226{bottom:443.426667pt;}
.y11f{bottom:445.986667pt;}
.y1f6{bottom:448.386667pt;}
.y145{bottom:450.306667pt;}
.yc6{bottom:450.466667pt;}
.y10a{bottom:451.746667pt;}
.y1cc{bottom:453.986667pt;}
.y9a{bottom:457.346667pt;}
.yf5{bottom:457.666667pt;}
.y225{bottom:459.906667pt;}
.y1a3{bottom:462.946667pt;}
.y73{bottom:463.586667pt;}
.yc5{bottom:464.066667pt;}
.y242{bottom:467.746667pt;}
.y1f5{bottom:470.146667pt;}
.y144{bottom:471.266667pt;}
.y109{bottom:472.226667pt;}
.y176{bottom:473.026667pt;}
.y1cb{bottom:474.466667pt;}
.yc4{bottom:477.666667pt;}
.y99{bottom:478.146667pt;}
.yf4{bottom:478.466667pt;}
.y224{bottom:478.946667pt;}
.y1a2{bottom:483.426667pt;}
.y72{bottom:484.066667pt;}
.y175{bottom:485.826667pt;}
.y241{bottom:489.506667pt;}
.yc3{bottom:491.426667pt;}
.y1f4{bottom:492.066667pt;}
.y143{bottom:492.386667pt;}
.y108{bottom:492.706667pt;}
.y1ca{bottom:494.946667pt;}
.y223{bottom:498.146667pt;}
.y98{bottom:498.946667pt;}
.yf3{bottom:499.106667pt;}
.y174{bottom:500.066667pt;}
.y1a1{bottom:503.906667pt;}
.y71{bottom:504.386667pt;}
.yc2{bottom:505.026667pt;}
.y240{bottom:509.026667pt;}
.y107{bottom:513.186667pt;}
.y142{bottom:513.346667pt;}
.y1f3{bottom:513.826667pt;}
.y173{bottom:514.146667pt;}
.y1c9{bottom:515.426667pt;}
.y222{bottom:517.186667pt;}
.yc1{bottom:518.626667pt;}
.y97{bottom:519.586667pt;}
.yf2{bottom:519.906667pt;}
.y1a0{bottom:524.386667pt;}
.y70{bottom:524.866667pt;}
.y172{bottom:528.386667pt;}
.yc0{bottom:532.226667pt;}
.y106{bottom:533.506667pt;}
.y141{bottom:534.466667pt;}
.y1f2{bottom:535.586667pt;}
.y1c8{bottom:535.906667pt;}
.y221{bottom:536.226667pt;}
.y96{bottom:540.386667pt;}
.yf1{bottom:540.706667pt;}
.y19f{bottom:544.706667pt;}
.y6f{bottom:545.346667pt;}
.ybf{bottom:545.826667pt;}
.y188{bottom:546.466667pt;}
.y23f{bottom:550.146667pt;}
.y220{bottom:553.666667pt;}
.y105{bottom:553.986667pt;}
.y140{bottom:555.426667pt;}
.y1c7{bottom:556.386667pt;}
.y171{bottom:556.866667pt;}
.y187{bottom:557.186667pt;}
.y1f1{bottom:557.506667pt;}
.ybe{bottom:559.586667pt;}
.y95{bottom:561.026667pt;}
.yf0{bottom:561.346667pt;}
.y19e{bottom:565.186667pt;}
.y6e{bottom:565.826667pt;}
.y21f{bottom:570.146667pt;}
.y170{bottom:570.946667pt;}
.y23e{bottom:572.066667pt;}
.ybd{bottom:573.186667pt;}
.y104{bottom:574.466667pt;}
.y13f{bottom:576.386667pt;}
.y1c6{bottom:576.706667pt;}
.y1f0{bottom:579.266667pt;}
.y94{bottom:581.826667pt;}
.yef{bottom:582.146667pt;}
.y103{bottom:585.186667pt;}
.y19d{bottom:585.666667pt;}
.y6d{bottom:586.306667pt;}
.ybc{bottom:586.786667pt;}
.y21e{bottom:589.346667pt;}
.y26{bottom:590.626667pt;}
.y23d{bottom:593.826667pt;}
.y1c5{bottom:597.186667pt;}
.y13e{bottom:597.506667pt;}
.y185{bottom:598.146667pt;}
.y16e{bottom:599.426667pt;}
.y24{bottom:599.586667pt;}
.ybb{bottom:600.386667pt;}
.y1ef{bottom:601.053333pt;}
.y93{bottom:602.653333pt;}
.yee{bottom:602.813333pt;}
.y11e{bottom:604.573333pt;}
.y101{bottom:605.693333pt;}
.y19c{bottom:606.173333pt;}
.y6c{bottom:606.653333pt;}
.y21d{bottom:608.413333pt;}
.y1c4{bottom:610.013333pt;}
.y22{bottom:613.373333pt;}
.y16d{bottom:613.693333pt;}
.yba{bottom:614.173333pt;}
.y11d{bottom:615.293333pt;}
.y23c{bottom:615.613333pt;}
.y13d{bottom:618.493333pt;}
.y1ee{bottom:622.973333pt;}
.y92{bottom:623.293333pt;}
.yed{bottom:623.613333pt;}
.y1c3{bottom:623.933333pt;}
.y19b{bottom:626.653333pt;}
.y6b{bottom:627.133333pt;}
.y21c{bottom:627.453333pt;}
.yb9{bottom:627.773333pt;}
.y1f{bottom:628.413333pt;}
.y23b{bottom:634.973333pt;}
.y1c2{bottom:638.013333pt;}
.y13c{bottom:639.453333pt;}
.yb8{bottom:641.373333pt;}
.y91{bottom:644.093333pt;}
.yec{bottom:644.413333pt;}
.y1d{bottom:644.733333pt;}
.y21b{bottom:646.493333pt;}
.y19a{bottom:647.133333pt;}
.y6a{bottom:647.613333pt;}
.y1c1{bottom:651.933333pt;}
.y23a{bottom:654.493333pt;}
.yb7{bottom:654.973333pt;}
.y11c{bottom:656.253333pt;}
.y1a{bottom:658.333333pt;}
.y13b{bottom:660.573333pt;}
.y90{bottom:664.733333pt;}
.yeb{bottom:665.053333pt;}
.y21a{bottom:665.693333pt;}
.y1c0{bottom:666.013333pt;}
.y1ed{bottom:666.493333pt;}
.y199{bottom:667.933333pt;}
.y69{bottom:668.093333pt;}
.yb6{bottom:668.573333pt;}
.y16c{bottom:670.493333pt;}
.y239{bottom:676.253333pt;}
.y1bf{bottom:679.933333pt;}
.y13a{bottom:681.533333pt;}
.yb5{bottom:682.333333pt;}
.y219{bottom:683.133333pt;}
.y16b{bottom:684.733333pt;}
.y8f{bottom:685.533333pt;}
.yea{bottom:685.853333pt;}
.y1ec{bottom:688.413333pt;}
.y68{bottom:688.573333pt;}
.y1be{bottom:694.013333pt;}
.yb4{bottom:695.933333pt;}
.y238{bottom:698.013333pt;}
.y16a{bottom:698.813333pt;}
.y18{bottom:699.293333pt;}
.y218{bottom:699.613333pt;}
.y139{bottom:702.653333pt;}
.y8e{bottom:706.333333pt;}
.ye9{bottom:706.493333pt;}
.y15{bottom:706.653333pt;}
.y1bd{bottom:707.933333pt;}
.y67{bottom:709.053333pt;}
.yb3{bottom:709.533333pt;}
.y1eb{bottom:710.173333pt;}
.y169{bottom:713.053333pt;}
.y237{bottom:717.373333pt;}
.y217{bottom:718.653333pt;}
.y1bc{bottom:722.013333pt;}
.yb2{bottom:723.133333pt;}
.y138{bottom:723.613333pt;}
.y8d{bottom:726.973333pt;}
.ye8{bottom:727.293333pt;}
.y66{bottom:729.373333pt;}
.y1ea{bottom:731.933333pt;}
.y1bb{bottom:735.933333pt;}
.y184{bottom:736.733333pt;}
.y236{bottom:736.893333pt;}
.yaf{bottom:737.533333pt;}
.y216{bottom:737.693333pt;}
.y168{bottom:741.533333pt;}
.y137{bottom:744.573333pt;}
.y183{bottom:747.453333pt;}
.y8c{bottom:747.773333pt;}
.ye7{bottom:748.093333pt;}
.y65{bottom:749.853333pt;}
.y1ba{bottom:750.013333pt;}
.y1e9{bottom:753.853333pt;}
.y167{bottom:755.613333pt;}
.y13{bottom:756.573333pt;}
.y215{bottom:756.893333pt;}
.y235{bottom:758.653333pt;}
.y1b9{bottom:763.933333pt;}
.y11{bottom:764.733333pt;}
.y136{bottom:765.693333pt;}
.y8b{bottom:768.413333pt;}
.ye6{bottom:768.733333pt;}
.y166{bottom:769.853333pt;}
.y64{bottom:770.333333pt;}
.yae{bottom:774.973333pt;}
.y1e8{bottom:775.613333pt;}
.y214{bottom:775.933333pt;}
.y1b8{bottom:778.013333pt;}
.y234{bottom:780.413333pt;}
.y165{bottom:784.093333pt;}
.y135{bottom:786.653333pt;}
.y182{bottom:788.253333pt;}
.y8a{bottom:789.213333pt;}
.yf{bottom:789.533333pt;}
.y63{bottom:790.813333pt;}
.y1b6{bottom:791.933333pt;}
.yb{bottom:793.053333pt;}
.y213{bottom:793.373333pt;}
.yad{bottom:794.013333pt;}
.y1e7{bottom:797.533333pt;}
.y164{bottom:798.333333pt;}
.y233{bottom:802.333333pt;}
.y1b5{bottom:806.013333pt;}
.y134{bottom:807.613333pt;}
.y212{bottom:809.893333pt;}
.y89{bottom:810.053333pt;}
.ye5{bottom:810.213333pt;}
.y62{bottom:811.333333pt;}
.y163{bottom:812.453333pt;}
.yac{bottom:813.093333pt;}
.y1e6{bottom:819.333333pt;}
.y232{bottom:824.133333pt;}
.y162{bottom:826.693333pt;}
.y133{bottom:828.773333pt;}
.y211{bottom:828.933333pt;}
.y88{bottom:830.693333pt;}
.ye4{bottom:830.853333pt;}
.y61{bottom:831.813333pt;}
.y161{bottom:840.933333pt;}
.y1e5{bottom:841.093333pt;}
.y231{bottom:846.053333pt;}
.y210{bottom:848.133333pt;}
.y132{bottom:849.733333pt;}
.ye3{bottom:851.333333pt;}
.y87{bottom:851.493333pt;}
.y60{bottom:852.133333pt;}
.y160{bottom:855.173333pt;}
.y1e4{bottom:863.013333pt;}
.y20f{bottom:865.573333pt;}
.y230{bottom:867.813333pt;}
.y15f{bottom:869.413333pt;}
.y131{bottom:870.853333pt;}
.ye2{bottom:871.813333pt;}
.y86{bottom:872.133333pt;}
.y5f{bottom:872.613333pt;}
.y20e{bottom:882.053333pt;}
.y15e{bottom:883.493333pt;}
.y1e3{bottom:884.773333pt;}
.y22f{bottom:887.173333pt;}
.y130{bottom:891.813333pt;}
.ye1{bottom:892.453333pt;}
.y85{bottom:892.933333pt;}
.y5e{bottom:893.093333pt;}
.y15d{bottom:897.733333pt;}
.ya{bottom:900.933333pt;}
.y20d{bottom:901.093333pt;}
.y1e2{bottom:906.533333pt;}
.y15c{bottom:911.973333pt;}
.y12f{bottom:912.773333pt;}
.ye0{bottom:912.933333pt;}
.y5d{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y49{bottom:918.560000pt;}
.y20c{bottom:920.133333pt;}
.y15a{bottom:926.213333pt;}
.y1e1{bottom:928.453333pt;}
.ydf{bottom:933.573333pt;}
.y12e{bottom:933.893333pt;}
.y5c{bottom:934.053333pt;}
.y20b{bottom:939.333333pt;}
.y159{bottom:940.293333pt;}
.y1e0{bottom:950.213333pt;}
.yde{bottom:954.373333pt;}
.y5b{bottom:954.533333pt;}
.y156{bottom:955.173333pt;}
.y20a{bottom:958.373333pt;}
.y1df{bottom:971.973333pt;}
.y5a{bottom:974.853333pt;}
.y209{bottom:977.413333pt;}
.y1de{bottom:993.893333pt;}
.y59{bottom:995.333333pt;}
.y208{bottom:996.613333pt;}
.y1dd{bottom:1015.653333pt;}
.y58{bottom:1015.813333pt;}
.y51{bottom:1032.000000pt;}
.y50{bottom:1054.080000pt;}
.h2c{height:1.782500pt;}
.hb{height:3.520000pt;}
.h22{height:5.906667pt;}
.h12{height:7.360000pt;}
.hc{height:7.368437pt;}
.hf{height:8.160000pt;}
.h1f{height:8.946667pt;}
.h55{height:13.440000pt;}
.h3b{height:13.586667pt;}
.h16{height:13.600000pt;}
.h3d{height:13.618667pt;}
.h3c{height:13.746667pt;}
.h3a{height:13.760000pt;}
.h1d{height:13.786667pt;}
.h56{height:13.920000pt;}
.h54{height:13.940000pt;}
.h47{height:14.066667pt;}
.h4a{height:14.080000pt;}
.h48{height:14.100000pt;}
.h46{height:14.226667pt;}
.h49{height:14.240000pt;}
.h4c{height:14.266667pt;}
.h23{height:14.705625pt;}
.h1b{height:15.040000pt;}
.h33{height:15.680000pt;}
.h18{height:16.320000pt;}
.h26{height:17.106667pt;}
.h29{height:17.266667pt;}
.h24{height:17.746667pt;}
.h13{height:18.716250pt;}
.h10{height:20.422500pt;}
.h40{height:20.506667pt;}
.h2d{height:22.592000pt;}
.h27{height:24.063750pt;}
.h35{height:24.798667pt;}
.hd{height:24.800000pt;}
.h2{height:25.598667pt;}
.h25{height:25.907187pt;}
.h39{height:27.200000pt;}
.h45{height:28.466667pt;}
.h4b{height:28.480000pt;}
.h20{height:29.187500pt;}
.h37{height:30.830625pt;}
.h57{height:33.857500pt;}
.h3e{height:35.253125pt;}
.h2a{height:35.975313pt;}
.h17{height:36.000000pt;}
.h28{height:36.986875pt;}
.h38{height:38.292187pt;}
.he{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h43{height:40.786667pt;}
.h50{height:40.800000pt;}
.h53{height:40.818667pt;}
.h4e{height:40.946667pt;}
.h14{height:40.960000pt;}
.h1e{height:43.781250pt;}
.h19{height:44.505000pt;}
.h2e{height:44.958667pt;}
.h34{height:44.975625pt;}
.h15{height:45.585938pt;}
.h31{height:48.000000pt;}
.h7{height:48.406250pt;}
.h1c{height:48.451250pt;}
.h32{height:49.852500pt;}
.h11{height:49.920000pt;}
.h9{height:50.712187pt;}
.h2b{height:51.666667pt;}
.h3{height:52.134375pt;}
.ha{height:53.454805pt;}
.h4{height:53.937500pt;}
.h30{height:56.160000pt;}
.h5{height:62.812500pt;}
.h36{height:64.500000pt;}
.h8{height:95.060000pt;}
.h2f{height:109.920000pt;}
.h6{height:110.746667pt;}
.h52{height:124.786667pt;}
.h41{height:124.800000pt;}
.h51{height:128.826667pt;}
.h44{height:137.586667pt;}
.h42{height:148.946667pt;}
.h4d{height:158.733333pt;}
.h4f{height:176.986667pt;}
.h21{height:327.373333pt;}
.h3f{height:420.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:46.390667pt;}
.w17{width:63.680000pt;}
.w18{width:64.160000pt;}
.w12{width:73.106667pt;}
.w13{width:77.266667pt;}
.w4{width:90.070667pt;}
.w1b{width:101.906667pt;}
.w1a{width:104.498667pt;}
.w9{width:137.270667pt;}
.w11{width:137.613333pt;}
.w16{width:160.177333pt;}
.w3{width:235.693333pt;}
.wf{width:249.173333pt;}
.w14{width:288.013333pt;}
.w15{width:288.017333pt;}
.w8{width:289.293333pt;}
.wd{width:296.493333pt;}
.wc{width:300.697333pt;}
.w10{width:301.613333pt;}
.w7{width:310.777333pt;}
.w2{width:368.377333pt;}
.w19{width:393.657333pt;}
.wa{width:462.800000pt;}
.wb{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x1f{left:4.786667pt;}
.x7{left:6.230667pt;}
.x1c{left:8.640000pt;}
.x2f{left:10.880000pt;}
.x15{left:15.830667pt;}
.x2c{left:17.120000pt;}
.x2a{left:20.800000pt;}
.x28{left:22.240000pt;}
.x22{left:23.360000pt;}
.x21{left:24.480000pt;}
.x2b{left:25.440000pt;}
.x20{left:27.040000pt;}
.x29{left:28.000000pt;}
.x18{left:28.946667pt;}
.x1d{left:30.080000pt;}
.x24{left:31.360000pt;}
.x23{left:33.120000pt;}
.xd{left:34.106667pt;}
.x31{left:37.120000pt;}
.x33{left:39.520000pt;}
.x34{left:40.640000pt;}
.x30{left:45.426667pt;}
.x35{left:46.386667pt;}
.x32{left:49.106667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.xb{left:99.666667pt;}
.x14{left:108.466667pt;}
.x4{left:119.066667pt;}
.x19{left:127.506667pt;}
.x16{left:146.120000pt;}
.x6{left:186.120000pt;}
.xe{left:196.546667pt;}
.x8{left:225.945333pt;}
.xc{left:234.120000pt;}
.xf{left:243.293333pt;}
.x26{left:256.226667pt;}
.x10{left:269.693333pt;}
.x25{left:288.026667pt;}
.x11{left:303.133333pt;}
.x27{left:319.906667pt;}
.x17{left:395.306667pt;}
.x13{left:400.426667pt;}
.xa{left:407.626667pt;}
.x1a{left:411.293333pt;}
.x3{left:463.306667pt;}
.x2d{left:489.706667pt;}
.x12{left:510.213333pt;}
.x1b{left:548.933333pt;}
.x2e{left:594.213333pt;}
.x9{left:600.092000pt;}
.x1e{left:622.053333pt;}
}




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