
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_91a29a9127fffa33823a4da8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_63a9078651b30580230e17a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_9ec766ac860f98d39a562aa0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_185d7b0757afa518151c4aa5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_5bf709ff1ff6b8f28b50061f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_82fa7e13a56182d7503d59f0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_1d1c07cdae8e62ca772584f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.896000;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_3ec9a4bf47bf5caf7373b682.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.858000;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_3166c3278702dcf4b1f0e485.woff2')format("woff");}.fff{font-family:fff;line-height:1.607000;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_6809d315bdbd0fdbf5ac9f4e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.605000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-30.948140px;}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.436018px;}
.v1{vertical-align:24.000000px;}
.ls4f{letter-spacing:-1.327046px;}
.ls49{letter-spacing:-0.787934px;}
.ls51{letter-spacing:-0.746464px;}
.ls4b{letter-spacing:-0.704993px;}
.ls53{letter-spacing:-0.663523px;}
.ls52{letter-spacing:-0.622053px;}
.ls2d{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.497642px;}
.ls2f{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls7d{letter-spacing:-0.408000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls7b{letter-spacing:-0.357000px;}
.ls4d{letter-spacing:-0.331762px;}
.ls79{letter-spacing:-0.306000px;}
.ls47{letter-spacing:-0.300000px;}
.ls7e{letter-spacing:-0.255000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls4a{letter-spacing:-0.204034px;}
.ls7c{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.153000px;}
.ls50{letter-spacing:-0.124411px;}
.ls18{letter-spacing:-0.120000px;}
.ls77{letter-spacing:-0.102000px;}
.ls48{letter-spacing:-0.082940px;}
.ls2b{letter-spacing:-0.060000px;}
.ls76{letter-spacing:-0.051000px;}
.ls4e{letter-spacing:-0.041470px;}
.ls17{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000037px;}
.ls41{letter-spacing:0.041470px;}
.ls6e{letter-spacing:0.051000px;}
.ls12{letter-spacing:0.060000px;}
.ls42{letter-spacing:0.082940px;}
.ls5a{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.124411px;}
.ls43{letter-spacing:0.165881px;}
.ls15{letter-spacing:0.178791px;}
.ls4{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.204000px;}
.ls71{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.255000px;}
.ls6{letter-spacing:0.263951px;}
.ls5b{letter-spacing:0.264000px;}
.ls35{letter-spacing:0.270000px;}
.ls31{letter-spacing:0.276000px;}
.ls59{letter-spacing:0.280500px;}
.ls14{letter-spacing:0.281962px;}
.ls3f{letter-spacing:0.281987px;}
.ls65{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.312097px;}
.ls40{letter-spacing:0.330000px;}
.ls75{letter-spacing:0.331500px;}
.ls57{letter-spacing:0.354000px;}
.ls6c{letter-spacing:0.357000px;}
.ls1b{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.372112px;}
.ls30{letter-spacing:0.401981px;}
.ls73{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.433500px;}
.lsf{letter-spacing:0.456000px;}
.ls62{letter-spacing:0.459000px;}
.ls9{letter-spacing:0.479972px;}
.ls8{letter-spacing:0.479980px;}
.lsb{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.510000px;}
.ls26{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.561000px;}
.lsc{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.660000px;}
.ls34{letter-spacing:0.690000px;}
.ls60{letter-spacing:0.714000px;}
.lse{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.739500px;}
.ls6a{letter-spacing:0.765000px;}
.ls13{letter-spacing:0.780000px;}
.ls32{letter-spacing:0.810000px;}
.ls6d{letter-spacing:0.816000px;}
.ls20{letter-spacing:0.840000px;}
.ls70{letter-spacing:0.841500px;}
.ls74{letter-spacing:0.867000px;}
.ls28{letter-spacing:0.900000px;}
.ls68{letter-spacing:0.918000px;}
.lsd{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.068000px;}
.ls24{letter-spacing:1.080000px;}
.ls3d{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.164000px;}
.ls21{letter-spacing:1.200000px;}
.ls6b{letter-spacing:1.224000px;}
.ls27{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.320000px;}
.ls66{letter-spacing:1.377000px;}
.ls33{letter-spacing:1.380000px;}
.ls11{letter-spacing:1.427984px;}
.ls23{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.470000px;}
.ls7a{letter-spacing:1.479000px;}
.ls55{letter-spacing:1.500000px;}
.ls56{letter-spacing:1.560000px;}
.ls6f{letter-spacing:1.581000px;}
.ls1c{letter-spacing:1.620000px;}
.ls2a{letter-spacing:1.680000px;}
.ls69{letter-spacing:1.683000px;}
.ls3c{letter-spacing:1.740000px;}
.ls54{letter-spacing:1.770000px;}
.ls72{letter-spacing:1.785000px;}
.ls22{letter-spacing:1.800000px;}
.ls39{letter-spacing:1.860000px;}
.ls3b{letter-spacing:1.920000px;}
.ls67{letter-spacing:2.040000px;}
.ls36{letter-spacing:2.340000px;}
.ls37{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.780000px;}
.ls0{letter-spacing:3.990000px;}
.ls5f{letter-spacing:76.908000px;}
.ls5d{letter-spacing:130.152000px;}
.ls45{letter-spacing:171.309000px;}
.ls5e{letter-spacing:180.183000px;}
.ls5c{letter-spacing:233.427000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-16.740000px;}
.ws18{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.000000px;}
.ws95{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.544000px;}
.ws96{word-spacing:-13.005000px;}
.ws57{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws7{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.760000px;}
.ws6{word-spacing:-11.640000px;}
.ws8{word-spacing:-11.520000px;}
.ws1{word-spacing:-9.996000px;}
.ws4a{word-spacing:-9.579616px;}
.ws51{word-spacing:-9.538146px;}
.ws56{word-spacing:-9.496675px;}
.ws4d{word-spacing:-9.413735px;}
.ws0{word-spacing:-9.408000px;}
.ws4f{word-spacing:-9.330795px;}
.ws4e{word-spacing:-9.040503px;}
.wsb{word-spacing:-8.925000px;}
.ws4c{word-spacing:-8.874623px;}
.ws53{word-spacing:-8.750212px;}
.ws54{word-spacing:-8.708742px;}
.ws3{word-spacing:-8.694000px;}
.ws4b{word-spacing:-8.667272px;}
.ws52{word-spacing:-8.625801px;}
.ws50{word-spacing:-8.045219px;}
.ws13{word-spacing:-7.500000px;}
.ws6a{word-spacing:-6.375000px;}
.wsc{word-spacing:-1.890000px;}
.ws39{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.320000px;}
.ws91{word-spacing:-1.275000px;}
.ws12{word-spacing:-1.260000px;}
.wsf{word-spacing:-1.140000px;}
.ws2e{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.071000px;}
.ws1b{word-spacing:-1.020000px;}
.ws98{word-spacing:-0.969000px;}
.ws40{word-spacing:-0.960000px;}
.wsa4{word-spacing:-0.918000px;}
.ws3c{word-spacing:-0.900000px;}
.ws86{word-spacing:-0.840000px;}
.wsab{word-spacing:-0.816000px;}
.ws14{word-spacing:-0.780000px;}
.ws97{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.wse{word-spacing:-0.570000px;}
.ws3d{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.255000px;}
.ws15{word-spacing:-0.240000px;}
.ws87{word-spacing:-0.180000px;}
.ws65{word-spacing:-0.165881px;}
.ws63{word-spacing:-0.124411px;}
.ws6d{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.082940px;}
.ws3e{word-spacing:-0.060000px;}
.ws64{word-spacing:-0.041470px;}
.wsd{word-spacing:0.000000px;}
.ws67{word-spacing:0.041470px;}
.ws23{word-spacing:0.060000px;}
.ws60{word-spacing:0.120000px;}
.ws66{word-spacing:0.124411px;}
.wsaa{word-spacing:0.153000px;}
.ws61{word-spacing:0.204034px;}
.ws70{word-spacing:0.240000px;}
.ws76{word-spacing:0.300000px;}
.ws26{word-spacing:0.360000px;}
.ws73{word-spacing:0.420000px;}
.ws9a{word-spacing:0.459000px;}
.ws3f{word-spacing:0.480000px;}
.ws68{word-spacing:0.497642px;}
.wsa3{word-spacing:0.510000px;}
.ws1c{word-spacing:0.600000px;}
.wsac{word-spacing:0.612000px;}
.ws42{word-spacing:0.660000px;}
.ws7c{word-spacing:0.663000px;}
.ws3a{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws3b{word-spacing:0.900000px;}
.wsa6{word-spacing:0.918000px;}
.ws99{word-spacing:0.969000px;}
.ws6e{word-spacing:1.020000px;}
.ws32{word-spacing:1.080000px;}
.ws6c{word-spacing:1.140000px;}
.ws8e{word-spacing:1.173000px;}
.ws71{word-spacing:1.260000px;}
.ws90{word-spacing:1.275000px;}
.ws38{word-spacing:1.320000px;}
.ws79{word-spacing:1.380000px;}
.ws1e{word-spacing:1.440000px;}
.ws8f{word-spacing:1.479000px;}
.ws17{word-spacing:1.500000px;}
.ws8d{word-spacing:1.560000px;}
.ws1d{word-spacing:1.620000px;}
.ws89{word-spacing:1.680000px;}
.ws9b{word-spacing:1.734000px;}
.ws27{word-spacing:1.740000px;}
.ws36{word-spacing:1.800000px;}
.ws41{word-spacing:1.860000px;}
.wsa9{word-spacing:1.887000px;}
.ws35{word-spacing:1.920000px;}
.wsae{word-spacing:1.938000px;}
.ws45{word-spacing:1.980000px;}
.wsa2{word-spacing:1.989000px;}
.ws44{word-spacing:2.040000px;}
.ws28{word-spacing:2.100000px;}
.ws31{word-spacing:2.160000px;}
.ws7a{word-spacing:2.220000px;}
.ws5d{word-spacing:2.280000px;}
.wsa5{word-spacing:2.295000px;}
.wsaf{word-spacing:2.448000px;}
.ws78{word-spacing:2.460000px;}
.ws5f{word-spacing:2.520000px;}
.wsb1{word-spacing:2.550000px;}
.ws37{word-spacing:2.580000px;}
.ws19{word-spacing:2.640000px;}
.ws5c{word-spacing:2.700000px;}
.ws9f{word-spacing:2.754000px;}
.ws30{word-spacing:2.760000px;}
.ws88{word-spacing:2.820000px;}
.ws25{word-spacing:2.880000px;}
.ws33{word-spacing:2.940000px;}
.ws1a{word-spacing:3.000000px;}
.ws2d{word-spacing:3.060000px;}
.ws8a{word-spacing:3.180000px;}
.ws6b{word-spacing:3.300000px;}
.ws85{word-spacing:3.480000px;}
.ws8c{word-spacing:3.600000px;}
.ws29{word-spacing:3.780000px;}
.ws75{word-spacing:3.840000px;}
.ws2f{word-spacing:3.900000px;}
.ws72{word-spacing:3.960000px;}
.wsb0{word-spacing:4.182000px;}
.ws8b{word-spacing:4.320000px;}
.ws24{word-spacing:4.500000px;}
.ws43{word-spacing:4.620000px;}
.ws2c{word-spacing:4.860000px;}
.ws9c{word-spacing:4.998000px;}
.ws46{word-spacing:5.160000px;}
.wsa1{word-spacing:5.304000px;}
.ws74{word-spacing:5.400000px;}
.ws77{word-spacing:5.520000px;}
.ws22{word-spacing:5.880000px;}
.wsa8{word-spacing:5.916000px;}
.ws34{word-spacing:6.300000px;}
.wsa0{word-spacing:6.375000px;}
.ws6f{word-spacing:6.600000px;}
.ws69{word-spacing:6.783000px;}
.ws7f{word-spacing:6.834000px;}
.ws2a{word-spacing:6.840000px;}
.wsad{word-spacing:7.140000px;}
.ws93{word-spacing:7.191000px;}
.ws92{word-spacing:7.293000px;}
.ws7b{word-spacing:7.650000px;}
.ws9d{word-spacing:8.313000px;}
.ws47{word-spacing:8.760000px;}
.ws94{word-spacing:9.027000px;}
.ws7d{word-spacing:12.087000px;}
.ws7e{word-spacing:12.393000px;}
.ws48{word-spacing:12.600000px;}
.wsb2{word-spacing:13.668000px;}
.wsb3{word-spacing:17.799000px;}
.ws82{word-spacing:64.158000px;}
.ws20{word-spacing:72.267000px;}
.ws81{word-spacing:103.887000px;}
.ws80{word-spacing:117.402000px;}
.ws84{word-spacing:130.764000px;}
.ws55{word-spacing:152.785008px;}
.ws83{word-spacing:156.264000px;}
.ws58{word-spacing:158.558988px;}
.ws59{word-spacing:264.792000px;}
.ws5b{word-spacing:277.542000px;}
.ws5a{word-spacing:303.042000px;}
._1c{margin-left:-2959.377061px;}
._1a{margin-left:-72.675000px;}
._4d{margin-left:-21.675000px;}
._1d{margin-left:-19.980000px;}
._2f{margin-left:-17.952026px;}
._17{margin-left:-16.575000px;}
._10{margin-left:-14.573994px;}
._30{margin-left:-12.546000px;}
._4e{margin-left:-11.526000px;}
._1e{margin-left:-10.320000px;}
._b{margin-left:-9.216000px;}
._a{margin-left:-8.196000px;}
._9{margin-left:-6.468000px;}
._1{margin-left:-4.959000px;}
._2{margin-left:-3.591000px;}
._0{margin-left:-1.632000px;}
._6{width:1.044000px;}
._3{width:2.294400px;}
._16{width:3.516000px;}
._8{width:5.652000px;}
._4a{width:7.701000px;}
._47{width:10.506000px;}
._c{width:12.540000px;}
._e{width:14.430000px;}
._5{width:15.480000px;}
._7{width:16.800000px;}
._18{width:18.360000px;}
._4b{width:21.101994px;}
._46{width:22.134600px;}
._49{width:25.101000px;}
._4c{width:26.691000px;}
._48{width:29.325000px;}
._4{width:39.963570px;}
._41{width:41.157000px;}
._15{width:47.466000px;}
._19{width:54.621000px;}
._39{width:63.393000px;}
._40{width:65.076000px;}
._3a{width:90.066000px;}
._3c{width:115.566000px;}
._44{width:116.637000px;}
._31{width:117.693578px;}
._43{width:137.445000px;}
._3f{width:141.066000px;}
._32{width:143.259012px;}
._f{width:156.653994px;}
._14{width:158.312994px;}
._12{width:162.905994px;}
._34{width:168.759012px;}
._11{width:171.180000px;}
._45{width:178.857000px;}
._d{width:214.853994px;}
._24{width:217.922988px;}
._42{width:221.034000px;}
._13{width:224.940000px;}
._28{width:243.422988px;}
._35{width:281.571000px;}
._2c{width:289.653000px;}
._27{width:290.931000px;}
._22{width:294.212308px;}
._33{width:307.071000px;}
._20{width:316.002680px;}
._36{width:330.712209px;}
._26{width:332.672988px;}
._3e{width:346.107000px;}
._2d{width:351.441000px;}
._29{width:353.328000px;}
._3d{width:371.607000px;}
._38{width:387.957000px;}
._3b{width:413.457000px;}
._2e{width:500.157000px;}
._1f{width:501.633543px;}
._37{width:506.327977px;}
._23{width:519.123601px;}
._2b{width:544.272000px;}
._21{width:547.230000px;}
._25{width:583.695000px;}
._2a{width:607.716000px;}
._1b{width:1802.288992px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fsa{font-size:41.470199px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fsb{font-size:204.033600px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.177750px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3c{bottom:112.938300px;}
.y6f{bottom:113.415298px;}
.yf9{bottom:113.696253px;}
.ya0{bottom:114.874947px;}
.y132{bottom:114.874969px;}
.y14d{bottom:118.496704px;}
.y178{bottom:122.603250px;}
.yf8{bottom:128.690253px;}
.y6e{bottom:132.165298px;}
.y3b{bottom:133.032303px;}
.y9f{bottom:133.624947px;}
.y131{bottom:133.624969px;}
.y30{bottom:141.211349px;}
.y177{bottom:141.396750px;}
.y3a{bottom:150.485553px;}
.y6d{bottom:150.915298px;}
.y14c{bottom:152.246704px;}
.y9e{bottom:152.374947px;}
.y130{bottom:152.374969px;}
.y104{bottom:157.268994px;}
.y2f{bottom:159.961349px;}
.y176{bottom:160.113750px;}
.y6c{bottom:169.665298px;}
.y39{bottom:170.579556px;}
.y9d{bottom:171.124947px;}
.y12f{bottom:171.124969px;}
.y103{bottom:176.062494px;}
.y2e{bottom:178.711349px;}
.y38{bottom:188.032794px;}
.y175{bottom:188.202000px;}
.y6b{bottom:188.415298px;}
.y14b{bottom:189.800710px;}
.yb0{bottom:189.874947px;}
.y12e{bottom:189.874969px;}
.y102{bottom:194.779494px;}
.y2d{bottom:197.461349px;}
.y14a{bottom:204.794711px;}
.y6a{bottom:207.165298px;}
.y37{bottom:208.126808px;}
.y9c{bottom:208.624947px;}
.y12d{bottom:208.624969px;}
.y174{bottom:212.618250px;}
.y101{bottom:213.496494px;}
.y2c{bottom:216.211349px;}
.y149{bottom:219.788710px;}
.y36{bottom:225.580059px;}
.y69{bottom:225.915298px;}
.yaf{bottom:227.374947px;}
.y12c{bottom:227.374969px;}
.y173{bottom:227.612250px;}
.y100{bottom:232.213494px;}
.y148{bottom:234.782711px;}
.y2b{bottom:234.961349px;}
.y68{bottom:244.665298px;}
.y35{bottom:245.674049px;}
.yae{bottom:246.124947px;}
.y12b{bottom:246.124969px;}
.y147{bottom:249.776711px;}
.yff{bottom:250.930494px;}
.y172{bottom:253.068728px;}
.y2a{bottom:253.711349px;}
.y34{bottom:263.127300px;}
.y67{bottom:263.415298px;}
.yad{bottom:264.874947px;}
.y12a{bottom:264.874969px;}
.y171{bottom:268.062728px;}
.yfe{bottom:269.647494px;}
.y1a9{bottom:270.122659px;}
.y29{bottom:272.461349px;}
.y66{bottom:282.165298px;}
.y33{bottom:283.221291px;}
.y9b{bottom:283.624786px;}
.yac{bottom:283.624947px;}
.y129{bottom:283.624969px;}
.y1a8{bottom:285.116659px;}
.yfd{bottom:288.355343px;}
.y28{bottom:291.211349px;}
.y1a7{bottom:300.110659px;}
.y65{bottom:300.915298px;}
.y146{bottom:302.235260px;}
.y9a{bottom:302.374786px;}
.yab{bottom:302.374947px;}
.y128{bottom:302.374969px;}
.yfc{bottom:307.072343px;}
.y32{bottom:308.221805px;}
.y27{bottom:309.961349px;}
.y1a6{bottom:315.104659px;}
.y64{bottom:319.665298px;}
.yf7{bottom:320.424753px;}
.y145{bottom:320.985260px;}
.y99{bottom:321.124786px;}
.yaa{bottom:321.124947px;}
.y127{bottom:321.124969px;}
.y31{bottom:323.215805px;}
.y26{bottom:328.711349px;}
.y1a5{bottom:330.098659px;}
.yfb{bottom:335.160593px;}
.yf6{bottom:335.418753px;}
.y63{bottom:338.415298px;}
.y144{bottom:339.735260px;}
.y98{bottom:339.874786px;}
.ya9{bottom:339.874947px;}
.y126{bottom:339.874969px;}
.y1a4{bottom:345.092659px;}
.y25{bottom:347.461349px;}
.yf5{bottom:350.412753px;}
.y62{bottom:357.165298px;}
.y170{bottom:358.294478px;}
.y143{bottom:358.485260px;}
.y97{bottom:358.624786px;}
.ya8{bottom:358.624947px;}
.y125{bottom:358.624969px;}
.yfa{bottom:359.576843px;}
.y1a3{bottom:360.086659px;}
.yf4{bottom:365.406753px;}
.y24{bottom:366.211349px;}
.y22{bottom:366.211395px;}
.y1a2{bottom:375.080659px;}
.y61{bottom:375.915298px;}
.y16f{bottom:377.087978px;}
.y142{bottom:377.235260px;}
.y96{bottom:377.374786px;}
.ya7{bottom:377.374947px;}
.y124{bottom:377.374969px;}
.y21{bottom:384.961395px;}
.y1d8{bottom:385.867156px;}
.y1a1{bottom:390.074659px;}
.y60{bottom:394.665298px;}
.y16e{bottom:395.804978px;}
.y141{bottom:395.985260px;}
.y95{bottom:396.124786px;}
.ya6{bottom:396.124947px;}
.y123{bottom:396.124969px;}
.y1d7{bottom:400.861156px;}
.y23{bottom:403.711349px;}
.y20{bottom:403.711395px;}
.y1a0{bottom:405.068659px;}
.y5f{bottom:413.415298px;}
.y16d{bottom:414.521978px;}
.ydc{bottom:414.735260px;}
.y94{bottom:414.874786px;}
.ya5{bottom:414.874947px;}
.y122{bottom:414.874969px;}
.y19f{bottom:420.062659px;}
.y1f{bottom:422.461395px;}
.y1d6{bottom:431.703406px;}
.y5e{bottom:432.165298px;}
.y16c{bottom:433.238978px;}
.ydb{bottom:433.485260px;}
.y93{bottom:433.624786px;}
.ya4{bottom:433.624947px;}
.y121{bottom:433.624969px;}
.y19e{bottom:435.056659px;}
.y1e{bottom:441.211395px;}
.y1d5{bottom:446.697406px;}
.y19d{bottom:450.050659px;}
.y5d{bottom:450.915298px;}
.y16b{bottom:451.955978px;}
.yda{bottom:452.235260px;}
.y92{bottom:452.374786px;}
.ya3{bottom:452.374947px;}
.y120{bottom:452.374969px;}
.y1d{bottom:459.961395px;}
.y1d4{bottom:461.691406px;}
.y19c{bottom:465.044659px;}
.y5c{bottom:469.665298px;}
.y16a{bottom:470.672978px;}
.yd9{bottom:470.985260px;}
.y91{bottom:471.124786px;}
.ya2{bottom:471.124947px;}
.y11f{bottom:471.124969px;}
.y1d3{bottom:476.685406px;}
.y1c{bottom:478.711395px;}
.y19b{bottom:480.038659px;}
.y5b{bottom:488.415298px;}
.y169{bottom:489.389978px;}
.yd8{bottom:489.735260px;}
.y90{bottom:489.874786px;}
.ya1{bottom:489.874947px;}
.y11e{bottom:489.874969px;}
.y1d2{bottom:491.679406px;}
.y19a{bottom:495.032659px;}
.y1d1{bottom:506.673406px;}
.y8e{bottom:507.165298px;}
.y168{bottom:508.106978px;}
.yd7{bottom:508.485260px;}
.yba{bottom:508.624786px;}
.y11d{bottom:508.624969px;}
.y199{bottom:510.026659px;}
.y1b{bottom:516.211395px;}
.y1d0{bottom:521.667406px;}
.y198{bottom:525.020659px;}
.y5a{bottom:525.915298px;}
.yd6{bottom:527.235260px;}
.yb9{bottom:527.374786px;}
.y11c{bottom:527.374969px;}
.y167{bottom:536.195228px;}
.y1cf{bottom:536.661406px;}
.y197{bottom:540.014659px;}
.y8d{bottom:544.665298px;}
.yd5{bottom:545.985260px;}
.yb8{bottom:546.124786px;}
.y11b{bottom:546.124969px;}
.y1ce{bottom:551.655406px;}
.y1a{bottom:553.711395px;}
.y196{bottom:555.008659px;}
.y166{bottom:560.624228px;}
.y8c{bottom:563.415298px;}
.yd4{bottom:564.735260px;}
.yb7{bottom:564.874786px;}
.y11a{bottom:564.874969px;}
.y1cd{bottom:566.649406px;}
.y195{bottom:570.002659px;}
.y19{bottom:572.461395px;}
.y165{bottom:575.618228px;}
.y1cc{bottom:581.643406px;}
.y8b{bottom:582.165298px;}
.y59{bottom:582.165344px;}
.yd3{bottom:583.485260px;}
.yb6{bottom:583.624786px;}
.y119{bottom:583.624969px;}
.y194{bottom:584.996659px;}
.y164{bottom:590.612228px;}
.y18{bottom:591.211395px;}
.y1cb{bottom:596.637406px;}
.y193{bottom:599.990659px;}
.y8a{bottom:600.915298px;}
.y58{bottom:600.915344px;}
.yd2{bottom:602.235260px;}
.yb5{bottom:602.374786px;}
.y118{bottom:602.374969px;}
.y17{bottom:609.961395px;}
.y1ca{bottom:611.631406px;}
.y192{bottom:614.984659px;}
.y163{bottom:616.048527px;}
.y89{bottom:619.665298px;}
.y57{bottom:619.665344px;}
.yd1{bottom:620.985260px;}
.yb4{bottom:621.124786px;}
.y117{bottom:621.124969px;}
.y1c9{bottom:626.625406px;}
.y16{bottom:628.711395px;}
.y191{bottom:629.978659px;}
.y162{bottom:631.042527px;}
.y88{bottom:638.415298px;}
.y56{bottom:638.415344px;}
.yd0{bottom:639.735260px;}
.yb3{bottom:639.874786px;}
.y116{bottom:639.874969px;}
.y1c8{bottom:641.619406px;}
.y190{bottom:644.972659px;}
.y15{bottom:647.461395px;}
.y1c7{bottom:656.613406px;}
.y87{bottom:657.165298px;}
.y55{bottom:657.165344px;}
.ycf{bottom:658.485260px;}
.y115{bottom:658.624969px;}
.y18f{bottom:659.966659px;}
.y14{bottom:666.211395px;}
.y1c6{bottom:671.607406px;}
.y18e{bottom:674.960659px;}
.y86{bottom:675.915298px;}
.y54{bottom:675.915344px;}
.yce{bottom:677.235260px;}
.y114{bottom:677.374969px;}
.y13{bottom:684.961395px;}
.yf3{bottom:685.380753px;}
.y1c5{bottom:686.601406px;}
.y18d{bottom:689.954659px;}
.y85{bottom:694.665298px;}
.y53{bottom:694.665344px;}
.ycd{bottom:695.985260px;}
.y113{bottom:696.124969px;}
.y1c4{bottom:701.595406px;}
.y12{bottom:703.711395px;}
.y18c{bottom:704.948659px;}
.y84{bottom:713.415298px;}
.y52{bottom:713.415344px;}
.ycc{bottom:714.735260px;}
.y112{bottom:714.874969px;}
.y1c3{bottom:716.589406px;}
.y18b{bottom:719.942659px;}
.ydd{bottom:720.455978px;}
.y161{bottom:720.751524px;}
.y11{bottom:722.461395px;}
.y1c2{bottom:731.583406px;}
.y83{bottom:732.165298px;}
.y51{bottom:732.165344px;}
.ycb{bottom:733.485260px;}
.y111{bottom:733.624969px;}
.y18a{bottom:734.936659px;}
.y160{bottom:739.545024px;}
.y10{bottom:741.211395px;}
.y1c1{bottom:746.577406px;}
.y189{bottom:749.930659px;}
.y82{bottom:750.915298px;}
.y50{bottom:750.915344px;}
.yca{bottom:752.235260px;}
.y110{bottom:752.374969px;}
.ye6{bottom:754.469161px;}
.y15f{bottom:758.262024px;}
.yf{bottom:759.961395px;}
.yf2{bottom:760.177878px;}
.y1c0{bottom:761.571406px;}
.y188{bottom:764.924659px;}
.ye5{bottom:765.873465px;}
.y81{bottom:769.665298px;}
.y4f{bottom:769.665344px;}
.yc9{bottom:770.985260px;}
.y10f{bottom:771.124969px;}
.yf1{bottom:771.582183px;}
.y1bf{bottom:776.565406px;}
.y15e{bottom:776.979024px;}
.ye4{bottom:777.277770px;}
.ye{bottom:778.711395px;}
.y187{bottom:779.918659px;}
.yf0{bottom:782.986487px;}
.y80{bottom:788.415298px;}
.y4e{bottom:788.415344px;}
.ye3{bottom:788.682074px;}
.yc8{bottom:789.735260px;}
.y10e{bottom:789.874969px;}
.y1be{bottom:791.559406px;}
.yef{bottom:794.287116px;}
.y186{bottom:794.912659px;}
.y15d{bottom:795.696024px;}
.yd{bottom:797.461395px;}
.ye2{bottom:799.982704px;}
.yee{bottom:805.691421px;}
.y1bd{bottom:806.553406px;}
.y7f{bottom:807.165298px;}
.y4d{bottom:807.165344px;}
.yc7{bottom:808.485260px;}
.y10d{bottom:808.624969px;}
.ye1{bottom:811.387008px;}
.y15c{bottom:814.413024px;}
.yc{bottom:816.211395px;}
.y1bc{bottom:821.547406px;}
.y7e{bottom:825.915298px;}
.y4c{bottom:825.915344px;}
.yc6{bottom:827.235260px;}
.ye0{bottom:827.249359px;}
.y10c{bottom:827.374969px;}
.y185{bottom:828.662659px;}
.yed{bottom:829.290807px;}
.y15b{bottom:833.130024px;}
.yb{bottom:834.961395px;}
.y1bb{bottom:836.541406px;}
.yec{bottom:840.695112px;}
.y7d{bottom:844.665298px;}
.y4b{bottom:844.665344px;}
.yc5{bottom:845.985260px;}
.y10b{bottom:846.124969px;}
.y1ba{bottom:851.535406px;}
.y15a{bottom:851.847024px;}
.yeb{bottom:856.453787px;}
.y7c{bottom:863.415298px;}
.y4a{bottom:863.415344px;}
.yc4{bottom:864.735260px;}
.y10a{bottom:864.874969px;}
.y1b9{bottom:866.529406px;}
.yea{bottom:867.858092px;}
.y159{bottom:870.564024px;}
.ya{bottom:879.144153px;}
.y1b8{bottom:881.523406px;}
.y7b{bottom:882.165298px;}
.y49{bottom:882.165344px;}
.yc3{bottom:883.485260px;}
.y109{bottom:883.624969px;}
.ye9{bottom:883.720443px;}
.y184{bottom:884.968088px;}
.y158{bottom:889.281024px;}
.y9{bottom:894.138153px;}
.ye8{bottom:895.124747px;}
.y1b7{bottom:896.517406px;}
.y183{bottom:899.962088px;}
.y7a{bottom:900.915298px;}
.y48{bottom:900.915344px;}
.yc2{bottom:902.235260px;}
.y108{bottom:902.374969px;}
.y157{bottom:907.998024px;}
.ye7{bottom:910.883423px;}
.y1b6{bottom:911.511406px;}
.y182{bottom:914.956088px;}
.y79{bottom:919.665298px;}
.y47{bottom:919.665344px;}
.y140{bottom:920.985260px;}
.y107{bottom:921.124969px;}
.y1b5{bottom:926.505406px;}
.y156{bottom:926.715024px;}
.y181{bottom:929.950088px;}
.y8{bottom:936.738190px;}
.y78{bottom:938.415298px;}
.y46{bottom:938.415344px;}
.yc1{bottom:939.735260px;}
.y106{bottom:939.874969px;}
.y1b4{bottom:941.499406px;}
.y180{bottom:944.944088px;}
.y155{bottom:945.432024px;}
.ydf{bottom:953.774872px;}
.y1b3{bottom:956.493406px;}
.y77{bottom:957.165298px;}
.y45{bottom:957.165344px;}
.y13f{bottom:958.485260px;}
.y105{bottom:958.624969px;}
.y17f{bottom:959.938088px;}
.y154{bottom:964.149024px;}
.y1b2{bottom:971.487406px;}
.y76{bottom:975.915298px;}
.y44{bottom:975.915344px;}
.y13e{bottom:977.235260px;}
.y7{bottom:981.424622px;}
.y153{bottom:982.866024px;}
.y1b1{bottom:986.481406px;}
.y75{bottom:994.665298px;}
.y43{bottom:994.665344px;}
.y13d{bottom:995.985260px;}
.yc0{bottom:995.989803px;}
.y17e{bottom:1001.133338px;}
.y1b0{bottom:1001.475406px;}
.y6{bottom:1008.424622px;}
.y152{bottom:1010.202024px;}
.y74{bottom:1013.415298px;}
.y42{bottom:1013.415344px;}
.y13c{bottom:1014.735260px;}
.ybf{bottom:1014.739803px;}
.y136{bottom:1015.132844px;}
.y17d{bottom:1016.127338px;}
.y1af{bottom:1016.469406px;}
.y135{bottom:1030.126844px;}
.y1ae{bottom:1031.463406px;}
.y73{bottom:1032.165298px;}
.y41{bottom:1032.165344px;}
.y13b{bottom:1033.485260px;}
.ybe{bottom:1033.489803px;}
.y151{bottom:1034.618274px;}
.y134{bottom:1045.120844px;}
.y17c{bottom:1046.089838px;}
.y1ad{bottom:1046.457406px;}
.y150{bottom:1049.612274px;}
.y72{bottom:1050.915298px;}
.y40{bottom:1050.915344px;}
.y13a{bottom:1052.235260px;}
.ybd{bottom:1052.239803px;}
.y133{bottom:1060.114844px;}
.y17b{bottom:1061.083838px;}
.y1ac{bottom:1061.451406px;}
.y71{bottom:1069.665298px;}
.y3f{bottom:1069.665344px;}
.y139{bottom:1070.985260px;}
.ybc{bottom:1070.989803px;}
.y14f{bottom:1075.103734px;}
.yb2{bottom:1075.108844px;}
.y17a{bottom:1076.077838px;}
.y5{bottom:1076.132080px;}
.y1ab{bottom:1076.445406px;}
.y70{bottom:1088.415298px;}
.y3e{bottom:1088.415344px;}
.y138{bottom:1089.735260px;}
.ybb{bottom:1089.739803px;}
.y137{bottom:1089.915344px;}
.y14e{bottom:1090.097734px;}
.yb1{bottom:1090.102844px;}
.y179{bottom:1091.071838px;}
.y1aa{bottom:1091.439406px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3d{bottom:1127.482361px;}
.y8f{bottom:1127.482544px;}
.hf{height:25.204199px;}
.h1a{height:26.688000px;}
.h15{height:28.199735px;}
.h13{height:28.821788px;}
.h16{height:29.775603px;}
.he{height:36.006000px;}
.hd{height:36.855469px;}
.h2{height:42.048000px;}
.ha{height:42.360000px;}
.h4{height:44.676000px;}
.h18{height:45.640218px;}
.h11{height:49.113000px;}
.h17{height:52.173000px;}
.h19{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.h9{height:57.780000px;}
.h8{height:59.340000px;}
.hb{height:61.380000px;}
.h10{height:64.680000px;}
.h7{height:64.824000px;}
.hc{height:71.208000px;}
.h6{height:92.448000px;}
.h14{height:146.496125px;}
.h12{height:379.209000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:357.165000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.225805px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.x20{left:81.053420px;}
.x4{left:85.181849px;}
.x8{left:93.543303px;}
.x6{left:97.796100px;}
.x23{left:102.048152px;}
.x10{left:129.645610px;}
.xf{left:132.558891px;}
.xd{left:139.826546px;}
.xe{left:141.381676px;}
.x11{left:153.387298px;}
.x1d{left:176.772297px;}
.x14{left:216.406636px;}
.x12{left:217.650742px;}
.xc{left:229.277847px;}
.x15{left:231.356642px;}
.x13{left:249.064417px;}
.x1a{left:267.874652px;}
.x1e{left:283.561661px;}
.x22{left:286.301857px;}
.x18{left:301.785603px;}
.x17{left:305.725274px;}
.x16{left:307.912827px;}
.x21{left:310.189041px;}
.x19{left:330.296365px;}
.x1f{left:390.355661px;}
.x1c{left:436.700867px;}
.x5{left:459.200367px;}
.x1b{left:464.097449px;}
.x9{left:476.225376px;}
.x24{left:484.726673px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xa{left:798.209564px;}
@media print{
.v3{vertical-align:-27.509458pt;}
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.165350pt;}
.v1{vertical-align:21.333333pt;}
.ls4f{letter-spacing:-1.179597pt;}
.ls49{letter-spacing:-0.700386pt;}
.ls51{letter-spacing:-0.663523pt;}
.ls4b{letter-spacing:-0.626661pt;}
.ls53{letter-spacing:-0.589798pt;}
.ls52{letter-spacing:-0.552936pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.442349pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls7d{letter-spacing:-0.362667pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls7b{letter-spacing:-0.317333pt;}
.ls4d{letter-spacing:-0.294899pt;}
.ls79{letter-spacing:-0.272000pt;}
.ls47{letter-spacing:-0.266667pt;}
.ls7e{letter-spacing:-0.226667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls4a{letter-spacing:-0.181363pt;}
.ls7c{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.136000pt;}
.ls50{letter-spacing:-0.110587pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls77{letter-spacing:-0.090667pt;}
.ls48{letter-spacing:-0.073725pt;}
.ls2b{letter-spacing:-0.053333pt;}
.ls76{letter-spacing:-0.045333pt;}
.ls4e{letter-spacing:-0.036862pt;}
.ls17{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000033pt;}
.ls41{letter-spacing:0.036862pt;}
.ls6e{letter-spacing:0.045333pt;}
.ls12{letter-spacing:0.053333pt;}
.ls42{letter-spacing:0.073725pt;}
.ls5a{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.110587pt;}
.ls43{letter-spacing:0.147450pt;}
.ls15{letter-spacing:0.158926pt;}
.ls4{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.181333pt;}
.ls71{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.226667pt;}
.ls6{letter-spacing:0.234623pt;}
.ls5b{letter-spacing:0.234667pt;}
.ls35{letter-spacing:0.240000pt;}
.ls31{letter-spacing:0.245333pt;}
.ls59{letter-spacing:0.249333pt;}
.ls14{letter-spacing:0.250633pt;}
.ls3f{letter-spacing:0.250655pt;}
.ls65{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.277420pt;}
.ls40{letter-spacing:0.293333pt;}
.ls75{letter-spacing:0.294667pt;}
.ls57{letter-spacing:0.314667pt;}
.ls6c{letter-spacing:0.317333pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.330766pt;}
.ls30{letter-spacing:0.357317pt;}
.ls73{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.385333pt;}
.lsf{letter-spacing:0.405333pt;}
.ls62{letter-spacing:0.408000pt;}
.ls9{letter-spacing:0.426642pt;}
.ls8{letter-spacing:0.426649pt;}
.lsb{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.453333pt;}
.ls26{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.498667pt;}
.lsc{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.586667pt;}
.ls34{letter-spacing:0.613333pt;}
.ls60{letter-spacing:0.634667pt;}
.lse{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.657333pt;}
.ls6a{letter-spacing:0.680000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls32{letter-spacing:0.720000pt;}
.ls6d{letter-spacing:0.725333pt;}
.ls20{letter-spacing:0.746667pt;}
.ls70{letter-spacing:0.748000pt;}
.ls74{letter-spacing:0.770667pt;}
.ls28{letter-spacing:0.800000pt;}
.ls68{letter-spacing:0.816000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.949333pt;}
.ls24{letter-spacing:0.960000pt;}
.ls3d{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.034667pt;}
.ls21{letter-spacing:1.066667pt;}
.ls6b{letter-spacing:1.088000pt;}
.ls27{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls66{letter-spacing:1.224000pt;}
.ls33{letter-spacing:1.226667pt;}
.ls11{letter-spacing:1.269319pt;}
.ls23{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.306667pt;}
.ls7a{letter-spacing:1.314667pt;}
.ls55{letter-spacing:1.333333pt;}
.ls56{letter-spacing:1.386667pt;}
.ls6f{letter-spacing:1.405333pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls2a{letter-spacing:1.493333pt;}
.ls69{letter-spacing:1.496000pt;}
.ls3c{letter-spacing:1.546667pt;}
.ls54{letter-spacing:1.573333pt;}
.ls72{letter-spacing:1.586667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls39{letter-spacing:1.653333pt;}
.ls3b{letter-spacing:1.706667pt;}
.ls67{letter-spacing:1.813333pt;}
.ls36{letter-spacing:2.080000pt;}
.ls37{letter-spacing:2.720000pt;}
.ls38{letter-spacing:3.360000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls5f{letter-spacing:68.362667pt;}
.ls5d{letter-spacing:115.690667pt;}
.ls45{letter-spacing:152.274667pt;}
.ls5e{letter-spacing:160.162667pt;}
.ls5c{letter-spacing:207.490667pt;}
.ws49{word-spacing:-14.880000pt;}
.ws18{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.333333pt;}
.ws95{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.928000pt;}
.ws96{word-spacing:-11.560000pt;}
.ws57{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws7{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.453333pt;}
.ws6{word-spacing:-10.346667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws4a{word-spacing:-8.515214pt;}
.ws51{word-spacing:-8.478352pt;}
.ws56{word-spacing:-8.441489pt;}
.ws4d{word-spacing:-8.367765pt;}
.ws0{word-spacing:-8.362667pt;}
.ws4f{word-spacing:-8.294040pt;}
.ws4e{word-spacing:-8.036003pt;}
.wsb{word-spacing:-7.933333pt;}
.ws4c{word-spacing:-7.888553pt;}
.ws53{word-spacing:-7.777966pt;}
.ws54{word-spacing:-7.741104pt;}
.ws3{word-spacing:-7.728000pt;}
.ws4b{word-spacing:-7.704241pt;}
.ws52{word-spacing:-7.667379pt;}
.ws50{word-spacing:-7.151305pt;}
.ws13{word-spacing:-6.666667pt;}
.ws6a{word-spacing:-5.666667pt;}
.wsc{word-spacing:-1.680000pt;}
.ws39{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.173333pt;}
.ws91{word-spacing:-1.133333pt;}
.ws12{word-spacing:-1.120000pt;}
.wsf{word-spacing:-1.013333pt;}
.ws2e{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.952000pt;}
.ws1b{word-spacing:-0.906667pt;}
.ws98{word-spacing:-0.861333pt;}
.ws40{word-spacing:-0.853333pt;}
.wsa4{word-spacing:-0.816000pt;}
.ws3c{word-spacing:-0.800000pt;}
.ws86{word-spacing:-0.746667pt;}
.wsab{word-spacing:-0.725333pt;}
.ws14{word-spacing:-0.693333pt;}
.ws97{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.wse{word-spacing:-0.506667pt;}
.ws3d{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.226667pt;}
.ws15{word-spacing:-0.213333pt;}
.ws87{word-spacing:-0.160000pt;}
.ws65{word-spacing:-0.147450pt;}
.ws63{word-spacing:-0.110587pt;}
.ws6d{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.073725pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws64{word-spacing:-0.036862pt;}
.wsd{word-spacing:0.000000pt;}
.ws67{word-spacing:0.036862pt;}
.ws23{word-spacing:0.053333pt;}
.ws60{word-spacing:0.106667pt;}
.ws66{word-spacing:0.110587pt;}
.wsaa{word-spacing:0.136000pt;}
.ws61{word-spacing:0.181363pt;}
.ws70{word-spacing:0.213333pt;}
.ws76{word-spacing:0.266667pt;}
.ws26{word-spacing:0.320000pt;}
.ws73{word-spacing:0.373333pt;}
.ws9a{word-spacing:0.408000pt;}
.ws3f{word-spacing:0.426667pt;}
.ws68{word-spacing:0.442349pt;}
.wsa3{word-spacing:0.453333pt;}
.ws1c{word-spacing:0.533333pt;}
.wsac{word-spacing:0.544000pt;}
.ws42{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.589333pt;}
.ws3a{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.800000pt;}
.wsa6{word-spacing:0.816000pt;}
.ws99{word-spacing:0.861333pt;}
.ws6e{word-spacing:0.906667pt;}
.ws32{word-spacing:0.960000pt;}
.ws6c{word-spacing:1.013333pt;}
.ws8e{word-spacing:1.042667pt;}
.ws71{word-spacing:1.120000pt;}
.ws90{word-spacing:1.133333pt;}
.ws38{word-spacing:1.173333pt;}
.ws79{word-spacing:1.226667pt;}
.ws1e{word-spacing:1.280000pt;}
.ws8f{word-spacing:1.314667pt;}
.ws17{word-spacing:1.333333pt;}
.ws8d{word-spacing:1.386667pt;}
.ws1d{word-spacing:1.440000pt;}
.ws89{word-spacing:1.493333pt;}
.ws9b{word-spacing:1.541333pt;}
.ws27{word-spacing:1.546667pt;}
.ws36{word-spacing:1.600000pt;}
.ws41{word-spacing:1.653333pt;}
.wsa9{word-spacing:1.677333pt;}
.ws35{word-spacing:1.706667pt;}
.wsae{word-spacing:1.722667pt;}
.ws45{word-spacing:1.760000pt;}
.wsa2{word-spacing:1.768000pt;}
.ws44{word-spacing:1.813333pt;}
.ws28{word-spacing:1.866667pt;}
.ws31{word-spacing:1.920000pt;}
.ws7a{word-spacing:1.973333pt;}
.ws5d{word-spacing:2.026667pt;}
.wsa5{word-spacing:2.040000pt;}
.wsaf{word-spacing:2.176000pt;}
.ws78{word-spacing:2.186667pt;}
.ws5f{word-spacing:2.240000pt;}
.wsb1{word-spacing:2.266667pt;}
.ws37{word-spacing:2.293333pt;}
.ws19{word-spacing:2.346667pt;}
.ws5c{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.448000pt;}
.ws30{word-spacing:2.453333pt;}
.ws88{word-spacing:2.506667pt;}
.ws25{word-spacing:2.560000pt;}
.ws33{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.666667pt;}
.ws2d{word-spacing:2.720000pt;}
.ws8a{word-spacing:2.826667pt;}
.ws6b{word-spacing:2.933333pt;}
.ws85{word-spacing:3.093333pt;}
.ws8c{word-spacing:3.200000pt;}
.ws29{word-spacing:3.360000pt;}
.ws75{word-spacing:3.413333pt;}
.ws2f{word-spacing:3.466667pt;}
.ws72{word-spacing:3.520000pt;}
.wsb0{word-spacing:3.717333pt;}
.ws8b{word-spacing:3.840000pt;}
.ws24{word-spacing:4.000000pt;}
.ws43{word-spacing:4.106667pt;}
.ws2c{word-spacing:4.320000pt;}
.ws9c{word-spacing:4.442667pt;}
.ws46{word-spacing:4.586667pt;}
.wsa1{word-spacing:4.714667pt;}
.ws74{word-spacing:4.800000pt;}
.ws77{word-spacing:4.906667pt;}
.ws22{word-spacing:5.226667pt;}
.wsa8{word-spacing:5.258667pt;}
.ws34{word-spacing:5.600000pt;}
.wsa0{word-spacing:5.666667pt;}
.ws6f{word-spacing:5.866667pt;}
.ws69{word-spacing:6.029333pt;}
.ws7f{word-spacing:6.074667pt;}
.ws2a{word-spacing:6.080000pt;}
.wsad{word-spacing:6.346667pt;}
.ws93{word-spacing:6.392000pt;}
.ws92{word-spacing:6.482667pt;}
.ws7b{word-spacing:6.800000pt;}
.ws9d{word-spacing:7.389333pt;}
.ws47{word-spacing:7.786667pt;}
.ws94{word-spacing:8.024000pt;}
.ws7d{word-spacing:10.744000pt;}
.ws7e{word-spacing:11.016000pt;}
.ws48{word-spacing:11.200000pt;}
.wsb2{word-spacing:12.149333pt;}
.wsb3{word-spacing:15.821333pt;}
.ws82{word-spacing:57.029333pt;}
.ws20{word-spacing:64.237333pt;}
.ws81{word-spacing:92.344000pt;}
.ws80{word-spacing:104.357333pt;}
.ws84{word-spacing:116.234667pt;}
.ws55{word-spacing:135.808896pt;}
.ws83{word-spacing:138.901333pt;}
.ws58{word-spacing:140.941323pt;}
.ws59{word-spacing:235.370667pt;}
.ws5b{word-spacing:246.704000pt;}
.ws5a{word-spacing:269.370667pt;}
._1c{margin-left:-2630.557387pt;}
._1a{margin-left:-64.600000pt;}
._4d{margin-left:-19.266667pt;}
._1d{margin-left:-17.760000pt;}
._2f{margin-left:-15.957357pt;}
._17{margin-left:-14.733333pt;}
._10{margin-left:-12.954661pt;}
._30{margin-left:-11.152000pt;}
._4e{margin-left:-10.245333pt;}
._1e{margin-left:-9.173333pt;}
._b{margin-left:-8.192000pt;}
._a{margin-left:-7.285333pt;}
._9{margin-left:-5.749333pt;}
._1{margin-left:-4.408000pt;}
._2{margin-left:-3.192000pt;}
._0{margin-left:-1.450667pt;}
._6{width:0.928000pt;}
._3{width:2.039467pt;}
._16{width:3.125333pt;}
._8{width:5.024000pt;}
._4a{width:6.845333pt;}
._47{width:9.338667pt;}
._c{width:11.146667pt;}
._e{width:12.826667pt;}
._5{width:13.760000pt;}
._7{width:14.933333pt;}
._18{width:16.320000pt;}
._4b{width:18.757328pt;}
._46{width:19.675200pt;}
._49{width:22.312000pt;}
._4c{width:23.725333pt;}
._48{width:26.066667pt;}
._4{width:35.523173pt;}
._41{width:36.584000pt;}
._15{width:42.192000pt;}
._19{width:48.552000pt;}
._39{width:56.349333pt;}
._40{width:57.845333pt;}
._3a{width:80.058667pt;}
._3c{width:102.725333pt;}
._44{width:103.677333pt;}
._31{width:104.616514pt;}
._43{width:122.173333pt;}
._3f{width:125.392000pt;}
._32{width:127.341344pt;}
._f{width:139.247995pt;}
._14{width:140.722661pt;}
._12{width:144.805328pt;}
._34{width:150.008011pt;}
._11{width:152.160000pt;}
._45{width:158.984000pt;}
._d{width:190.981328pt;}
._24{width:193.709323pt;}
._42{width:196.474667pt;}
._13{width:199.946667pt;}
._28{width:216.375989pt;}
._35{width:250.285333pt;}
._2c{width:257.469333pt;}
._27{width:258.605333pt;}
._22{width:261.522052pt;}
._33{width:272.952000pt;}
._20{width:280.891271pt;}
._36{width:293.966408pt;}
._26{width:295.709323pt;}
._3e{width:307.650667pt;}
._2d{width:312.392000pt;}
._29{width:314.069333pt;}
._3d{width:330.317333pt;}
._38{width:344.850667pt;}
._3b{width:367.517333pt;}
._2e{width:444.584000pt;}
._1f{width:445.896482pt;}
._37{width:450.069313pt;}
._23{width:461.443201pt;}
._2b{width:483.797333pt;}
._21{width:486.426667pt;}
._25{width:518.840000pt;}
._2a{width:540.192000pt;}
._1b{width:1602.034660pt;}
.fs8{font-size:31.733332pt;}
.fsa{font-size:36.862399pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fsb{font-size:181.363200pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.824666pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3c{bottom:100.389600pt;}
.y6f{bottom:100.813599pt;}
.yf9{bottom:101.063336pt;}
.ya0{bottom:102.111064pt;}
.y132{bottom:102.111084pt;}
.y14d{bottom:105.330404pt;}
.y178{bottom:108.980667pt;}
.yf8{bottom:114.391336pt;}
.y6e{bottom:117.480265pt;}
.y3b{bottom:118.250936pt;}
.y9f{bottom:118.777730pt;}
.y131{bottom:118.777751pt;}
.y30{bottom:125.521200pt;}
.y177{bottom:125.686000pt;}
.y3a{bottom:133.764936pt;}
.y6d{bottom:134.146932pt;}
.y14c{bottom:135.330404pt;}
.y9e{bottom:135.444397pt;}
.y130{bottom:135.444417pt;}
.y104{bottom:139.794662pt;}
.y2f{bottom:142.187866pt;}
.y176{bottom:142.323333pt;}
.y6c{bottom:150.813599pt;}
.y39{bottom:151.626272pt;}
.y9d{bottom:152.111064pt;}
.y12f{bottom:152.111084pt;}
.y103{bottom:156.499995pt;}
.y2e{bottom:158.854533pt;}
.y38{bottom:167.140262pt;}
.y175{bottom:167.290667pt;}
.y6b{bottom:167.480265pt;}
.y14b{bottom:168.711743pt;}
.yb0{bottom:168.777730pt;}
.y12e{bottom:168.777751pt;}
.y102{bottom:173.137328pt;}
.y2d{bottom:175.521200pt;}
.y14a{bottom:182.039743pt;}
.y6a{bottom:184.146932pt;}
.y37{bottom:185.001607pt;}
.y9c{bottom:185.444397pt;}
.y12d{bottom:185.444417pt;}
.y174{bottom:188.994000pt;}
.y101{bottom:189.774662pt;}
.y2c{bottom:192.187866pt;}
.y149{bottom:195.367743pt;}
.y36{bottom:200.515608pt;}
.y69{bottom:200.813599pt;}
.yaf{bottom:202.111064pt;}
.y12c{bottom:202.111084pt;}
.y173{bottom:202.322000pt;}
.y100{bottom:206.411995pt;}
.y148{bottom:208.695743pt;}
.y2b{bottom:208.854533pt;}
.y68{bottom:217.480265pt;}
.y35{bottom:218.376933pt;}
.yae{bottom:218.777730pt;}
.y12b{bottom:218.777751pt;}
.y147{bottom:222.023743pt;}
.yff{bottom:223.049328pt;}
.y172{bottom:224.949981pt;}
.y2a{bottom:225.521200pt;}
.y34{bottom:233.890933pt;}
.y67{bottom:234.146932pt;}
.yad{bottom:235.444397pt;}
.y12a{bottom:235.444417pt;}
.y171{bottom:238.277981pt;}
.yfe{bottom:239.686662pt;}
.y1a9{bottom:240.109030pt;}
.y29{bottom:242.187866pt;}
.y66{bottom:250.813599pt;}
.y33{bottom:251.752258pt;}
.y9b{bottom:252.110921pt;}
.yac{bottom:252.111064pt;}
.y129{bottom:252.111084pt;}
.y1a8{bottom:253.437030pt;}
.yfd{bottom:256.315861pt;}
.y28{bottom:258.854533pt;}
.y1a7{bottom:266.765030pt;}
.y65{bottom:267.480265pt;}
.y146{bottom:268.653564pt;}
.y9a{bottom:268.777588pt;}
.yab{bottom:268.777730pt;}
.y128{bottom:268.777751pt;}
.yfc{bottom:272.953194pt;}
.y32{bottom:273.974938pt;}
.y27{bottom:275.521200pt;}
.y1a6{bottom:280.093030pt;}
.y64{bottom:284.146932pt;}
.yf7{bottom:284.822002pt;}
.y145{bottom:285.320231pt;}
.y99{bottom:285.444255pt;}
.yaa{bottom:285.444397pt;}
.y127{bottom:285.444417pt;}
.y31{bottom:287.302938pt;}
.y26{bottom:292.187866pt;}
.y1a5{bottom:293.421030pt;}
.yfb{bottom:297.920527pt;}
.yf6{bottom:298.150002pt;}
.y63{bottom:300.813599pt;}
.y144{bottom:301.986898pt;}
.y98{bottom:302.110921pt;}
.ya9{bottom:302.111064pt;}
.y126{bottom:302.111084pt;}
.y1a4{bottom:306.749030pt;}
.y25{bottom:308.854533pt;}
.yf5{bottom:311.478002pt;}
.y62{bottom:317.480265pt;}
.y170{bottom:318.483981pt;}
.y143{bottom:318.653564pt;}
.y97{bottom:318.777588pt;}
.ya8{bottom:318.777730pt;}
.y125{bottom:318.777751pt;}
.yfa{bottom:319.623861pt;}
.y1a3{bottom:320.077030pt;}
.yf4{bottom:324.806002pt;}
.y24{bottom:325.521200pt;}
.y22{bottom:325.521240pt;}
.y1a2{bottom:333.405030pt;}
.y61{bottom:334.146932pt;}
.y16f{bottom:335.189314pt;}
.y142{bottom:335.320231pt;}
.y96{bottom:335.444255pt;}
.ya7{bottom:335.444397pt;}
.y124{bottom:335.444417pt;}
.y21{bottom:342.187907pt;}
.y1d8{bottom:342.993028pt;}
.y1a1{bottom:346.733030pt;}
.y60{bottom:350.813599pt;}
.y16e{bottom:351.826647pt;}
.y141{bottom:351.986898pt;}
.y95{bottom:352.110921pt;}
.ya6{bottom:352.111064pt;}
.y123{bottom:352.111084pt;}
.y1d7{bottom:356.321028pt;}
.y23{bottom:358.854533pt;}
.y20{bottom:358.854574pt;}
.y1a0{bottom:360.061030pt;}
.y5f{bottom:367.480265pt;}
.y16d{bottom:368.463981pt;}
.ydc{bottom:368.653564pt;}
.y94{bottom:368.777588pt;}
.ya5{bottom:368.777730pt;}
.y122{bottom:368.777751pt;}
.y19f{bottom:373.389030pt;}
.y1f{bottom:375.521240pt;}
.y1d6{bottom:383.736361pt;}
.y5e{bottom:384.146932pt;}
.y16c{bottom:385.101314pt;}
.ydb{bottom:385.320231pt;}
.y93{bottom:385.444255pt;}
.ya4{bottom:385.444397pt;}
.y121{bottom:385.444417pt;}
.y19e{bottom:386.717030pt;}
.y1e{bottom:392.187907pt;}
.y1d5{bottom:397.064361pt;}
.y19d{bottom:400.045030pt;}
.y5d{bottom:400.813599pt;}
.y16b{bottom:401.738647pt;}
.yda{bottom:401.986898pt;}
.y92{bottom:402.110921pt;}
.ya3{bottom:402.111064pt;}
.y120{bottom:402.111084pt;}
.y1d{bottom:408.854574pt;}
.y1d4{bottom:410.392361pt;}
.y19c{bottom:413.373030pt;}
.y5c{bottom:417.480265pt;}
.y16a{bottom:418.375981pt;}
.yd9{bottom:418.653564pt;}
.y91{bottom:418.777588pt;}
.ya2{bottom:418.777730pt;}
.y11f{bottom:418.777751pt;}
.y1d3{bottom:423.720361pt;}
.y1c{bottom:425.521240pt;}
.y19b{bottom:426.701030pt;}
.y5b{bottom:434.146932pt;}
.y169{bottom:435.013314pt;}
.yd8{bottom:435.320231pt;}
.y90{bottom:435.444255pt;}
.ya1{bottom:435.444397pt;}
.y11e{bottom:435.444417pt;}
.y1d2{bottom:437.048361pt;}
.y19a{bottom:440.029030pt;}
.y1d1{bottom:450.376361pt;}
.y8e{bottom:450.813599pt;}
.y168{bottom:451.650647pt;}
.yd7{bottom:451.986898pt;}
.yba{bottom:452.110921pt;}
.y11d{bottom:452.111084pt;}
.y199{bottom:453.357030pt;}
.y1b{bottom:458.854574pt;}
.y1d0{bottom:463.704361pt;}
.y198{bottom:466.685030pt;}
.y5a{bottom:467.480265pt;}
.yd6{bottom:468.653564pt;}
.yb9{bottom:468.777588pt;}
.y11c{bottom:468.777751pt;}
.y167{bottom:476.617981pt;}
.y1cf{bottom:477.032361pt;}
.y197{bottom:480.013030pt;}
.y8d{bottom:484.146932pt;}
.yd5{bottom:485.320231pt;}
.yb8{bottom:485.444255pt;}
.y11b{bottom:485.444417pt;}
.y1ce{bottom:490.360361pt;}
.y1a{bottom:492.187907pt;}
.y196{bottom:493.341030pt;}
.y166{bottom:498.332647pt;}
.y8c{bottom:500.813599pt;}
.yd4{bottom:501.986898pt;}
.yb7{bottom:502.110921pt;}
.y11a{bottom:502.111084pt;}
.y1cd{bottom:503.688361pt;}
.y195{bottom:506.669030pt;}
.y19{bottom:508.854574pt;}
.y165{bottom:511.660647pt;}
.y1cc{bottom:517.016361pt;}
.y8b{bottom:517.480265pt;}
.y59{bottom:517.480306pt;}
.yd3{bottom:518.653564pt;}
.yb6{bottom:518.777588pt;}
.y119{bottom:518.777751pt;}
.y194{bottom:519.997030pt;}
.y164{bottom:524.988647pt;}
.y18{bottom:525.521240pt;}
.y1cb{bottom:530.344361pt;}
.y193{bottom:533.325030pt;}
.y8a{bottom:534.146932pt;}
.y58{bottom:534.146973pt;}
.yd2{bottom:535.320231pt;}
.yb5{bottom:535.444255pt;}
.y118{bottom:535.444417pt;}
.y17{bottom:542.187907pt;}
.y1ca{bottom:543.672361pt;}
.y192{bottom:546.653030pt;}
.y163{bottom:547.598691pt;}
.y89{bottom:550.813599pt;}
.y57{bottom:550.813639pt;}
.yd1{bottom:551.986898pt;}
.yb4{bottom:552.110921pt;}
.y117{bottom:552.111084pt;}
.y1c9{bottom:557.000361pt;}
.y16{bottom:558.854574pt;}
.y191{bottom:559.981030pt;}
.y162{bottom:560.926691pt;}
.y88{bottom:567.480265pt;}
.y56{bottom:567.480306pt;}
.yd0{bottom:568.653564pt;}
.yb3{bottom:568.777588pt;}
.y116{bottom:568.777751pt;}
.y1c8{bottom:570.328361pt;}
.y190{bottom:573.309030pt;}
.y15{bottom:575.521240pt;}
.y1c7{bottom:583.656361pt;}
.y87{bottom:584.146932pt;}
.y55{bottom:584.146973pt;}
.ycf{bottom:585.320231pt;}
.y115{bottom:585.444417pt;}
.y18f{bottom:586.637030pt;}
.y14{bottom:592.187907pt;}
.y1c6{bottom:596.984361pt;}
.y18e{bottom:599.965030pt;}
.y86{bottom:600.813599pt;}
.y54{bottom:600.813639pt;}
.yce{bottom:601.986898pt;}
.y114{bottom:602.111084pt;}
.y13{bottom:608.854574pt;}
.yf3{bottom:609.227336pt;}
.y1c5{bottom:610.312361pt;}
.y18d{bottom:613.293030pt;}
.y85{bottom:617.480265pt;}
.y53{bottom:617.480306pt;}
.ycd{bottom:618.653564pt;}
.y113{bottom:618.777751pt;}
.y1c4{bottom:623.640361pt;}
.y12{bottom:625.521240pt;}
.y18c{bottom:626.621030pt;}
.y84{bottom:634.146932pt;}
.y52{bottom:634.146973pt;}
.ycc{bottom:635.320231pt;}
.y112{bottom:635.444417pt;}
.y1c3{bottom:636.968361pt;}
.y18b{bottom:639.949030pt;}
.ydd{bottom:640.405314pt;}
.y161{bottom:640.668021pt;}
.y11{bottom:642.187907pt;}
.y1c2{bottom:650.296361pt;}
.y83{bottom:650.813599pt;}
.y51{bottom:650.813639pt;}
.ycb{bottom:651.986898pt;}
.y111{bottom:652.111084pt;}
.y18a{bottom:653.277030pt;}
.y160{bottom:657.373355pt;}
.y10{bottom:658.854574pt;}
.y1c1{bottom:663.624361pt;}
.y189{bottom:666.605030pt;}
.y82{bottom:667.480265pt;}
.y50{bottom:667.480306pt;}
.yca{bottom:668.653564pt;}
.y110{bottom:668.777751pt;}
.ye6{bottom:670.639254pt;}
.y15f{bottom:674.010688pt;}
.yf{bottom:675.521240pt;}
.yf2{bottom:675.713669pt;}
.y1c0{bottom:676.952361pt;}
.y188{bottom:679.933030pt;}
.ye5{bottom:680.776413pt;}
.y81{bottom:684.146932pt;}
.y4f{bottom:684.146973pt;}
.yc9{bottom:685.320231pt;}
.y10f{bottom:685.444417pt;}
.yf1{bottom:685.850829pt;}
.y1bf{bottom:690.280361pt;}
.y15e{bottom:690.648021pt;}
.ye4{bottom:690.913573pt;}
.ye{bottom:692.187907pt;}
.y187{bottom:693.261030pt;}
.yf0{bottom:695.987989pt;}
.y80{bottom:700.813599pt;}
.y4e{bottom:700.813639pt;}
.ye3{bottom:701.050733pt;}
.yc8{bottom:701.986898pt;}
.y10e{bottom:702.111084pt;}
.y1be{bottom:703.608361pt;}
.yef{bottom:706.032992pt;}
.y186{bottom:706.589030pt;}
.y15d{bottom:707.285355pt;}
.yd{bottom:708.854574pt;}
.ye2{bottom:711.095736pt;}
.yee{bottom:716.170152pt;}
.y1bd{bottom:716.936361pt;}
.y7f{bottom:717.480265pt;}
.y4d{bottom:717.480306pt;}
.yc7{bottom:718.653564pt;}
.y10d{bottom:718.777751pt;}
.ye1{bottom:721.232896pt;}
.y15c{bottom:723.922688pt;}
.yc{bottom:725.521240pt;}
.y1bc{bottom:730.264361pt;}
.y7e{bottom:734.146932pt;}
.y4c{bottom:734.146973pt;}
.yc6{bottom:735.320231pt;}
.ye0{bottom:735.332764pt;}
.y10c{bottom:735.444417pt;}
.y185{bottom:736.589030pt;}
.yed{bottom:737.147384pt;}
.y15b{bottom:740.560021pt;}
.yb{bottom:742.187907pt;}
.y1bb{bottom:743.592361pt;}
.yec{bottom:747.284544pt;}
.y7d{bottom:750.813599pt;}
.y4b{bottom:750.813639pt;}
.yc5{bottom:751.986898pt;}
.y10b{bottom:752.111084pt;}
.y1ba{bottom:756.920361pt;}
.y15a{bottom:757.197355pt;}
.yeb{bottom:761.292255pt;}
.y7c{bottom:767.480265pt;}
.y4a{bottom:767.480306pt;}
.yc4{bottom:768.653564pt;}
.y10a{bottom:768.777751pt;}
.y1b9{bottom:770.248361pt;}
.yea{bottom:771.429415pt;}
.y159{bottom:773.834688pt;}
.ya{bottom:781.461469pt;}
.y1b8{bottom:783.576361pt;}
.y7b{bottom:784.146932pt;}
.y49{bottom:784.146973pt;}
.yc3{bottom:785.320231pt;}
.y109{bottom:785.444417pt;}
.ye9{bottom:785.529282pt;}
.y184{bottom:786.638301pt;}
.y158{bottom:790.472021pt;}
.y9{bottom:794.789469pt;}
.ye8{bottom:795.666442pt;}
.y1b7{bottom:796.904361pt;}
.y183{bottom:799.966301pt;}
.y7a{bottom:800.813599pt;}
.y48{bottom:800.813639pt;}
.yc2{bottom:801.986898pt;}
.y108{bottom:802.111084pt;}
.y157{bottom:807.109355pt;}
.ye7{bottom:809.674154pt;}
.y1b6{bottom:810.232361pt;}
.y182{bottom:813.294301pt;}
.y79{bottom:817.480265pt;}
.y47{bottom:817.480306pt;}
.y140{bottom:818.653564pt;}
.y107{bottom:818.777751pt;}
.y1b5{bottom:823.560361pt;}
.y156{bottom:823.746688pt;}
.y181{bottom:826.622301pt;}
.y8{bottom:832.656169pt;}
.y78{bottom:834.146932pt;}
.y46{bottom:834.146973pt;}
.yc1{bottom:835.320231pt;}
.y106{bottom:835.444417pt;}
.y1b4{bottom:836.888361pt;}
.y180{bottom:839.950301pt;}
.y155{bottom:840.384021pt;}
.ydf{bottom:847.799886pt;}
.y1b3{bottom:850.216361pt;}
.y77{bottom:850.813599pt;}
.y45{bottom:850.813639pt;}
.y13f{bottom:851.986898pt;}
.y105{bottom:852.111084pt;}
.y17f{bottom:853.278301pt;}
.y154{bottom:857.021355pt;}
.y1b2{bottom:863.544361pt;}
.y76{bottom:867.480265pt;}
.y44{bottom:867.480306pt;}
.y13e{bottom:868.653564pt;}
.y7{bottom:872.377441pt;}
.y153{bottom:873.658688pt;}
.y1b1{bottom:876.872361pt;}
.y75{bottom:884.146932pt;}
.y43{bottom:884.146973pt;}
.y13d{bottom:885.320231pt;}
.yc0{bottom:885.324270pt;}
.y17e{bottom:889.896301pt;}
.y1b0{bottom:890.200361pt;}
.y6{bottom:896.377441pt;}
.y152{bottom:897.957355pt;}
.y74{bottom:900.813599pt;}
.y42{bottom:900.813639pt;}
.y13c{bottom:901.986898pt;}
.ybf{bottom:901.990936pt;}
.y136{bottom:902.340306pt;}
.y17d{bottom:903.224301pt;}
.y1af{bottom:903.528361pt;}
.y135{bottom:915.668306pt;}
.y1ae{bottom:916.856361pt;}
.y73{bottom:917.480265pt;}
.y41{bottom:917.480306pt;}
.y13b{bottom:918.653564pt;}
.ybe{bottom:918.657603pt;}
.y151{bottom:919.660688pt;}
.y134{bottom:928.996306pt;}
.y17c{bottom:929.857634pt;}
.y1ad{bottom:930.184361pt;}
.y150{bottom:932.988688pt;}
.y72{bottom:934.146932pt;}
.y40{bottom:934.146973pt;}
.y13a{bottom:935.320231pt;}
.ybd{bottom:935.324270pt;}
.y133{bottom:942.324306pt;}
.y17b{bottom:943.185634pt;}
.y1ac{bottom:943.512361pt;}
.y71{bottom:950.813599pt;}
.y3f{bottom:950.813639pt;}
.y139{bottom:951.986898pt;}
.ybc{bottom:951.990936pt;}
.y14f{bottom:955.647764pt;}
.yb2{bottom:955.652306pt;}
.y17a{bottom:956.513634pt;}
.y5{bottom:956.561849pt;}
.y1ab{bottom:956.840361pt;}
.y70{bottom:967.480265pt;}
.y3e{bottom:967.480306pt;}
.y138{bottom:968.653564pt;}
.ybb{bottom:968.657603pt;}
.y137{bottom:968.813639pt;}
.y14e{bottom:968.975764pt;}
.yb1{bottom:968.980306pt;}
.y179{bottom:969.841634pt;}
.y1aa{bottom:970.168361pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3d{bottom:1002.206543pt;}
.y8f{bottom:1002.206706pt;}
.hf{height:22.403733pt;}
.h1a{height:23.722667pt;}
.h15{height:25.066431pt;}
.h13{height:25.619367pt;}
.h16{height:26.467202pt;}
.he{height:32.005333pt;}
.hd{height:32.760417pt;}
.h2{height:37.376000pt;}
.ha{height:37.653333pt;}
.h4{height:39.712000pt;}
.h18{height:40.569082pt;}
.h11{height:43.656000pt;}
.h17{height:46.376000pt;}
.h19{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.h9{height:51.360000pt;}
.h8{height:52.746667pt;}
.hb{height:54.560000pt;}
.h10{height:57.493333pt;}
.h7{height:57.621333pt;}
.hc{height:63.296000pt;}
.h6{height:82.176000pt;}
.h14{height:130.218778pt;}
.h12{height:337.074666pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:317.480000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.756271pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.x20{left:72.047484pt;}
.x4{left:75.717199pt;}
.x8{left:83.149602pt;}
.x6{left:86.929867pt;}
.x23{left:90.709469pt;}
.x10{left:115.240542pt;}
.xf{left:117.830125pt;}
.xd{left:124.290263pt;}
.xe{left:125.672601pt;}
.x11{left:136.344265pt;}
.x1d{left:157.130931pt;}
.x14{left:192.361454pt;}
.x12{left:193.467326pt;}
.xc{left:203.802531pt;}
.x15{left:205.650349pt;}
.x13{left:221.390593pt;}
.x1a{left:238.110802pt;}
.x1e{left:252.054810pt;}
.x22{left:254.490540pt;}
.x18{left:268.253870pt;}
.x17{left:271.755799pt;}
.x16{left:273.700290pt;}
.x21{left:275.723592pt;}
.x19{left:293.596769pt;}
.x1f{left:346.982810pt;}
.x1c{left:388.178548pt;}
.x5{left:408.178104pt;}
.x1b{left:412.531066pt;}
.x9{left:423.311445pt;}
.x24{left:430.868154pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xa{left:709.519613pt;}
}




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