
    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_2bf50d2e4a1cd8701852e207.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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;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: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_6cf36755159bbef18dfb86df.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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e606cb674929e606f91f71b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_6316b80a63d4221d82033711.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_e7e980eff5f4dec7f18348e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c23b27564da224f34b4b7834.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_93c467aff339118db00a889d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.205566;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_3e1c28163e64e82ea29c05fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_2de1b1a36cd0e6eccc74511e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_3f409300345033262b8138bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c79a3f66923414c091de7f83.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a06f9964e137faf9e3081bbe.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_83832468101b5866966ec5a5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952148;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_6b031fbe660ecd8ad06b9a17.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_f7278cb2c20794bfaad97e3f.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_8b949c87be5e5e4f6771dfb4.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_87c9fa2f41cc6a7cce200a0a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_d83c81bf7d7f8ca5d76719cb.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.205566;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_feaecbe35dd1dc04fdd4823b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.770996;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_bfbeff015cd091679939e14b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_4e791b4c111f22e909ba560c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.902344;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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls35{letter-spacing:-1.746000px;}
.ls32{letter-spacing:-1.620000px;}
.ls2a{letter-spacing:-1.602000px;}
.ls22{letter-spacing:-1.566000px;}
.ls21{letter-spacing:-1.530000px;}
.ls33{letter-spacing:-1.494000px;}
.ls4{letter-spacing:-1.476000px;}
.ls31{letter-spacing:-1.404000px;}
.ls19{letter-spacing:-1.386000px;}
.ls36{letter-spacing:-1.350000px;}
.ls2f{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.242000px;}
.ls30{letter-spacing:-1.152000px;}
.ls20{letter-spacing:-0.900000px;}
.ls28{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.306000px;}
.ls10{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.213000px;}
.ls12{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.126000px;}
.ls3b{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.097800px;}
.ls29{letter-spacing:-0.054000px;}
.ls23{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.ls1e{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.090000px;}
.ls25{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.385800px;}
.ls9{letter-spacing:0.414000px;}
.ls18{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.558000px;}
.lsc{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.670320px;}
.ls1a{letter-spacing:0.684000px;}
.lsd{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.774000px;}
.ls3a{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.188000px;}
.ls38{letter-spacing:1.278000px;}
.lsb{letter-spacing:1.314000px;}
.ls8{letter-spacing:1.440000px;}
.ls26{letter-spacing:2.106000px;}
.ls24{letter-spacing:3.546000px;}
.lse{letter-spacing:20.880000px;}
.ls2c{letter-spacing:33.066000px;}
.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;}
}
.ws10{word-spacing:-54.000000px;}
.ws1{word-spacing:-22.407840px;}
.ws8{word-spacing:-20.437920px;}
.ws6{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.228800px;}
.wse{word-spacing:-15.966720px;}
.ws7{word-spacing:-15.840000px;}
.wsb{word-spacing:-14.958600px;}
.ws21{word-spacing:-14.616000px;}
.ws29{word-spacing:-14.526000px;}
.wsf{word-spacing:-14.328000px;}
.ws2e{word-spacing:-13.950000px;}
.ws28{word-spacing:-13.896000px;}
.ws20{word-spacing:-13.878000px;}
.ws2c{word-spacing:-13.806000px;}
.ws15{word-spacing:-13.788000px;}
.ws2d{word-spacing:-13.770000px;}
.ws2a{word-spacing:-13.752000px;}
.ws9{word-spacing:-13.716000px;}
.ws17{word-spacing:-13.698000px;}
.ws2b{word-spacing:-13.608000px;}
.ws1e{word-spacing:-13.230000px;}
.ws1d{word-spacing:-13.158000px;}
.ws0{word-spacing:-13.147200px;}
.ws2f{word-spacing:-13.122000px;}
.ws14{word-spacing:-13.104000px;}
.ws12{word-spacing:-13.068000px;}
.wsd{word-spacing:-13.049400px;}
.ws5{word-spacing:-13.014000px;}
.ws1a{word-spacing:-12.978000px;}
.ws1b{word-spacing:-12.852000px;}
.ws1f{word-spacing:-12.834000px;}
.ws11{word-spacing:-12.726000px;}
.ws23{word-spacing:-12.564000px;}
.ws26{word-spacing:-12.474000px;}
.ws22{word-spacing:-12.456000px;}
.ws27{word-spacing:-12.366000px;}
.ws24{word-spacing:-12.312000px;}
.ws1c{word-spacing:-12.258000px;}
.ws25{word-spacing:-12.222000px;}
.ws16{word-spacing:-11.628000px;}
.ws4{word-spacing:-11.538000px;}
.ws18{word-spacing:-11.484000px;}
.ws19{word-spacing:-11.448000px;}
.wsa{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.576000px;}
.ws13{word-spacing:-8.676000px;}
.wsc{word-spacing:0.000000px;}
._5{margin-left:-2.454000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._4{width:2.980800px;}
._8{width:4.092513px;}
._3{width:5.860527px;}
._16{width:6.945120px;}
._7{width:7.984080px;}
._6{width:9.741840px;}
._12{width:11.335440px;}
._3b{width:12.366000px;}
._10{width:14.031600px;}
._2{width:15.111360px;}
._11{width:17.034720px;}
._1e{width:18.152640px;}
._d{width:19.296480px;}
._c{width:20.849760px;}
._f{width:22.450080px;}
._30{width:23.469840px;}
._e{width:24.486720px;}
._a{width:25.712880px;}
._b{width:27.411120px;}
._1a{width:28.446480px;}
._15{width:29.495520px;}
._19{width:30.502560px;}
._2b{width:32.104080px;}
._1c{width:33.451920px;}
._1b{width:34.886880px;}
._1f{width:36.229440px;}
._21{width:37.672080px;}
._9{width:38.977680px;}
._2f{width:40.043280px;}
._20{width:41.102640px;}
._24{width:42.382800px;}
._23{width:43.777920px;}
._2e{width:45.432960px;}
._2c{width:46.854000px;}
._27{width:48.411600px;}
._18{width:49.475520px;}
._32{width:50.546160px;}
._1d{width:51.692400px;}
._17{width:53.195760px;}
._31{width:54.606240px;}
._28{width:56.052000px;}
._41{width:57.618000px;}
._42{width:59.184000px;}
._3f{width:60.423120px;}
._14{width:61.812960px;}
._13{width:62.835360px;}
._39{width:64.626000px;}
._22{width:65.907600px;}
._3e{width:69.822000px;}
._38{width:75.726000px;}
._36{width:82.774080px;}
._35{width:84.845520px;}
._3c{width:88.302000px;}
._2a{width:91.530000px;}
._29{width:92.718000px;}
._40{width:98.334000px;}
._34{width:100.626720px;}
._3d{width:106.980480px;}
._26{width:108.605520px;}
._2d{width:112.086000px;}
._3a{width:114.306000px;}
._25{width:131.031600px;}
._37{width:140.200800px;}
._33{width:156.700560px;}
.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);}
.fsd{font-size:2.880000px;}
.fs5{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs10{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs11{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.fs4{font-size:95.760000px;}
.y4e{bottom:-18.390000px;}
.y13a{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y10{bottom:1.440000px;}
.y37{bottom:1.605000px;}
.y14{bottom:1.620000px;}
.y19{bottom:1.980000px;}
.y25{bottom:2.340000px;}
.y4d{bottom:2.850000px;}
.y139{bottom:3.045000px;}
.y1b{bottom:3.060000px;}
.y20{bottom:3.240000px;}
.y50{bottom:3.420000px;}
.y22{bottom:3.600000px;}
.y1f{bottom:4.500000px;}
.y1d{bottom:4.680000px;}
.y42{bottom:6.480000px;}
.y3d{bottom:6.645000px;}
.y44{bottom:6.660000px;}
.y119{bottom:7.725000px;}
.ye4{bottom:7.740000px;}
.yf6{bottom:7.905000px;}
.yb5{bottom:7.920000px;}
.ye7{bottom:10.785000px;}
.y35{bottom:10.965000px;}
.yb8{bottom:10.980000px;}
.y161{bottom:11.160000px;}
.y53{bottom:11.700000px;}
.y3b{bottom:12.405000px;}
.y54{bottom:13.680000px;}
.y12{bottom:13.860000px;}
.y17{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y39{bottom:16.365000px;}
.y55{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.y138{bottom:18.345000px;}
.y130{bottom:18.360000px;}
.y131{bottom:18.540000px;}
.y12e{bottom:18.720000px;}
.y4c{bottom:27.330000px;}
.y142{bottom:33.840000px;}
.ye6{bottom:33.870000px;}
.y34{bottom:34.005000px;}
.yb7{bottom:34.020000px;}
.y160{bottom:34.380000px;}
.y16{bottom:42.120000px;}
.y8{bottom:45.540000px;}
.y56{bottom:47.520000px;}
.y4b{bottom:50.550000px;}
.yd{bottom:53.325000px;}
.y141{bottom:56.880000px;}
.y33{bottom:57.045000px;}
.y15f{bottom:57.780000px;}
.y3{bottom:58.320000px;}
.y52{bottom:63.720000px;}
.y4a{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y32{bottom:79.905000px;}
.y15e{bottom:81.180000px;}
.yc{bottom:88.965000px;}
.y49{bottom:97.350000px;}
.y31{bottom:102.990000px;}
.y15d{bottom:104.400000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y221{bottom:111.600000px;}
.y222{bottom:111.780000px;}
.y1f9{bottom:112.500000px;}
.y1d8{bottom:113.040000px;}
.y47{bottom:114.480000px;}
.y185{bottom:119.160000px;}
.y13e{bottom:125.460000px;}
.y153{bottom:126.000000px;}
.y30{bottom:126.030000px;}
.y15c{bottom:127.830000px;}
.yd2{bottom:128.340000px;}
.yb2{bottom:128.700000px;}
.y174{bottom:129.060000px;}
.y1a4{bottom:129.240000px;}
.y83{bottom:129.420000px;}
.y98{bottom:129.960000px;}
.yf4{bottom:131.040000px;}
.y101{bottom:131.940000px;}
.y1f8{bottom:134.640000px;}
.y1d7{bottom:136.080000px;}
.y220{bottom:136.260000px;}
.y46{bottom:137.520000px;}
.y13d{bottom:148.500000px;}
.y152{bottom:148.860000px;}
.y2f{bottom:149.070000px;}
.y15b{bottom:151.050000px;}
.yd1{bottom:151.380000px;}
.yb1{bottom:151.740000px;}
.y173{bottom:151.920000px;}
.y1a3{bottom:152.280000px;}
.y82{bottom:152.640000px;}
.y97{bottom:153.000000px;}
.yf3{bottom:154.080000px;}
.y100{bottom:155.160000px;}
.y1f7{bottom:156.960000px;}
.y1d6{bottom:159.120000px;}
.y45{bottom:160.560000px;}
.y21f{bottom:160.740000px;}
.y184{bottom:165.240000px;}
.y13c{bottom:171.540000px;}
.y151{bottom:171.900000px;}
.y2e{bottom:172.110000px;}
.y43{bottom:172.620000px;}
.y1b5{bottom:174.240000px;}
.yd0{bottom:174.420000px;}
.y15a{bottom:174.450000px;}
.yb0{bottom:174.780000px;}
.y172{bottom:174.960000px;}
.y1a2{bottom:175.320000px;}
.y81{bottom:175.680000px;}
.y96{bottom:176.040000px;}
.yf2{bottom:177.120000px;}
.y11c{bottom:178.200000px;}
.yff{bottom:178.380000px;}
.y1f6{bottom:179.100000px;}
.y1d5{bottom:182.160000px;}
.y21e{bottom:185.220000px;}
.y41{bottom:192.060000px;}
.y13b{bottom:194.580000px;}
.y150{bottom:194.940000px;}
.y2d{bottom:194.970000px;}
.y1b4{bottom:197.280000px;}
.ycf{bottom:197.460000px;}
.yaf{bottom:197.640000px;}
.y171{bottom:198.000000px;}
.y159{bottom:198.210000px;}
.y1a1{bottom:198.360000px;}
.y80{bottom:198.720000px;}
.y95{bottom:198.900000px;}
.yf1{bottom:200.160000px;}
.yfe{bottom:201.420000px;}
.y1d4{bottom:205.020000px;}
.y12b{bottom:206.685000px;}
.y21d{bottom:209.910000px;}
.y40{bottom:211.365000px;}
.y2c{bottom:218.010000px;}
.y1b3{bottom:220.350000px;}
.yce{bottom:220.530000px;}
.yae{bottom:220.710000px;}
.y170{bottom:221.070000px;}
.y158{bottom:221.430000px;}
.y7f{bottom:221.610000px;}
.y94{bottom:221.970000px;}
.yf0{bottom:223.050000px;}
.y1f5{bottom:223.590000px;}
.yfd{bottom:224.490000px;}
.y1d3{bottom:228.090000px;}
.y3f{bottom:230.805000px;}
.y21c{bottom:234.390000px;}
.y137{bottom:237.270000px;}
.y2b{bottom:241.050000px;}
.y1b2{bottom:243.390000px;}
.ycd{bottom:243.570000px;}
.yad{bottom:243.750000px;}
.y16f{bottom:244.110000px;}
.y1a0{bottom:244.290000px;}
.y7e{bottom:244.650000px;}
.y93{bottom:245.010000px;}
.y1f4{bottom:245.910000px;}
.yef{bottom:246.090000px;}
.yfc{bottom:247.530000px;}
.y3e{bottom:250.245000px;}
.y1d2{bottom:251.130000px;}
.y21b{bottom:258.870000px;}
.y2a{bottom:264.090000px;}
.ycc{bottom:266.430000px;}
.yac{bottom:266.790000px;}
.y16e{bottom:266.970000px;}
.y19f{bottom:267.330000px;}
.y7d{bottom:267.690000px;}
.y157{bottom:267.870000px;}
.y92{bottom:268.050000px;}
.y1f3{bottom:268.230000px;}
.yee{bottom:269.130000px;}
.y3c{bottom:269.685000px;}
.yfb{bottom:270.750000px;}
.y1d1{bottom:274.170000px;}
.y136{bottom:283.350000px;}
.y21a{bottom:283.530000px;}
.y29{bottom:287.130000px;}
.y14f{bottom:287.310000px;}
.y3a{bottom:289.125000px;}
.ycb{bottom:289.470000px;}
.yab{bottom:289.830000px;}
.y16d{bottom:290.010000px;}
.y19e{bottom:290.370000px;}
.y7c{bottom:290.730000px;}
.y91{bottom:291.090000px;}
.yed{bottom:292.170000px;}
.yfa{bottom:293.790000px;}
.y1d0{bottom:297.210000px;}
.y135{bottom:298.650000px;}
.y219{bottom:308.010000px;}
.y28{bottom:310.170000px;}
.y14e{bottom:310.350000px;}
.y19d{bottom:310.890000px;}
.yca{bottom:311.250000px;}
.y1b1{bottom:312.330000px;}
.yaa{bottom:312.690000px;}
.y16c{bottom:313.050000px;}
.y7b{bottom:313.770000px;}
.y156{bottom:313.950000px;}
.y90{bottom:314.130000px;}
.y38{bottom:314.325000px;}
.yec{bottom:315.210000px;}
.yf9{bottom:316.830000px;}
.y1cf{bottom:320.250000px;}
.y134{bottom:329.430000px;}
.y19c{bottom:331.230000px;}
.y218{bottom:332.670000px;}
.yc9{bottom:333.030000px;}
.y27{bottom:333.060000px;}
.y14d{bottom:333.390000px;}
.y1f2{bottom:334.830000px;}
.y1b0{bottom:335.370000px;}
.ya9{bottom:335.730000px;}
.y16b{bottom:336.090000px;}
.y7a{bottom:336.810000px;}
.y8f{bottom:336.990000px;}
.y11b{bottom:337.170000px;}
.yeb{bottom:338.070000px;}
.yf8{bottom:339.870000px;}
.y36{bottom:340.245000px;}
.y1ce{bottom:343.110000px;}
.y11a{bottom:346.725000px;}
.y26{bottom:346.905000px;}
.y12c{bottom:348.690000px;}
.yf7{bottom:351.945000px;}
.y19b{bottom:354.270000px;}
.yc8{bottom:356.070000px;}
.y14c{bottom:356.430000px;}
.y1f1{bottom:357.150000px;}
.y1af{bottom:358.410000px;}
.ya8{bottom:358.770000px;}
.y16a{bottom:359.130000px;}
.y79{bottom:359.670000px;}
.y8e{bottom:360.030000px;}
.yea{bottom:361.110000px;}
.y1cd{bottom:366.150000px;}
.y118{bottom:369.765000px;}
.yf5{bottom:374.805000px;}
.yc7{bottom:375.870000px;}
.y19a{bottom:377.310000px;}
.y14b{bottom:379.290000px;}
.y1ae{bottom:381.450000px;}
.y217{bottom:381.630000px;}
.ya7{bottom:381.810000px;}
.y169{bottom:382.170000px;}
.y78{bottom:382.710000px;}
.y8d{bottom:383.070000px;}
.ye9{bottom:384.150000px;}
.y1cc{bottom:389.370000px;}
.y133{bottom:390.810000px;}
.y199{bottom:400.350000px;}
.y1f0{bottom:401.610000px;}
.y14a{bottom:402.330000px;}
.y1ad{bottom:404.490000px;}
.ye8{bottom:404.670000px;}
.ya6{bottom:404.850000px;}
.y168{bottom:405.030000px;}
.y77{bottom:405.750000px;}
.y8c{bottom:406.110000px;}
.y216{bottom:406.290000px;}
.y1cb{bottom:412.590000px;}
.ye5{bottom:414.225000px;}
.yc6{bottom:420.150000px;}
.y132{bottom:421.410000px;}
.y198{bottom:423.390000px;}
.y1ef{bottom:423.930000px;}
.y149{bottom:425.370000px;}
.y1ac{bottom:427.530000px;}
.ya5{bottom:427.890000px;}
.y167{bottom:428.070000px;}
.y76{bottom:428.790000px;}
.y8b{bottom:429.150000px;}
.y215{bottom:430.770000px;}
.y1ca{bottom:435.990000px;}
.yc5{bottom:440.490000px;}
.y1ee{bottom:446.115000px;}
.y197{bottom:446.475000px;}
.y148{bottom:448.455000px;}
.y183{bottom:448.995000px;}
.y1ab{bottom:450.435000px;}
.ya4{bottom:450.795000px;}
.y166{bottom:451.155000px;}
.y75{bottom:451.875000px;}
.y8a{bottom:452.055000px;}
.y214{bottom:455.295000px;}
.y1c9{bottom:459.435000px;}
.ye3{bottom:460.155000px;}
.yc4{bottom:463.575000px;}
.y1ed{bottom:468.435000px;}
.y196{bottom:469.335000px;}
.y182{bottom:469.515000px;}
.y147{bottom:471.495000px;}
.y1aa{bottom:473.475000px;}
.ya3{bottom:473.835000px;}
.y165{bottom:474.195000px;}
.y74{bottom:474.915000px;}
.y89{bottom:475.095000px;}
.y213{bottom:479.955000px;}
.y1c8{bottom:482.655000px;}
.y12f{bottom:482.835000px;}
.yc3{bottom:486.615000px;}
.y1ec{bottom:490.575000px;}
.y195{bottom:492.375000px;}
.y181{bottom:492.555000px;}
.y146{bottom:494.535000px;}
.y1a9{bottom:496.515000px;}
.ya2{bottom:496.875000px;}
.y164{bottom:497.235000px;}
.y73{bottom:497.775000px;}
.y88{bottom:498.135000px;}
.y212{bottom:504.435000px;}
.y1c7{bottom:506.055000px;}
.yc2{bottom:509.655000px;}
.y1eb{bottom:512.895000px;}
.y12d{bottom:513.435000px;}
.y194{bottom:515.415000px;}
.y180{bottom:515.595000px;}
.y145{bottom:517.395000px;}
.y1a8{bottom:519.555000px;}
.ya1{bottom:519.915000px;}
.y163{bottom:520.275000px;}
.y72{bottom:520.995000px;}
.y87{bottom:521.175000px;}
.y211{bottom:528.915000px;}
.y1c6{bottom:529.275000px;}
.yc1{bottom:532.695000px;}
.y1ea{bottom:535.035000px;}
.y193{bottom:538.455000px;}
.y17f{bottom:538.635000px;}
.y144{bottom:540.435000px;}
.y1a7{bottom:540.615000px;}
.y162{bottom:542.415000px;}
.ya0{bottom:542.955000px;}
.y71{bottom:544.215000px;}
.y23d{bottom:544.575000px;}
.y1a6{bottom:550.695000px;}
.y1c5{bottom:552.675000px;}
.y210{bottom:553.575000px;}
.y155{bottom:553.935000px;}
.yc0{bottom:555.555000px;}
.y1e9{bottom:557.355000px;}
.y143{bottom:560.955000px;}
.y192{bottom:561.495000px;}
.y17e{bottom:561.675000px;}
.y9f{bottom:565.995000px;}
.y70{bottom:567.255000px;}
.y12a{bottom:567.435000px;}
.y140{bottom:570.495000px;}
.y1c4{bottom:576.075000px;}
.y20f{bottom:578.055000px;}
.ybf{bottom:578.595000px;}
.y1e8{bottom:579.675000px;}
.y23b{bottom:582.015000px;}
.y191{bottom:584.355000px;}
.y17d{bottom:584.535000px;}
.y9e{bottom:589.215000px;}
.y6f{bottom:590.115000px;}
.y86{bottom:590.295000px;}
.y23c{bottom:590.475000px;}
.y1a5{bottom:596.775000px;}
.y1c3{bottom:599.295000px;}
.ybe{bottom:601.635000px;}
.y1e7{bottom:601.815000px;}
.y20e{bottom:602.535000px;}
.y23a{bottom:603.255000px;}
.y190{bottom:607.395000px;}
.y17c{bottom:607.575000px;}
.y9d{bottom:612.435000px;}
.y6e{bottom:613.155000px;}
.y85{bottom:613.515000px;}
.y1c2{bottom:622.695000px;}
.y1e6{bottom:624.135000px;}
.ybd{bottom:624.675000px;}
.y20d{bottom:627.195000px;}
.y18f{bottom:630.435000px;}
.y17b{bottom:630.615000px;}
.y117{bottom:633.675000px;}
.y9c{bottom:635.655000px;}
.ye2{bottom:636.195000px;}
.y6d{bottom:636.375000px;}
.y84{bottom:636.555000px;}
.y13f{bottom:639.435000px;}
.y1c1{bottom:645.915000px;}
.y1e5{bottom:646.275000px;}
.ybc{bottom:647.715000px;}
.y20c{bottom:651.675000px;}
.y18e{bottom:653.475000px;}
.y17a{bottom:653.655000px;}
.y116{bottom:656.715000px;}
.y9b{bottom:658.695000px;}
.ye1{bottom:659.235000px;}
.y6c{bottom:659.595000px;}
.y239{bottom:667.695000px;}
.y1e4{bottom:668.595000px;}
.y1c0{bottom:669.315000px;}
.ybb{bottom:670.755000px;}
.y20b{bottom:676.185000px;}
.y18d{bottom:676.545000px;}
.y179{bottom:676.725000px;}
.y115{bottom:679.785000px;}
.y9a{bottom:682.125000px;}
.ye0{bottom:682.305000px;}
.y6b{bottom:682.485000px;}
.y238{bottom:689.145000px;}
.y1e3{bottom:690.765000px;}
.y24{bottom:692.025000px;}
.y1bf{bottom:692.745000px;}
.yba{bottom:693.645000px;}
.y178{bottom:699.585000px;}
.y20a{bottom:700.845000px;}
.y23{bottom:702.285000px;}
.y114{bottom:702.825000px;}
.y99{bottom:705.345000px;}
.y6a{bottom:705.525000px;}
.y237{bottom:708.765000px;}
.y1e2{bottom:713.085000px;}
.y1be{bottom:715.965000px;}
.yb9{bottom:716.685000px;}
.y21{bottom:717.585000px;}
.y177{bottom:721.365000px;}
.y18c{bottom:722.445000px;}
.y209{bottom:725.325000px;}
.y113{bottom:726.045000px;}
.y236{bottom:727.305000px;}
.ydf{bottom:728.205000px;}
.y69{bottom:728.565000px;}
.yb6{bottom:728.745000px;}
.y176{bottom:732.165000px;}
.y1e{bottom:734.685000px;}
.y1e1{bottom:735.225000px;}
.y1bd{bottom:739.365000px;}
.y18b{bottom:745.485000px;}
.y235{bottom:748.905000px;}
.y112{bottom:749.265000px;}
.y208{bottom:749.805000px;}
.yde{bottom:751.245000px;}
.y68{bottom:751.605000px;}
.y1c{bottom:753.045000px;}
.y1e0{bottom:757.545000px;}
.y1bc{bottom:762.585000px;}
.y18a{bottom:768.525000px;}
.y1a{bottom:770.145000px;}
.y234{bottom:770.325000px;}
.y111{bottom:772.305000px;}
.ydd{bottom:774.285000px;}
.y207{bottom:774.465000px;}
.y67{bottom:774.645000px;}
.yb4{bottom:774.825000px;}
.y175{bottom:778.245000px;}
.y1df{bottom:779.865000px;}
.y18{bottom:785.445000px;}
.y1bb{bottom:785.985000px;}
.y189{bottom:791.565000px;}
.y233{bottom:791.745000px;}
.y15{bottom:793.725000px;}
.y110{bottom:795.525000px;}
.ydc{bottom:797.325000px;}
.y66{bottom:797.685000px;}
.y206{bottom:798.945000px;}
.y1de{bottom:802.005000px;}
.y1ba{bottom:809.385000px;}
.y232{bottom:813.345000px;}
.y188{bottom:814.605000px;}
.y129{bottom:818.025000px;}
.y10f{bottom:818.925000px;}
.ydb{bottom:820.365000px;}
.y65{bottom:820.545000px;}
.y205{bottom:823.425000px;}
.y1dd{bottom:824.325000px;}
.y187{bottom:826.665000px;}
.y1b9{bottom:832.605000px;}
.y231{bottom:832.785000px;}
.y128{bottom:841.065000px;}
.y10e{bottom:841.965000px;}
.yda{bottom:843.405000px;}
.y64{bottom:843.585000px;}
.y1dc{bottom:846.465000px;}
.y204{bottom:848.085000px;}
.y13{bottom:849.885000px;}
.y230{bottom:851.505000px;}
.y1b8{bottom:855.825000px;}
.y11{bottom:859.065000px;}
.y127{bottom:864.285000px;}
.y10d{bottom:865.185000px;}
.yd9{bottom:866.265000px;}
.y63{bottom:866.625000px;}
.y1b7{bottom:867.885000px;}
.y1db{bottom:868.785000px;}
.y186{bottom:872.565000px;}
.y22f{bottom:872.925000px;}
.y154{bottom:879.945000px;}
.yf{bottom:886.965000px;}
.y126{bottom:887.505000px;}
.y10c{bottom:888.405000px;}
.yd8{bottom:889.305000px;}
.y62{bottom:889.665000px;}
.y1b6{bottom:890.925000px;}
.yb{bottom:892.185000px;}
.y22e{bottom:894.345000px;}
.y203{bottom:897.225000px;}
.y125{bottom:910.770000px;}
.y10b{bottom:911.490000px;}
.yd7{bottom:912.390000px;}
.y61{bottom:912.750000px;}
.y1da{bottom:913.290000px;}
.y22d{bottom:915.990000px;}
.y202{bottom:921.750000px;}
.y124{bottom:933.990000px;}
.y10a{bottom:934.530000px;}
.yd6{bottom:935.430000px;}
.y1d9{bottom:935.610000px;}
.y60{bottom:935.790000px;}
.y22c{bottom:937.410000px;}
.y201{bottom:946.230000px;}
.y22b{bottom:957.030000px;}
.y123{bottom:957.210000px;}
.y109{bottom:957.750000px;}
.yd5{bottom:958.470000px;}
.y5f{bottom:958.650000px;}
.y200{bottom:970.890000px;}
.y22a{bottom:975.570000px;}
.y122{bottom:980.250000px;}
.y108{bottom:980.790000px;}
.yd4{bottom:981.330000px;}
.y5e{bottom:981.690000px;}
.y1ff{bottom:995.370000px;}
.y229{bottom:996.990000px;}
.y121{bottom:1003.650000px;}
.y107{bottom:1003.830000px;}
.yd3{bottom:1004.550000px;}
.y5d{bottom:1004.730000px;}
.yb3{bottom:1007.250000px;}
.ya{bottom:1013.550000px;}
.y228{bottom:1018.590000px;}
.y1fe{bottom:1019.850000px;}
.y106{bottom:1026.870000px;}
.y5c{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y227{bottom:1040.010000px;}
.y48{bottom:1043.280000px;}
.y1fd{bottom:1044.510000px;}
.y105{bottom:1049.910000px;}
.y5b{bottom:1050.810000px;}
.y226{bottom:1059.630000px;}
.y1fc{bottom:1068.990000px;}
.y120{bottom:1073.130000px;}
.y104{bottom:1073.310000px;}
.y5a{bottom:1073.850000px;}
.y225{bottom:1078.170000px;}
.y1fb{bottom:1093.470000px;}
.y11f{bottom:1096.170000px;}
.y103{bottom:1096.530000px;}
.y59{bottom:1096.710000px;}
.y224{bottom:1099.590000px;}
.y1fa{bottom:1118.130000px;}
.y11e{bottom:1119.210000px;}
.y102{bottom:1119.570000px;}
.y58{bottom:1119.750000px;}
.y223{bottom:1121.190000px;}
.y11d{bottom:1142.610000px;}
.y57{bottom:1142.790000px;}
.y51{bottom:1161.000000px;}
.y4f{bottom:1185.840000px;}
.h2b{height:1.999688px;}
.h46{height:2.179688px;}
.hb{height:5.220000px;}
.h20{height:6.645000px;}
.h12{height:8.280000px;}
.hf{height:9.180000px;}
.h1c{height:10.260000px;}
.hc{height:12.190430px;}
.h14{height:15.300000px;}
.h21{height:16.543828px;}
.h16{height:17.100000px;}
.h30{height:17.640000px;}
.h18{height:18.360000px;}
.h28{height:19.296000px;}
.h26{height:19.425000px;}
.h29{height:19.440000px;}
.h13{height:21.055781px;}
.h3c{height:22.845000px;}
.h10{height:22.975313px;}
.h3e{height:23.025000px;}
.h55{height:23.040000px;}
.h24{height:25.185000px;}
.h22{height:25.905000px;}
.h31{height:27.898500px;}
.hd{height:27.900000px;}
.h2{height:28.798500px;}
.h23{height:29.145586px;}
.h45{height:30.585000px;}
.h42{height:30.600000px;}
.h44{height:30.636000px;}
.h43{height:30.780000px;}
.h41{height:30.960000px;}
.h35{height:31.605469px;}
.h53{height:34.330078px;}
.h33{height:34.684453px;}
.h1d{height:35.595703px;}
.h38{height:36.509766px;}
.h4b{height:38.689453px;}
.h27{height:40.472227px;}
.h34{height:40.842773px;}
.h1f{height:40.869141px;}
.h56{height:41.291016px;}
.h25{height:41.493516px;}
.h17{height:44.820000px;}
.he{height:44.860781px;}
.h1a{height:45.695391px;}
.h50{height:45.900000px;}
.h3a{height:45.921000px;}
.h52{height:46.065000px;}
.h4e{height:46.078500px;}
.h37{height:46.080000px;}
.h19{height:50.100469px;}
.h3{height:50.597578px;}
.h15{height:53.393555px;}
.h2e{height:54.000000px;}
.h6{height:54.457031px;}
.h2f{height:56.084062px;}
.h11{height:56.160000px;}
.h8{height:57.051211px;}
.h1b{height:59.088867px;}
.h9{height:60.136655px;}
.h2d{height:63.180000px;}
.ha{height:64.853086px;}
.h48{height:68.925000px;}
.h4{height:70.664062px;}
.h32{height:72.562500px;}
.h7{height:106.942500px;}
.h2c{height:114.660000px;}
.h5{height:124.590000px;}
.h2a{height:141.696000px;}
.h47{height:147.270000px;}
.h54{height:194.970000px;}
.h49{height:205.950000px;}
.h51{height:212.970000px;}
.h36{height:224.130000px;}
.h3f{height:239.790000px;}
.h3b{height:250.755000px;}
.h3d{height:252.915000px;}
.h39{height:257.430000px;}
.h4d{height:275.430000px;}
.h4f{height:282.315000px;}
.h4c{height:284.610000px;}
.h4a{height:326.010000px;}
.h1e{height:345.120000px;}
.h40{height:360.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w17{width:60.660000px;}
.w15{width:80.989500px;}
.w4{width:101.329500px;}
.w9{width:154.429500px;}
.w16{width:182.370000px;}
.w8{width:243.915000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w13{width:324.015000px;}
.w14{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.wa{width:520.650000px;}
.wd{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;}
.x18{left:6.465000px;}
.xa{left:7.725000px;}
.x16{left:17.809500px;}
.x1a{left:32.565000px;}
.xe{left:38.370000px;}
.x7{left:56.863500px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x15{left:122.025000px;}
.x1b{left:143.445000px;}
.x17{left:164.385000px;}
.x4{left:170.130000px;}
.x1e{left:189.030000px;}
.x6{left:209.385000px;}
.xf{left:221.115000px;}
.x8{left:241.768500px;}
.xb{left:263.385000px;}
.x10{left:273.705000px;}
.x11{left:303.405000px;}
.x1c{left:324.030000px;}
.x12{left:341.025000px;}
.x1f{left:371.415000px;}
.x19{left:444.720000px;}
.x14{left:450.480000px;}
.xc{left:458.220000px;}
.xd{left:462.705000px;}
.x3{left:521.220000px;}
.x9{left:540.120000px;}
.x13{left:573.990000px;}
.x1d{left:674.970000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls35{letter-spacing:-1.552000pt;}
.ls32{letter-spacing:-1.440000pt;}
.ls2a{letter-spacing:-1.424000pt;}
.ls22{letter-spacing:-1.392000pt;}
.ls21{letter-spacing:-1.360000pt;}
.ls33{letter-spacing:-1.328000pt;}
.ls4{letter-spacing:-1.312000pt;}
.ls31{letter-spacing:-1.248000pt;}
.ls19{letter-spacing:-1.232000pt;}
.ls36{letter-spacing:-1.200000pt;}
.ls2f{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-1.104000pt;}
.ls30{letter-spacing:-1.024000pt;}
.ls20{letter-spacing:-0.800000pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.272000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.189333pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls3b{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.086933pt;}
.ls29{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.080000pt;}
.ls25{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.342933pt;}
.ls9{letter-spacing:0.368000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.496000pt;}
.lsc{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.595840pt;}
.ls1a{letter-spacing:0.608000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.688000pt;}
.ls3a{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.056000pt;}
.ls38{letter-spacing:1.136000pt;}
.lsb{letter-spacing:1.168000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.872000pt;}
.ls24{letter-spacing:3.152000pt;}
.lse{letter-spacing:18.560000pt;}
.ls2c{letter-spacing:29.392000pt;}
.ws10{word-spacing:-48.000000pt;}
.ws1{word-spacing:-19.918080pt;}
.ws8{word-spacing:-18.167040pt;}
.ws6{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.425600pt;}
.wse{word-spacing:-14.192640pt;}
.ws7{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws21{word-spacing:-12.992000pt;}
.ws29{word-spacing:-12.912000pt;}
.wsf{word-spacing:-12.736000pt;}
.ws2e{word-spacing:-12.400000pt;}
.ws28{word-spacing:-12.352000pt;}
.ws20{word-spacing:-12.336000pt;}
.ws2c{word-spacing:-12.272000pt;}
.ws15{word-spacing:-12.256000pt;}
.ws2d{word-spacing:-12.240000pt;}
.ws2a{word-spacing:-12.224000pt;}
.ws9{word-spacing:-12.192000pt;}
.ws17{word-spacing:-12.176000pt;}
.ws2b{word-spacing:-12.096000pt;}
.ws1e{word-spacing:-11.760000pt;}
.ws1d{word-spacing:-11.696000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws2f{word-spacing:-11.664000pt;}
.ws14{word-spacing:-11.648000pt;}
.ws12{word-spacing:-11.616000pt;}
.wsd{word-spacing:-11.599467pt;}
.ws5{word-spacing:-11.568000pt;}
.ws1a{word-spacing:-11.536000pt;}
.ws1b{word-spacing:-11.424000pt;}
.ws1f{word-spacing:-11.408000pt;}
.ws11{word-spacing:-11.312000pt;}
.ws23{word-spacing:-11.168000pt;}
.ws26{word-spacing:-11.088000pt;}
.ws22{word-spacing:-11.072000pt;}
.ws27{word-spacing:-10.992000pt;}
.ws24{word-spacing:-10.944000pt;}
.ws1c{word-spacing:-10.896000pt;}
.ws25{word-spacing:-10.864000pt;}
.ws16{word-spacing:-10.336000pt;}
.ws4{word-spacing:-10.256000pt;}
.ws18{word-spacing:-10.208000pt;}
.ws19{word-spacing:-10.176000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.512000pt;}
.ws13{word-spacing:-7.712000pt;}
.wsc{word-spacing:0.000000pt;}
._5{margin-left:-2.181333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._4{width:2.649600pt;}
._8{width:3.637789pt;}
._3{width:5.209358pt;}
._16{width:6.173440pt;}
._7{width:7.096960pt;}
._6{width:8.659413pt;}
._12{width:10.075947pt;}
._3b{width:10.992000pt;}
._10{width:12.472533pt;}
._2{width:13.432320pt;}
._11{width:15.141973pt;}
._1e{width:16.135680pt;}
._d{width:17.152427pt;}
._c{width:18.533120pt;}
._f{width:19.955627pt;}
._30{width:20.862080pt;}
._e{width:21.765973pt;}
._a{width:22.855893pt;}
._b{width:24.365440pt;}
._1a{width:25.285760pt;}
._15{width:26.218240pt;}
._19{width:27.113387pt;}
._2b{width:28.536960pt;}
._1c{width:29.735040pt;}
._1b{width:31.010560pt;}
._1f{width:32.203947pt;}
._21{width:33.486293pt;}
._9{width:34.646827pt;}
._2f{width:35.594027pt;}
._20{width:36.535680pt;}
._24{width:37.673600pt;}
._23{width:38.913707pt;}
._2e{width:40.384853pt;}
._2c{width:41.648000pt;}
._27{width:43.032533pt;}
._18{width:43.978240pt;}
._32{width:44.929920pt;}
._1d{width:45.948800pt;}
._17{width:47.285120pt;}
._31{width:48.538880pt;}
._28{width:49.824000pt;}
._41{width:51.216000pt;}
._42{width:52.608000pt;}
._3f{width:53.709440pt;}
._14{width:54.944853pt;}
._13{width:55.853653pt;}
._39{width:57.445333pt;}
._22{width:58.584533pt;}
._3e{width:62.064000pt;}
._38{width:67.312000pt;}
._36{width:73.576960pt;}
._35{width:75.418240pt;}
._3c{width:78.490667pt;}
._2a{width:81.360000pt;}
._29{width:82.416000pt;}
._40{width:87.408000pt;}
._34{width:89.445973pt;}
._3d{width:95.093760pt;}
._26{width:96.538240pt;}
._2d{width:99.632000pt;}
._3a{width:101.605333pt;}
._25{width:116.472533pt;}
._37{width:124.622933pt;}
._33{width:139.289387pt;}
.fsd{font-size:2.560000pt;}
.fs5{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs10{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs11{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.fs4{font-size:85.120000pt;}
.y4e{bottom:-16.346667pt;}
.y13a{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.280000pt;}
.y37{bottom:1.426667pt;}
.y14{bottom:1.440000pt;}
.y19{bottom:1.760000pt;}
.y25{bottom:2.080000pt;}
.y4d{bottom:2.533333pt;}
.y139{bottom:2.706667pt;}
.y1b{bottom:2.720000pt;}
.y20{bottom:2.880000pt;}
.y50{bottom:3.040000pt;}
.y22{bottom:3.200000pt;}
.y1f{bottom:4.000000pt;}
.y1d{bottom:4.160000pt;}
.y42{bottom:5.760000pt;}
.y3d{bottom:5.906667pt;}
.y44{bottom:5.920000pt;}
.y119{bottom:6.866667pt;}
.ye4{bottom:6.880000pt;}
.yf6{bottom:7.026667pt;}
.yb5{bottom:7.040000pt;}
.ye7{bottom:9.586667pt;}
.y35{bottom:9.746667pt;}
.yb8{bottom:9.760000pt;}
.y161{bottom:9.920000pt;}
.y53{bottom:10.400000pt;}
.y3b{bottom:11.026667pt;}
.y54{bottom:12.160000pt;}
.y12{bottom:12.320000pt;}
.y17{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y39{bottom:14.546667pt;}
.y55{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.y138{bottom:16.306667pt;}
.y130{bottom:16.320000pt;}
.y131{bottom:16.480000pt;}
.y12e{bottom:16.640000pt;}
.y4c{bottom:24.293333pt;}
.y142{bottom:30.080000pt;}
.ye6{bottom:30.106667pt;}
.y34{bottom:30.226667pt;}
.yb7{bottom:30.240000pt;}
.y160{bottom:30.560000pt;}
.y16{bottom:37.440000pt;}
.y8{bottom:40.480000pt;}
.y56{bottom:42.240000pt;}
.y4b{bottom:44.933333pt;}
.yd{bottom:47.400000pt;}
.y141{bottom:50.560000pt;}
.y33{bottom:50.706667pt;}
.y15f{bottom:51.360000pt;}
.y3{bottom:51.840000pt;}
.y52{bottom:56.640000pt;}
.y4a{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y32{bottom:71.026667pt;}
.y15e{bottom:72.160000pt;}
.yc{bottom:79.080000pt;}
.y49{bottom:86.533333pt;}
.y31{bottom:91.546667pt;}
.y15d{bottom:92.800000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y221{bottom:99.200000pt;}
.y222{bottom:99.360000pt;}
.y1f9{bottom:100.000000pt;}
.y1d8{bottom:100.480000pt;}
.y47{bottom:101.760000pt;}
.y185{bottom:105.920000pt;}
.y13e{bottom:111.520000pt;}
.y153{bottom:112.000000pt;}
.y30{bottom:112.026667pt;}
.y15c{bottom:113.626667pt;}
.yd2{bottom:114.080000pt;}
.yb2{bottom:114.400000pt;}
.y174{bottom:114.720000pt;}
.y1a4{bottom:114.880000pt;}
.y83{bottom:115.040000pt;}
.y98{bottom:115.520000pt;}
.yf4{bottom:116.480000pt;}
.y101{bottom:117.280000pt;}
.y1f8{bottom:119.680000pt;}
.y1d7{bottom:120.960000pt;}
.y220{bottom:121.120000pt;}
.y46{bottom:122.240000pt;}
.y13d{bottom:132.000000pt;}
.y152{bottom:132.320000pt;}
.y2f{bottom:132.506667pt;}
.y15b{bottom:134.266667pt;}
.yd1{bottom:134.560000pt;}
.yb1{bottom:134.880000pt;}
.y173{bottom:135.040000pt;}
.y1a3{bottom:135.360000pt;}
.y82{bottom:135.680000pt;}
.y97{bottom:136.000000pt;}
.yf3{bottom:136.960000pt;}
.y100{bottom:137.920000pt;}
.y1f7{bottom:139.520000pt;}
.y1d6{bottom:141.440000pt;}
.y45{bottom:142.720000pt;}
.y21f{bottom:142.880000pt;}
.y184{bottom:146.880000pt;}
.y13c{bottom:152.480000pt;}
.y151{bottom:152.800000pt;}
.y2e{bottom:152.986667pt;}
.y43{bottom:153.440000pt;}
.y1b5{bottom:154.880000pt;}
.yd0{bottom:155.040000pt;}
.y15a{bottom:155.066667pt;}
.yb0{bottom:155.360000pt;}
.y172{bottom:155.520000pt;}
.y1a2{bottom:155.840000pt;}
.y81{bottom:156.160000pt;}
.y96{bottom:156.480000pt;}
.yf2{bottom:157.440000pt;}
.y11c{bottom:158.400000pt;}
.yff{bottom:158.560000pt;}
.y1f6{bottom:159.200000pt;}
.y1d5{bottom:161.920000pt;}
.y21e{bottom:164.640000pt;}
.y41{bottom:170.720000pt;}
.y13b{bottom:172.960000pt;}
.y150{bottom:173.280000pt;}
.y2d{bottom:173.306667pt;}
.y1b4{bottom:175.360000pt;}
.ycf{bottom:175.520000pt;}
.yaf{bottom:175.680000pt;}
.y171{bottom:176.000000pt;}
.y159{bottom:176.186667pt;}
.y1a1{bottom:176.320000pt;}
.y80{bottom:176.640000pt;}
.y95{bottom:176.800000pt;}
.yf1{bottom:177.920000pt;}
.yfe{bottom:179.040000pt;}
.y1d4{bottom:182.240000pt;}
.y12b{bottom:183.720000pt;}
.y21d{bottom:186.586667pt;}
.y40{bottom:187.880000pt;}
.y2c{bottom:193.786667pt;}
.y1b3{bottom:195.866667pt;}
.yce{bottom:196.026667pt;}
.yae{bottom:196.186667pt;}
.y170{bottom:196.506667pt;}
.y158{bottom:196.826667pt;}
.y7f{bottom:196.986667pt;}
.y94{bottom:197.306667pt;}
.yf0{bottom:198.266667pt;}
.y1f5{bottom:198.746667pt;}
.yfd{bottom:199.546667pt;}
.y1d3{bottom:202.746667pt;}
.y3f{bottom:205.160000pt;}
.y21c{bottom:208.346667pt;}
.y137{bottom:210.906667pt;}
.y2b{bottom:214.266667pt;}
.y1b2{bottom:216.346667pt;}
.ycd{bottom:216.506667pt;}
.yad{bottom:216.666667pt;}
.y16f{bottom:216.986667pt;}
.y1a0{bottom:217.146667pt;}
.y7e{bottom:217.466667pt;}
.y93{bottom:217.786667pt;}
.y1f4{bottom:218.586667pt;}
.yef{bottom:218.746667pt;}
.yfc{bottom:220.026667pt;}
.y3e{bottom:222.440000pt;}
.y1d2{bottom:223.226667pt;}
.y21b{bottom:230.106667pt;}
.y2a{bottom:234.746667pt;}
.ycc{bottom:236.826667pt;}
.yac{bottom:237.146667pt;}
.y16e{bottom:237.306667pt;}
.y19f{bottom:237.626667pt;}
.y7d{bottom:237.946667pt;}
.y157{bottom:238.106667pt;}
.y92{bottom:238.266667pt;}
.y1f3{bottom:238.426667pt;}
.yee{bottom:239.226667pt;}
.y3c{bottom:239.720000pt;}
.yfb{bottom:240.666667pt;}
.y1d1{bottom:243.706667pt;}
.y136{bottom:251.866667pt;}
.y21a{bottom:252.026667pt;}
.y29{bottom:255.226667pt;}
.y14f{bottom:255.386667pt;}
.y3a{bottom:257.000000pt;}
.ycb{bottom:257.306667pt;}
.yab{bottom:257.626667pt;}
.y16d{bottom:257.786667pt;}
.y19e{bottom:258.106667pt;}
.y7c{bottom:258.426667pt;}
.y91{bottom:258.746667pt;}
.yed{bottom:259.706667pt;}
.yfa{bottom:261.146667pt;}
.y1d0{bottom:264.186667pt;}
.y135{bottom:265.466667pt;}
.y219{bottom:273.786667pt;}
.y28{bottom:275.706667pt;}
.y14e{bottom:275.866667pt;}
.y19d{bottom:276.346667pt;}
.yca{bottom:276.666667pt;}
.y1b1{bottom:277.626667pt;}
.yaa{bottom:277.946667pt;}
.y16c{bottom:278.266667pt;}
.y7b{bottom:278.906667pt;}
.y156{bottom:279.066667pt;}
.y90{bottom:279.226667pt;}
.y38{bottom:279.400000pt;}
.yec{bottom:280.186667pt;}
.yf9{bottom:281.626667pt;}
.y1cf{bottom:284.666667pt;}
.y134{bottom:292.826667pt;}
.y19c{bottom:294.426667pt;}
.y218{bottom:295.706667pt;}
.yc9{bottom:296.026667pt;}
.y27{bottom:296.053333pt;}
.y14d{bottom:296.346667pt;}
.y1f2{bottom:297.626667pt;}
.y1b0{bottom:298.106667pt;}
.ya9{bottom:298.426667pt;}
.y16b{bottom:298.746667pt;}
.y7a{bottom:299.386667pt;}
.y8f{bottom:299.546667pt;}
.y11b{bottom:299.706667pt;}
.yeb{bottom:300.506667pt;}
.yf8{bottom:302.106667pt;}
.y36{bottom:302.440000pt;}
.y1ce{bottom:304.986667pt;}
.y11a{bottom:308.200000pt;}
.y26{bottom:308.360000pt;}
.y12c{bottom:309.946667pt;}
.yf7{bottom:312.840000pt;}
.y19b{bottom:314.906667pt;}
.yc8{bottom:316.506667pt;}
.y14c{bottom:316.826667pt;}
.y1f1{bottom:317.466667pt;}
.y1af{bottom:318.586667pt;}
.ya8{bottom:318.906667pt;}
.y16a{bottom:319.226667pt;}
.y79{bottom:319.706667pt;}
.y8e{bottom:320.026667pt;}
.yea{bottom:320.986667pt;}
.y1cd{bottom:325.466667pt;}
.y118{bottom:328.680000pt;}
.yf5{bottom:333.160000pt;}
.yc7{bottom:334.106667pt;}
.y19a{bottom:335.386667pt;}
.y14b{bottom:337.146667pt;}
.y1ae{bottom:339.066667pt;}
.y217{bottom:339.226667pt;}
.ya7{bottom:339.386667pt;}
.y169{bottom:339.706667pt;}
.y78{bottom:340.186667pt;}
.y8d{bottom:340.506667pt;}
.ye9{bottom:341.466667pt;}
.y1cc{bottom:346.106667pt;}
.y133{bottom:347.386667pt;}
.y199{bottom:355.866667pt;}
.y1f0{bottom:356.986667pt;}
.y14a{bottom:357.626667pt;}
.y1ad{bottom:359.546667pt;}
.ye8{bottom:359.706667pt;}
.ya6{bottom:359.866667pt;}
.y168{bottom:360.026667pt;}
.y77{bottom:360.666667pt;}
.y8c{bottom:360.986667pt;}
.y216{bottom:361.146667pt;}
.y1cb{bottom:366.746667pt;}
.ye5{bottom:368.200000pt;}
.yc6{bottom:373.466667pt;}
.y132{bottom:374.586667pt;}
.y198{bottom:376.346667pt;}
.y1ef{bottom:376.826667pt;}
.y149{bottom:378.106667pt;}
.y1ac{bottom:380.026667pt;}
.ya5{bottom:380.346667pt;}
.y167{bottom:380.506667pt;}
.y76{bottom:381.146667pt;}
.y8b{bottom:381.466667pt;}
.y215{bottom:382.906667pt;}
.y1ca{bottom:387.546667pt;}
.yc5{bottom:391.546667pt;}
.y1ee{bottom:396.546667pt;}
.y197{bottom:396.866667pt;}
.y148{bottom:398.626667pt;}
.y183{bottom:399.106667pt;}
.y1ab{bottom:400.386667pt;}
.ya4{bottom:400.706667pt;}
.y166{bottom:401.026667pt;}
.y75{bottom:401.666667pt;}
.y8a{bottom:401.826667pt;}
.y214{bottom:404.706667pt;}
.y1c9{bottom:408.386667pt;}
.ye3{bottom:409.026667pt;}
.yc4{bottom:412.066667pt;}
.y1ed{bottom:416.386667pt;}
.y196{bottom:417.186667pt;}
.y182{bottom:417.346667pt;}
.y147{bottom:419.106667pt;}
.y1aa{bottom:420.866667pt;}
.ya3{bottom:421.186667pt;}
.y165{bottom:421.506667pt;}
.y74{bottom:422.146667pt;}
.y89{bottom:422.306667pt;}
.y213{bottom:426.626667pt;}
.y1c8{bottom:429.026667pt;}
.y12f{bottom:429.186667pt;}
.yc3{bottom:432.546667pt;}
.y1ec{bottom:436.066667pt;}
.y195{bottom:437.666667pt;}
.y181{bottom:437.826667pt;}
.y146{bottom:439.586667pt;}
.y1a9{bottom:441.346667pt;}
.ya2{bottom:441.666667pt;}
.y164{bottom:441.986667pt;}
.y73{bottom:442.466667pt;}
.y88{bottom:442.786667pt;}
.y212{bottom:448.386667pt;}
.y1c7{bottom:449.826667pt;}
.yc2{bottom:453.026667pt;}
.y1eb{bottom:455.906667pt;}
.y12d{bottom:456.386667pt;}
.y194{bottom:458.146667pt;}
.y180{bottom:458.306667pt;}
.y145{bottom:459.906667pt;}
.y1a8{bottom:461.826667pt;}
.ya1{bottom:462.146667pt;}
.y163{bottom:462.466667pt;}
.y72{bottom:463.106667pt;}
.y87{bottom:463.266667pt;}
.y211{bottom:470.146667pt;}
.y1c6{bottom:470.466667pt;}
.yc1{bottom:473.506667pt;}
.y1ea{bottom:475.586667pt;}
.y193{bottom:478.626667pt;}
.y17f{bottom:478.786667pt;}
.y144{bottom:480.386667pt;}
.y1a7{bottom:480.546667pt;}
.y162{bottom:482.146667pt;}
.ya0{bottom:482.626667pt;}
.y71{bottom:483.746667pt;}
.y23d{bottom:484.066667pt;}
.y1a6{bottom:489.506667pt;}
.y1c5{bottom:491.266667pt;}
.y210{bottom:492.066667pt;}
.y155{bottom:492.386667pt;}
.yc0{bottom:493.826667pt;}
.y1e9{bottom:495.426667pt;}
.y143{bottom:498.626667pt;}
.y192{bottom:499.106667pt;}
.y17e{bottom:499.266667pt;}
.y9f{bottom:503.106667pt;}
.y70{bottom:504.226667pt;}
.y12a{bottom:504.386667pt;}
.y140{bottom:507.106667pt;}
.y1c4{bottom:512.066667pt;}
.y20f{bottom:513.826667pt;}
.ybf{bottom:514.306667pt;}
.y1e8{bottom:515.266667pt;}
.y23b{bottom:517.346667pt;}
.y191{bottom:519.426667pt;}
.y17d{bottom:519.586667pt;}
.y9e{bottom:523.746667pt;}
.y6f{bottom:524.546667pt;}
.y86{bottom:524.706667pt;}
.y23c{bottom:524.866667pt;}
.y1a5{bottom:530.466667pt;}
.y1c3{bottom:532.706667pt;}
.ybe{bottom:534.786667pt;}
.y1e7{bottom:534.946667pt;}
.y20e{bottom:535.586667pt;}
.y23a{bottom:536.226667pt;}
.y190{bottom:539.906667pt;}
.y17c{bottom:540.066667pt;}
.y9d{bottom:544.386667pt;}
.y6e{bottom:545.026667pt;}
.y85{bottom:545.346667pt;}
.y1c2{bottom:553.506667pt;}
.y1e6{bottom:554.786667pt;}
.ybd{bottom:555.266667pt;}
.y20d{bottom:557.506667pt;}
.y18f{bottom:560.386667pt;}
.y17b{bottom:560.546667pt;}
.y117{bottom:563.266667pt;}
.y9c{bottom:565.026667pt;}
.ye2{bottom:565.506667pt;}
.y6d{bottom:565.666667pt;}
.y84{bottom:565.826667pt;}
.y13f{bottom:568.386667pt;}
.y1c1{bottom:574.146667pt;}
.y1e5{bottom:574.466667pt;}
.ybc{bottom:575.746667pt;}
.y20c{bottom:579.266667pt;}
.y18e{bottom:580.866667pt;}
.y17a{bottom:581.026667pt;}
.y116{bottom:583.746667pt;}
.y9b{bottom:585.506667pt;}
.ye1{bottom:585.986667pt;}
.y6c{bottom:586.306667pt;}
.y239{bottom:593.506667pt;}
.y1e4{bottom:594.306667pt;}
.y1c0{bottom:594.946667pt;}
.ybb{bottom:596.226667pt;}
.y20b{bottom:601.053333pt;}
.y18d{bottom:601.373333pt;}
.y179{bottom:601.533333pt;}
.y115{bottom:604.253333pt;}
.y9a{bottom:606.333333pt;}
.ye0{bottom:606.493333pt;}
.y6b{bottom:606.653333pt;}
.y238{bottom:612.573333pt;}
.y1e3{bottom:614.013333pt;}
.y24{bottom:615.133333pt;}
.y1bf{bottom:615.773333pt;}
.yba{bottom:616.573333pt;}
.y178{bottom:621.853333pt;}
.y20a{bottom:622.973333pt;}
.y23{bottom:624.253333pt;}
.y114{bottom:624.733333pt;}
.y99{bottom:626.973333pt;}
.y6a{bottom:627.133333pt;}
.y237{bottom:630.013333pt;}
.y1e2{bottom:633.853333pt;}
.y1be{bottom:636.413333pt;}
.yb9{bottom:637.053333pt;}
.y21{bottom:637.853333pt;}
.y177{bottom:641.213333pt;}
.y18c{bottom:642.173333pt;}
.y209{bottom:644.733333pt;}
.y113{bottom:645.373333pt;}
.y236{bottom:646.493333pt;}
.ydf{bottom:647.293333pt;}
.y69{bottom:647.613333pt;}
.yb6{bottom:647.773333pt;}
.y176{bottom:650.813333pt;}
.y1e{bottom:653.053333pt;}
.y1e1{bottom:653.533333pt;}
.y1bd{bottom:657.213333pt;}
.y18b{bottom:662.653333pt;}
.y235{bottom:665.693333pt;}
.y112{bottom:666.013333pt;}
.y208{bottom:666.493333pt;}
.yde{bottom:667.773333pt;}
.y68{bottom:668.093333pt;}
.y1c{bottom:669.373333pt;}
.y1e0{bottom:673.373333pt;}
.y1bc{bottom:677.853333pt;}
.y18a{bottom:683.133333pt;}
.y1a{bottom:684.573333pt;}
.y234{bottom:684.733333pt;}
.y111{bottom:686.493333pt;}
.ydd{bottom:688.253333pt;}
.y207{bottom:688.413333pt;}
.y67{bottom:688.573333pt;}
.yb4{bottom:688.733333pt;}
.y175{bottom:691.773333pt;}
.y1df{bottom:693.213333pt;}
.y18{bottom:698.173333pt;}
.y1bb{bottom:698.653333pt;}
.y189{bottom:703.613333pt;}
.y233{bottom:703.773333pt;}
.y15{bottom:705.533333pt;}
.y110{bottom:707.133333pt;}
.ydc{bottom:708.733333pt;}
.y66{bottom:709.053333pt;}
.y206{bottom:710.173333pt;}
.y1de{bottom:712.893333pt;}
.y1ba{bottom:719.453333pt;}
.y232{bottom:722.973333pt;}
.y188{bottom:724.093333pt;}
.y129{bottom:727.133333pt;}
.y10f{bottom:727.933333pt;}
.ydb{bottom:729.213333pt;}
.y65{bottom:729.373333pt;}
.y205{bottom:731.933333pt;}
.y1dd{bottom:732.733333pt;}
.y187{bottom:734.813333pt;}
.y1b9{bottom:740.093333pt;}
.y231{bottom:740.253333pt;}
.y128{bottom:747.613333pt;}
.y10e{bottom:748.413333pt;}
.yda{bottom:749.693333pt;}
.y64{bottom:749.853333pt;}
.y1dc{bottom:752.413333pt;}
.y204{bottom:753.853333pt;}
.y13{bottom:755.453333pt;}
.y230{bottom:756.893333pt;}
.y1b8{bottom:760.733333pt;}
.y11{bottom:763.613333pt;}
.y127{bottom:768.253333pt;}
.y10d{bottom:769.053333pt;}
.yd9{bottom:770.013333pt;}
.y63{bottom:770.333333pt;}
.y1b7{bottom:771.453333pt;}
.y1db{bottom:772.253333pt;}
.y186{bottom:775.613333pt;}
.y22f{bottom:775.933333pt;}
.y154{bottom:782.173333pt;}
.yf{bottom:788.413333pt;}
.y126{bottom:788.893333pt;}
.y10c{bottom:789.693333pt;}
.yd8{bottom:790.493333pt;}
.y62{bottom:790.813333pt;}
.y1b6{bottom:791.933333pt;}
.yb{bottom:793.053333pt;}
.y22e{bottom:794.973333pt;}
.y203{bottom:797.533333pt;}
.y125{bottom:809.573333pt;}
.y10b{bottom:810.213333pt;}
.yd7{bottom:811.013333pt;}
.y61{bottom:811.333333pt;}
.y1da{bottom:811.813333pt;}
.y22d{bottom:814.213333pt;}
.y202{bottom:819.333333pt;}
.y124{bottom:830.213333pt;}
.y10a{bottom:830.693333pt;}
.yd6{bottom:831.493333pt;}
.y1d9{bottom:831.653333pt;}
.y60{bottom:831.813333pt;}
.y22c{bottom:833.253333pt;}
.y201{bottom:841.093333pt;}
.y22b{bottom:850.693333pt;}
.y123{bottom:850.853333pt;}
.y109{bottom:851.333333pt;}
.yd5{bottom:851.973333pt;}
.y5f{bottom:852.133333pt;}
.y200{bottom:863.013333pt;}
.y22a{bottom:867.173333pt;}
.y122{bottom:871.333333pt;}
.y108{bottom:871.813333pt;}
.yd4{bottom:872.293333pt;}
.y5e{bottom:872.613333pt;}
.y1ff{bottom:884.773333pt;}
.y229{bottom:886.213333pt;}
.y121{bottom:892.133333pt;}
.y107{bottom:892.293333pt;}
.yd3{bottom:892.933333pt;}
.y5d{bottom:893.093333pt;}
.yb3{bottom:895.333333pt;}
.ya{bottom:900.933333pt;}
.y228{bottom:905.413333pt;}
.y1fe{bottom:906.533333pt;}
.y106{bottom:912.773333pt;}
.y5c{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y227{bottom:924.453333pt;}
.y48{bottom:927.360000pt;}
.y1fd{bottom:928.453333pt;}
.y105{bottom:933.253333pt;}
.y5b{bottom:934.053333pt;}
.y226{bottom:941.893333pt;}
.y1fc{bottom:950.213333pt;}
.y120{bottom:953.893333pt;}
.y104{bottom:954.053333pt;}
.y5a{bottom:954.533333pt;}
.y225{bottom:958.373333pt;}
.y1fb{bottom:971.973333pt;}
.y11f{bottom:974.373333pt;}
.y103{bottom:974.693333pt;}
.y59{bottom:974.853333pt;}
.y224{bottom:977.413333pt;}
.y1fa{bottom:993.893333pt;}
.y11e{bottom:994.853333pt;}
.y102{bottom:995.173333pt;}
.y58{bottom:995.333333pt;}
.y223{bottom:996.613333pt;}
.y11d{bottom:1015.653333pt;}
.y57{bottom:1015.813333pt;}
.y51{bottom:1032.000000pt;}
.y4f{bottom:1054.080000pt;}
.h2b{height:1.777500pt;}
.h46{height:1.937500pt;}
.hb{height:4.640000pt;}
.h20{height:5.906667pt;}
.h12{height:7.360000pt;}
.hf{height:8.160000pt;}
.h1c{height:9.120000pt;}
.hc{height:10.835938pt;}
.h14{height:13.600000pt;}
.h21{height:14.705625pt;}
.h16{height:15.200000pt;}
.h30{height:15.680000pt;}
.h18{height:16.320000pt;}
.h28{height:17.152000pt;}
.h26{height:17.266667pt;}
.h29{height:17.280000pt;}
.h13{height:18.716250pt;}
.h3c{height:20.306667pt;}
.h10{height:20.422500pt;}
.h3e{height:20.466667pt;}
.h55{height:20.480000pt;}
.h24{height:22.386667pt;}
.h22{height:23.026667pt;}
.h31{height:24.798667pt;}
.hd{height:24.800000pt;}
.h2{height:25.598667pt;}
.h23{height:25.907187pt;}
.h45{height:27.186667pt;}
.h42{height:27.200000pt;}
.h44{height:27.232000pt;}
.h43{height:27.360000pt;}
.h41{height:27.520000pt;}
.h35{height:28.093750pt;}
.h53{height:30.515625pt;}
.h33{height:30.830625pt;}
.h1d{height:31.640625pt;}
.h38{height:32.453125pt;}
.h4b{height:34.390625pt;}
.h27{height:35.975313pt;}
.h34{height:36.304688pt;}
.h1f{height:36.328125pt;}
.h56{height:36.703125pt;}
.h25{height:36.883125pt;}
.h17{height:39.840000pt;}
.he{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h50{height:40.800000pt;}
.h3a{height:40.818667pt;}
.h52{height:40.946667pt;}
.h4e{height:40.958667pt;}
.h37{height:40.960000pt;}
.h19{height:44.533750pt;}
.h3{height:44.975625pt;}
.h15{height:47.460938pt;}
.h2e{height:48.000000pt;}
.h6{height:48.406250pt;}
.h2f{height:49.852500pt;}
.h11{height:49.920000pt;}
.h8{height:50.712187pt;}
.h1b{height:52.523438pt;}
.h9{height:53.454805pt;}
.h2d{height:56.160000pt;}
.ha{height:57.647187pt;}
.h48{height:61.266667pt;}
.h4{height:62.812500pt;}
.h32{height:64.500000pt;}
.h7{height:95.060000pt;}
.h2c{height:101.920000pt;}
.h5{height:110.746667pt;}
.h2a{height:125.952000pt;}
.h47{height:130.906667pt;}
.h54{height:173.306667pt;}
.h49{height:183.066667pt;}
.h51{height:189.306667pt;}
.h36{height:199.226667pt;}
.h3f{height:213.146667pt;}
.h3b{height:222.893333pt;}
.h3d{height:224.813333pt;}
.h39{height:228.826667pt;}
.h4d{height:244.826667pt;}
.h4f{height:250.946667pt;}
.h4c{height:252.986667pt;}
.h4a{height:289.786667pt;}
.h1e{height:306.773333pt;}
.h40{height:320.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w17{width:53.920000pt;}
.w15{width:71.990667pt;}
.w4{width:90.070667pt;}
.w9{width:137.270667pt;}
.w16{width:162.106667pt;}
.w8{width:216.813333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w13{width:288.013333pt;}
.w14{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.wa{width:462.800000pt;}
.wd{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;}
.x18{left:5.746667pt;}
.xa{left:6.866667pt;}
.x16{left:15.830667pt;}
.x1a{left:28.946667pt;}
.xe{left:34.106667pt;}
.x7{left:50.545333pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x15{left:108.466667pt;}
.x1b{left:127.506667pt;}
.x17{left:146.120000pt;}
.x4{left:151.226667pt;}
.x1e{left:168.026667pt;}
.x6{left:186.120000pt;}
.xf{left:196.546667pt;}
.x8{left:214.905333pt;}
.xb{left:234.120000pt;}
.x10{left:243.293333pt;}
.x11{left:269.693333pt;}
.x1c{left:288.026667pt;}
.x12{left:303.133333pt;}
.x1f{left:330.146667pt;}
.x19{left:395.306667pt;}
.x14{left:400.426667pt;}
.xc{left:407.306667pt;}
.xd{left:411.293333pt;}
.x3{left:463.306667pt;}
.x9{left:480.106667pt;}
.x13{left:510.213333pt;}
.x1d{left:599.973333pt;}
}




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