
    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_9f3bd009b5ff18a716c6d050.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fca2ef84607f8be5d2d8c7fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e873a5f4683720f2305149b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ffc9bc5f5cc806757c7e542f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_885264792dc974a3ac0ad249.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_86695b4879bd469336a74384.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_e41c89c3d2577b0e464d2006.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b0f73ffa56cbd9dcb5c6445a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128418;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_e1a7b730dd03824ff84307bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_bf5b406a4e1402a04ef5de16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706055;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);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.782200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v7{vertical-align:22.610400px;}
.v3{vertical-align:28.941000px;}
.v1{vertical-align:30.381600px;}
.v6{vertical-align:35.603400px;}
.v5{vertical-align:47.385600px;}
.ls5e{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.780000px;}
.ls5f{letter-spacing:-0.600000px;}
.ls5d{letter-spacing:-0.480000px;}
.ls60{letter-spacing:-0.360000px;}
.ls91{letter-spacing:-0.336000px;}
.ls63{letter-spacing:-0.300000px;}
.ls80{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.180000px;}
.ls90{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.135000px;}
.ls64{letter-spacing:-0.120000px;}
.ls81{letter-spacing:-0.096000px;}
.ls34{letter-spacing:-0.060000px;}
.ls57{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls4{letter-spacing:0.004920px;}
.ls3{letter-spacing:0.005520px;}
.ls46{letter-spacing:0.009600px;}
.ls45{letter-spacing:0.017400px;}
.ls4e{letter-spacing:0.048000px;}
.ls3a{letter-spacing:0.060000px;}
.ls39{letter-spacing:0.062400px;}
.ls72{letter-spacing:0.096000px;}
.ls4b{letter-spacing:0.118800px;}
.ls38{letter-spacing:0.120000px;}
.ls52{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls71{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.266400px;}
.ls78{letter-spacing:0.288000px;}
.ls58{letter-spacing:0.300000px;}
.ls8c{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls8d{letter-spacing:0.384000px;}
.ls23{letter-spacing:0.420000px;}
.ls7d{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.480000px;}
.ls73{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls77{letter-spacing:0.576000px;}
.ls4d{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.660000px;}
.ls84{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.ls8e{letter-spacing:0.768000px;}
.ls3d{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.840000px;}
.ls79{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.900000px;}
.ls56{letter-spacing:0.912000px;}
.ls19{letter-spacing:0.960000px;}
.ls7c{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.056000px;}
.ls3c{letter-spacing:1.080000px;}
.ls7f{letter-spacing:1.104000px;}
.ls3b{letter-spacing:1.140000px;}
.ls93{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.200000px;}
.ls55{letter-spacing:1.248000px;}
.ls28{letter-spacing:1.260000px;}
.ls75{letter-spacing:1.296000px;}
.lse{letter-spacing:1.320000px;}
.ls85{letter-spacing:1.344000px;}
.ls2e{letter-spacing:1.380000px;}
.ls83{letter-spacing:1.392000px;}
.lsb{letter-spacing:1.440000px;}
.ls6d{letter-spacing:1.488000px;}
.ls2b{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.560000px;}
.ls6b{letter-spacing:1.584000px;}
.lsc{letter-spacing:1.620000px;}
.ls6f{letter-spacing:1.632000px;}
.ls1b{letter-spacing:1.680000px;}
.ls87{letter-spacing:1.728000px;}
.ls22{letter-spacing:1.740000px;}
.ls49{letter-spacing:1.756200px;}
.ls61{letter-spacing:1.800000px;}
.ls89{letter-spacing:1.824000px;}
.ls12{letter-spacing:1.860000px;}
.ls88{letter-spacing:1.872000px;}
.ls31{letter-spacing:1.920000px;}
.ls7e{letter-spacing:1.968000px;}
.ls1d{letter-spacing:1.980000px;}
.ls30{letter-spacing:2.040000px;}
.ls7a{letter-spacing:2.064000px;}
.ls18{letter-spacing:2.100000px;}
.ls6c{letter-spacing:2.112000px;}
.ls24{letter-spacing:2.160000px;}
.ls8a{letter-spacing:2.208000px;}
.ls3e{letter-spacing:2.220000px;}
.ls5a{letter-spacing:2.280000px;}
.ls82{letter-spacing:2.304000px;}
.ls3f{letter-spacing:2.340000px;}
.ls51{letter-spacing:2.352000px;}
.ls17{letter-spacing:2.400000px;}
.ls21{letter-spacing:2.460000px;}
.ls92{letter-spacing:2.496000px;}
.ls5b{letter-spacing:2.520000px;}
.ls2f{letter-spacing:2.580000px;}
.ls27{letter-spacing:2.640000px;}
.ls76{letter-spacing:2.688000px;}
.ls50{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.760000px;}
.ls36{letter-spacing:2.820000px;}
.ls35{letter-spacing:2.880000px;}
.ls70{letter-spacing:2.928000px;}
.ls41{letter-spacing:2.940000px;}
.ls2c{letter-spacing:3.000000px;}
.ls43{letter-spacing:3.060000px;}
.ls32{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.ls1c{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.ls8{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.420000px;}
.ls8b{letter-spacing:3.456000px;}
.ls2d{letter-spacing:3.540000px;}
.ls74{letter-spacing:3.552000px;}
.ls4f{letter-spacing:3.600000px;}
.ls26{letter-spacing:3.720000px;}
.ls7b{letter-spacing:3.792000px;}
.ls42{letter-spacing:3.900000px;}
.ls16{letter-spacing:3.960000px;}
.ls62{letter-spacing:4.080000px;}
.ls40{letter-spacing:4.140000px;}
.ls86{letter-spacing:4.272000px;}
.ls44{letter-spacing:4.380000px;}
.ls9{letter-spacing:4.500000px;}
.ls8f{letter-spacing:4.560000px;}
.ls4c{letter-spacing:4.800000px;}
.ls69{letter-spacing:5.520000px;}
.ls65{letter-spacing:5.700000px;}
.ls67{letter-spacing:5.760000px;}
.ls68{letter-spacing:5.880000px;}
.ls48{letter-spacing:6.000000px;}
.ls5c{letter-spacing:7.020000px;}
.ls25{letter-spacing:7.140000px;}
.ls6a{letter-spacing:7.620000px;}
.ls4a{letter-spacing:7.860000px;}
.ls66{letter-spacing:10.680000px;}
.ls1{letter-spacing:59.349876px;}
.ls0{letter-spacing:59.354400px;}
.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;}
}
.ws5b{word-spacing:-22.380000px;}
.ws18{word-spacing:-16.680000px;}
.ws70{word-spacing:-16.272000px;}
.ws23{word-spacing:-16.200000px;}
.ws73{word-spacing:-15.456000px;}
.ws49{word-spacing:-15.180000px;}
.ws17{word-spacing:-15.000000px;}
.ws6e{word-spacing:-14.304000px;}
.ws71{word-spacing:-13.728000px;}
.ws5c{word-spacing:-13.632000px;}
.ws6f{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.ws75{word-spacing:-12.768000px;}
.ws76{word-spacing:-12.720000px;}
.ws77{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.ws72{word-spacing:-12.048000px;}
.ws5d{word-spacing:-12.000000px;}
.ws74{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.210662px;}
.ws16{word-spacing:-8.745000px;}
.ws1{word-spacing:-7.293330px;}
.ws2e{word-spacing:-6.996000px;}
.ws7e{word-spacing:-4.272000px;}
.ws81{word-spacing:-3.504000px;}
.ws5{word-spacing:-2.886000px;}
.ws62{word-spacing:-2.700000px;}
.ws8f{word-spacing:-2.640000px;}
.ws85{word-spacing:-2.400000px;}
.ws79{word-spacing:-2.304000px;}
.ws10{word-spacing:-2.220000px;}
.ws83{word-spacing:-2.160000px;}
.ws63{word-spacing:-2.112000px;}
.ws7c{word-spacing:-1.920000px;}
.ws7f{word-spacing:-1.728000px;}
.ws65{word-spacing:-1.632000px;}
.ws7b{word-spacing:-1.392000px;}
.ws12{word-spacing:-1.380000px;}
.ws6a{word-spacing:-1.248000px;}
.ws61{word-spacing:-1.020000px;}
.ws97{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.900000px;}
.ws5e{word-spacing:-0.780000px;}
.ws8b{word-spacing:-0.768000px;}
.ws8c{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.624000px;}
.ws60{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.432000px;}
.ws3a{word-spacing:-0.420000px;}
.ws53{word-spacing:-0.300000px;}
.ws8d{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.192000px;}
.ws91{word-spacing:-0.144000px;}
.ws54{word-spacing:-0.120000px;}
.ws80{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws82{word-spacing:0.048000px;}
.ws8a{word-spacing:0.096000px;}
.ws1c{word-spacing:0.120000px;}
.ws84{word-spacing:0.144000px;}
.ws38{word-spacing:0.180000px;}
.ws86{word-spacing:0.192000px;}
.ws2b{word-spacing:0.240000px;}
.ws69{word-spacing:0.288000px;}
.ws55{word-spacing:0.300000px;}
.ws15{word-spacing:0.336000px;}
.ws4b{word-spacing:0.360000px;}
.ws4f{word-spacing:0.420000px;}
.wsd{word-spacing:0.480000px;}
.ws50{word-spacing:0.540000px;}
.ws44{word-spacing:0.600000px;}
.ws39{word-spacing:0.660000px;}
.ws66{word-spacing:0.672000px;}
.ws4e{word-spacing:0.720000px;}
.ws4d{word-spacing:0.780000px;}
.ws21{word-spacing:0.840000px;}
.ws8e{word-spacing:0.864000px;}
.ws3c{word-spacing:0.960000px;}
.ws5f{word-spacing:1.020000px;}
.ws2a{word-spacing:1.140000px;}
.ws26{word-spacing:1.152000px;}
.ws93{word-spacing:1.248000px;}
.ws25{word-spacing:1.260000px;}
.ws64{word-spacing:1.296000px;}
.ws48{word-spacing:1.344000px;}
.ws1e{word-spacing:1.380000px;}
.ws29{word-spacing:1.440000px;}
.ws78{word-spacing:1.488000px;}
.ws3b{word-spacing:1.560000px;}
.ws4a{word-spacing:1.620000px;}
.ws87{word-spacing:1.632000px;}
.ws27{word-spacing:1.680000px;}
.ws43{word-spacing:1.740000px;}
.wse{word-spacing:1.800000px;}
.wsc{word-spacing:1.860000px;}
.ws90{word-spacing:1.872000px;}
.ws14{word-spacing:1.920000px;}
.ws1d{word-spacing:1.980000px;}
.ws1b{word-spacing:2.100000px;}
.ws9{word-spacing:2.160000px;}
.ws46{word-spacing:2.256000px;}
.wsa{word-spacing:2.280000px;}
.ws45{word-spacing:2.340000px;}
.ws96{word-spacing:2.352000px;}
.ws7d{word-spacing:2.400000px;}
.ws58{word-spacing:2.460000px;}
.ws89{word-spacing:2.496000px;}
.ws1a{word-spacing:2.520000px;}
.ws94{word-spacing:2.592000px;}
.ws95{word-spacing:2.688000px;}
.ws68{word-spacing:2.736000px;}
.ws8{word-spacing:3.000000px;}
.ws20{word-spacing:3.060000px;}
.ws51{word-spacing:3.120000px;}
.ws59{word-spacing:3.180000px;}
.ws92{word-spacing:3.264000px;}
.ws67{word-spacing:3.312000px;}
.ws6b{word-spacing:3.360000px;}
.ws2f{word-spacing:3.456000px;}
.ws22{word-spacing:3.480000px;}
.ws47{word-spacing:3.552000px;}
.ws36{word-spacing:3.600000px;}
.ws88{word-spacing:3.696000px;}
.ws57{word-spacing:3.840000px;}
.ws5a{word-spacing:3.900000px;}
.ws2d{word-spacing:3.936000px;}
.ws13{word-spacing:3.960000px;}
.ws2c{word-spacing:3.984000px;}
.ws11{word-spacing:4.080000px;}
.ws28{word-spacing:4.140000px;}
.ws4c{word-spacing:4.200000px;}
.wsb{word-spacing:4.440000px;}
.ws19{word-spacing:4.500000px;}
.ws37{word-spacing:4.560000px;}
.ws24{word-spacing:4.620000px;}
.ws56{word-spacing:4.680000px;}
.ws52{word-spacing:4.740000px;}
.wsf{word-spacing:4.800000px;}
.ws7{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
.ws31{word-spacing:43.392000px;}
.ws3d{word-spacing:153.840000px;}
.ws30{word-spacing:161.088000px;}
.ws32{word-spacing:185.280000px;}
.ws42{word-spacing:203.136000px;}
.ws40{word-spacing:227.136000px;}
.ws41{word-spacing:250.032000px;}
.ws3f{word-spacing:261.168000px;}
.ws33{word-spacing:276.864000px;}
.ws3e{word-spacing:295.152000px;}
.ws35{word-spacing:394.224000px;}
.ws34{word-spacing:682.416000px;}
._7{margin-left:-2898.096000px;}
._8{margin-left:-2874.288000px;}
._46{margin-left:-11.940000px;}
._b{margin-left:-9.600000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.759000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._5{width:1.440000px;}
._43{width:2.640000px;}
._c{width:3.720000px;}
._9{width:4.800000px;}
._6{width:6.300000px;}
._44{width:7.350000px;}
._45{width:8.970000px;}
._a{width:42.634080px;}
._34{width:44.149920px;}
._16{width:51.120000px;}
._20{width:55.392000px;}
._d{width:88.767000px;}
._35{width:108.096000px;}
._18{width:120.096000px;}
._17{width:124.368000px;}
._11{width:151.803000px;}
._12{width:156.096000px;}
._f{width:166.080000px;}
._32{width:185.280000px;}
._10{width:195.183000px;}
._15{width:197.280000px;}
._2f{width:198.624000px;}
._2d{width:199.968000px;}
._27{width:201.264000px;}
._1e{width:203.952000px;}
._1b{width:205.296000px;}
._1f{width:206.640000px;}
._2b{width:207.936000px;}
._25{width:209.328000px;}
._29{width:210.624000px;}
._23{width:214.608000px;}
._42{width:261.168000px;}
._24{width:272.928000px;}
._21{width:304.944000px;}
._3e{width:307.152000px;}
._41{width:316.416000px;}
._3f{width:328.416000px;}
._40{width:333.360000px;}
._3d{width:344.448000px;}
._2e{width:347.904000px;}
._19{width:360.864000px;}
._3b{width:367.728000px;}
._13{width:398.304000px;}
._1c{width:406.224000px;}
._e{width:422.496000px;}
._3c{width:447.744000px;}
._39{width:470.079000px;}
._31{width:503.808000px;}
._36{width:519.600000px;}
._38{width:539.343000px;}
._37{width:555.375000px;}
._3a{width:567.375000px;}
._30{width:590.400000px;}
._1a{width:623.808000px;}
._14{width:653.088000px;}
._2a{width:658.464000px;}
._22{width:665.088000px;}
._1d{width:691.776000px;}
._28{width:698.448000px;}
._26{width:702.384000px;}
._2c{width:774.785400px;}
._33{width:878.127000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y201{bottom:80.263500px;}
.y152{bottom:83.770350px;}
.y63{bottom:83.772600px;}
.y17f{bottom:83.785350px;}
.y9c{bottom:84.070350px;}
.y6e{bottom:84.523350px;}
.yd5{bottom:84.736950px;}
.yd0{bottom:85.798950px;}
.y18d{bottom:86.121900px;}
.y2b{bottom:88.023000px;}
.yf4{bottom:91.257300px;}
.ycb{bottom:92.817600px;}
.y1cd{bottom:95.263500px;}
.y6d{bottom:100.267350px;}
.yd4{bottom:100.480950px;}
.y18c{bottom:101.121900px;}
.ycf{bottom:101.542950px;}
.y151{bottom:101.770350px;}
.y62{bottom:101.772600px;}
.y17e{bottom:101.785350px;}
.y9b{bottom:102.070350px;}
.y2a{bottom:103.023000px;}
.y1cc{bottom:110.263500px;}
.yca{bottom:110.817600px;}
.y18b{bottom:116.121900px;}
.y150{bottom:119.770350px;}
.y61{bottom:119.772600px;}
.y17d{bottom:119.785350px;}
.y9a{bottom:120.070350px;}
.yf3{bottom:120.261300px;}
.y1cb{bottom:125.263500px;}
.yc9{bottom:128.817600px;}
.y10f{bottom:128.985450px;}
.y18a{bottom:131.121900px;}
.yf2{bottom:136.509300px;}
.y14f{bottom:137.770350px;}
.y60{bottom:137.772600px;}
.y17c{bottom:137.785350px;}
.y99{bottom:138.070350px;}
.y1ca{bottom:140.263500px;}
.y10e{bottom:145.233450px;}
.y189{bottom:146.121900px;}
.yc8{bottom:146.817600px;}
.y123{bottom:148.485450px;}
.yf1{bottom:152.757300px;}
.y1c9{bottom:155.263500px;}
.y14e{bottom:155.770350px;}
.y5f{bottom:155.772600px;}
.y17b{bottom:155.785350px;}
.y98{bottom:156.070350px;}
.y188{bottom:161.121900px;}
.y10d{bottom:161.481450px;}
.yd7{bottom:164.001750px;}
.y122{bottom:164.733450px;}
.yc7{bottom:164.817600px;}
.yf0{bottom:169.052700px;}
.y1c8{bottom:170.263500px;}
.y14d{bottom:173.770350px;}
.y5e{bottom:173.772600px;}
.y17a{bottom:173.785350px;}
.y97{bottom:174.070350px;}
.y187{bottom:176.121900px;}
.yd9{bottom:179.023350px;}
.yd6{bottom:179.745750px;}
.y121{bottom:180.981450px;}
.yc6{bottom:182.817600px;}
.y1c7{bottom:185.263500px;}
.yef{bottom:185.300700px;}
.y14c{bottom:191.770350px;}
.y5d{bottom:191.772600px;}
.y179{bottom:191.785350px;}
.y96{bottom:192.070350px;}
.y10c{bottom:192.993450px;}
.yd8{bottom:194.767350px;}
.y1c6{bottom:200.263500px;}
.yc5{bottom:200.817600px;}
.yee{bottom:201.548700px;}
.y186{bottom:209.230350px;}
.y14b{bottom:209.770350px;}
.y5c{bottom:209.772600px;}
.y178{bottom:209.785350px;}
.y95{bottom:210.070350px;}
.y120{bottom:212.493450px;}
.y1c5{bottom:215.263500px;}
.yed{bottom:217.796700px;}
.yc4{bottom:218.817600px;}
.y29{bottom:219.504900px;}
.y14a{bottom:227.770350px;}
.y5b{bottom:227.772600px;}
.y10b{bottom:227.888550px;}
.y94{bottom:228.070350px;}
.y1c4{bottom:230.263500px;}
.yec{bottom:234.044700px;}
.yc3{bottom:236.817600px;}
.y28{bottom:237.514200px;}
.y1c3{bottom:245.263500px;}
.y177{bottom:245.380350px;}
.y149{bottom:245.770350px;}
.y5a{bottom:245.772600px;}
.y93{bottom:246.070350px;}
.y10a{bottom:247.388550px;}
.yeb{bottom:250.292700px;}
.yc2{bottom:254.817600px;}
.y1c2{bottom:260.263500px;}
.y148{bottom:263.770350px;}
.y59{bottom:263.772600px;}
.y92{bottom:264.070350px;}
.y27{bottom:264.859200px;}
.yea{bottom:266.540700px;}
.y109{bottom:266.888550px;}
.yc1{bottom:272.817600px;}
.y1c1{bottom:275.263500px;}
.y185{bottom:281.365350px;}
.y176{bottom:281.635350px;}
.y147{bottom:281.770350px;}
.y58{bottom:281.772600px;}
.y91{bottom:282.070350px;}
.ye9{bottom:282.788700px;}
.y26{bottom:282.859200px;}
.y1c0{bottom:290.263500px;}
.yc0{bottom:290.817600px;}
.ye8{bottom:299.036700px;}
.y175{bottom:299.635350px;}
.y146{bottom:299.770350px;}
.y57{bottom:299.772600px;}
.y90{bottom:300.070350px;}
.y25{bottom:300.859200px;}
.y200{bottom:305.263500px;}
.y1bf{bottom:305.265900px;}
.ybf{bottom:308.817600px;}
.ye7{bottom:315.284700px;}
.y184{bottom:317.365350px;}
.y174{bottom:317.635350px;}
.y145{bottom:317.770350px;}
.y56{bottom:317.772600px;}
.y8f{bottom:318.070350px;}
.y24{bottom:318.859200px;}
.y1ff{bottom:320.263500px;}
.y1be{bottom:320.265900px;}
.y115{bottom:323.135100px;}
.y108{bottom:323.137200px;}
.ybe{bottom:326.817600px;}
.ye6{bottom:331.532700px;}
.y1fe{bottom:335.263500px;}
.y1bd{bottom:335.265900px;}
.y173{bottom:335.635350px;}
.y144{bottom:335.770350px;}
.y55{bottom:335.772600px;}
.y8e{bottom:336.070350px;}
.y23{bottom:336.859200px;}
.y114{bottom:339.383100px;}
.y107{bottom:339.385200px;}
.y1fd{bottom:350.263500px;}
.y1bc{bottom:350.265900px;}
.y172{bottom:353.635350px;}
.y143{bottom:353.770350px;}
.y54{bottom:353.772600px;}
.y8d{bottom:354.070350px;}
.y22{bottom:354.859200px;}
.y113{bottom:355.631100px;}
.y106{bottom:355.633200px;}
.ye5{bottom:360.536700px;}
.ybd{bottom:362.412600px;}
.y1fc{bottom:365.263500px;}
.y1bb{bottom:365.265900px;}
.y171{bottom:371.635350px;}
.y142{bottom:371.770350px;}
.y53{bottom:371.772600px;}
.y105{bottom:371.881200px;}
.y8c{bottom:372.070350px;}
.y21{bottom:372.859200px;}
.y1fb{bottom:380.263500px;}
.y1ba{bottom:380.265900px;}
.y112{bottom:387.143100px;}
.ye4{bottom:389.540700px;}
.y170{bottom:389.635350px;}
.y141{bottom:389.770350px;}
.y52{bottom:389.772600px;}
.y8b{bottom:390.070350px;}
.y20{bottom:390.859200px;}
.y1fa{bottom:395.263500px;}
.y1b9{bottom:395.265900px;}
.ybc{bottom:398.277600px;}
.y104{bottom:404.389200px;}
.y16f{bottom:407.635350px;}
.y140{bottom:407.770350px;}
.y51{bottom:407.772600px;}
.y8a{bottom:408.070350px;}
.y1f{bottom:408.859200px;}
.y1f9{bottom:410.263500px;}
.y1b8{bottom:410.265900px;}
.y103{bottom:420.637200px;}
.ye3{bottom:421.931850px;}
.y111{bottom:422.038200px;}
.y1f8{bottom:425.263500px;}
.y1b7{bottom:425.265900px;}
.y16e{bottom:425.635350px;}
.y13f{bottom:425.770350px;}
.y50{bottom:425.772600px;}
.y89{bottom:426.070350px;}
.y1e{bottom:426.859200px;}
.y102{bottom:436.885200px;}
.y1f7{bottom:440.263500px;}
.y1b6{bottom:440.265900px;}
.ye2{bottom:441.445350px;}
.y110{bottom:441.538200px;}
.y16d{bottom:443.635350px;}
.y13e{bottom:443.770350px;}
.y4f{bottom:443.772600px;}
.y88{bottom:444.070350px;}
.y1d{bottom:444.859200px;}
.ybb{bottom:452.817600px;}
.y101{bottom:453.133200px;}
.y1f6{bottom:455.263500px;}
.y1b5{bottom:455.265900px;}
.yd3{bottom:457.420950px;}
.y16c{bottom:461.635350px;}
.y13d{bottom:461.770350px;}
.y4e{bottom:461.772600px;}
.y87{bottom:462.070350px;}
.y1c{bottom:462.859200px;}
.y1f5{bottom:470.263500px;}
.y1b4{bottom:470.265900px;}
.yba{bottom:470.817600px;}
.yd2{bottom:473.164950px;}
.y183{bottom:479.365350px;}
.y16b{bottom:479.635350px;}
.y13c{bottom:479.770350px;}
.y4d{bottom:479.772600px;}
.y86{bottom:480.070350px;}
.y1b{bottom:480.859200px;}
.y1f4{bottom:485.263500px;}
.y1b3{bottom:485.265900px;}
.y100{bottom:485.641200px;}
.y11f{bottom:487.149600px;}
.yb9{bottom:488.817600px;}
.y16a{bottom:497.635350px;}
.y13b{bottom:497.770350px;}
.y4c{bottom:497.772600px;}
.yf7{bottom:497.908800px;}
.ye1{bottom:497.920350px;}
.y1a{bottom:498.859200px;}
.y1f3{bottom:500.263500px;}
.y1b2{bottom:500.265900px;}
.yff{bottom:501.889200px;}
.y11e{bottom:502.893600px;}
.yb8{bottom:506.817600px;}
.yf6{bottom:513.652800px;}
.y1f2{bottom:515.263500px;}
.y1b1{bottom:515.265900px;}
.y169{bottom:515.635350px;}
.y85{bottom:515.665350px;}
.y13a{bottom:515.770350px;}
.y4b{bottom:515.772600px;}
.ye0{bottom:515.920350px;}
.y19{bottom:516.859200px;}
.yfe{bottom:518.137200px;}
.y11d{bottom:518.637600px;}
.yb7{bottom:524.817600px;}
.yf5{bottom:529.396800px;}
.y1f1{bottom:530.263500px;}
.y1b0{bottom:530.265900px;}
.y182{bottom:533.365350px;}
.y168{bottom:533.635350px;}
.y139{bottom:533.770350px;}
.y4a{bottom:533.772600px;}
.ydf{bottom:533.920350px;}
.y11c{bottom:534.381600px;}
.yfd{bottom:534.385200px;}
.y18{bottom:534.859200px;}
.yb6{bottom:542.817600px;}
.y1f0{bottom:545.263500px;}
.y1af{bottom:545.265900px;}
.y11b{bottom:550.125600px;}
.y167{bottom:551.635350px;}
.y138{bottom:551.770350px;}
.y49{bottom:551.772600px;}
.y84{bottom:551.920350px;}
.y17{bottom:552.859200px;}
.yfc{bottom:559.513200px;}
.y1ef{bottom:560.263500px;}
.y1ae{bottom:560.265900px;}
.yb5{bottom:560.817600px;}
.y166{bottom:569.635350px;}
.y137{bottom:569.770350px;}
.y48{bottom:569.772600px;}
.y83{bottom:569.920350px;}
.y16{bottom:570.859200px;}
.y1ee{bottom:575.263500px;}
.y1ad{bottom:575.265900px;}
.yb4{bottom:578.817600px;}
.y165{bottom:587.635350px;}
.y136{bottom:587.770350px;}
.y47{bottom:587.772600px;}
.y82{bottom:587.920350px;}
.y15{bottom:588.859200px;}
.y1ed{bottom:590.263500px;}
.y1ac{bottom:590.265900px;}
.yfb{bottom:594.417600px;}
.yb3{bottom:596.817600px;}
.y1ec{bottom:605.263500px;}
.y1ab{bottom:605.265900px;}
.y164{bottom:605.635350px;}
.y135{bottom:605.770350px;}
.y46{bottom:605.772600px;}
.y81{bottom:605.920350px;}
.y14{bottom:606.859200px;}
.yfa{bottom:613.917600px;}
.yb2{bottom:614.817600px;}
.y1eb{bottom:620.263500px;}
.y1aa{bottom:620.265900px;}
.y67{bottom:623.367600px;}
.y163{bottom:623.635350px;}
.y134{bottom:623.770350px;}
.y45{bottom:623.772600px;}
.y80{bottom:623.920350px;}
.y13{bottom:624.859200px;}
.yb1{bottom:632.817600px;}
.yf9{bottom:633.417600px;}
.y1ea{bottom:635.263500px;}
.y1a9{bottom:635.265900px;}
.y181{bottom:641.365350px;}
.y162{bottom:641.635350px;}
.y133{bottom:641.770350px;}
.y44{bottom:641.772600px;}
.y7f{bottom:641.920350px;}
.y12{bottom:642.859200px;}
.y1e9{bottom:650.263500px;}
.y1a8{bottom:650.265900px;}
.yb0{bottom:650.817600px;}
.y161{bottom:659.635350px;}
.y132{bottom:659.770350px;}
.y43{bottom:659.772600px;}
.y7e{bottom:659.920350px;}
.y11{bottom:660.859200px;}
.y1e8{bottom:665.263500px;}
.y1a7{bottom:665.265900px;}
.yaf{bottom:668.817600px;}
.y66{bottom:677.232600px;}
.y160{bottom:677.635350px;}
.y131{bottom:677.770350px;}
.y42{bottom:677.772600px;}
.y7d{bottom:677.920350px;}
.y11a{bottom:678.488100px;}
.y10{bottom:678.859200px;}
.y1e7{bottom:680.263500px;}
.y1a6{bottom:680.265900px;}
.yae{bottom:686.817600px;}
.y119{bottom:694.232100px;}
.y1e6{bottom:695.263500px;}
.y1a5{bottom:695.265900px;}
.y15f{bottom:695.635350px;}
.y130{bottom:695.770350px;}
.y41{bottom:695.772600px;}
.y7c{bottom:695.920350px;}
.yf{bottom:696.859200px;}
.y118{bottom:709.976100px;}
.y1e5{bottom:710.263500px;}
.y1a4{bottom:710.265900px;}
.y15e{bottom:713.635350px;}
.y12f{bottom:713.770350px;}
.y40{bottom:713.772600px;}
.y7b{bottom:713.920350px;}
.yad{bottom:722.817600px;}
.y1e4{bottom:725.263500px;}
.y1a3{bottom:725.265900px;}
.y117{bottom:725.720100px;}
.y15d{bottom:731.635350px;}
.y12e{bottom:731.770350px;}
.y3f{bottom:731.772600px;}
.y7a{bottom:731.920350px;}
.y1e3{bottom:740.263500px;}
.y1a2{bottom:740.265900px;}
.yac{bottom:740.817600px;}
.y116{bottom:741.464100px;}
.ye{bottom:742.017300px;}
.y15c{bottom:749.635350px;}
.y12d{bottom:749.770350px;}
.y3e{bottom:749.772600px;}
.y79{bottom:749.920350px;}
.yd{bottom:754.468050px;}
.y1e2{bottom:755.263500px;}
.y1a1{bottom:755.265900px;}
.yab{bottom:758.817600px;}
.y15b{bottom:767.635350px;}
.y12c{bottom:767.770350px;}
.y3d{bottom:767.772600px;}
.y78{bottom:767.920350px;}
.y1e1{bottom:770.263500px;}
.y1a0{bottom:770.265900px;}
.y1e0{bottom:785.263500px;}
.y19f{bottom:785.265900px;}
.y15a{bottom:785.635350px;}
.y12b{bottom:785.770350px;}
.y3c{bottom:785.772600px;}
.y77{bottom:785.920350px;}
.yc{bottom:786.183600px;}
.yaa{bottom:787.636500px;}
.ya9{bottom:799.315350px;}
.y1df{bottom:800.263500px;}
.y19e{bottom:800.265900px;}
.y159{bottom:803.635350px;}
.y12a{bottom:803.770350px;}
.y3b{bottom:803.772600px;}
.y76{bottom:803.920350px;}
.yb{bottom:805.108950px;}
.ya{bottom:813.183600px;}
.y1de{bottom:815.263500px;}
.y19d{bottom:815.265900px;}
.y158{bottom:821.635350px;}
.y129{bottom:821.770350px;}
.y3a{bottom:821.772600px;}
.y75{bottom:821.920350px;}
.y1dd{bottom:830.263500px;}
.y19c{bottom:830.265900px;}
.y9{bottom:832.108950px;}
.y157{bottom:839.635350px;}
.y128{bottom:839.770350px;}
.y39{bottom:839.772600px;}
.ya8{bottom:839.785350px;}
.y74{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y1dc{bottom:845.263500px;}
.y19b{bottom:845.265900px;}
.y156{bottom:857.635350px;}
.y127{bottom:857.770350px;}
.y38{bottom:857.772600px;}
.ya7{bottom:857.785350px;}
.y73{bottom:857.920350px;}
.y7{bottom:859.108950px;}
.y1db{bottom:860.263500px;}
.y19a{bottom:860.265900px;}
.y1da{bottom:875.263500px;}
.y199{bottom:875.265900px;}
.y155{bottom:875.635350px;}
.y126{bottom:875.770350px;}
.y37{bottom:875.772600px;}
.ya6{bottom:875.785350px;}
.y72{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y1d9{bottom:890.263500px;}
.y198{bottom:890.265900px;}
.y154{bottom:893.635350px;}
.y125{bottom:893.770350px;}
.y36{bottom:893.772600px;}
.ya5{bottom:893.785350px;}
.y71{bottom:893.920350px;}
.y1d8{bottom:905.263500px;}
.y197{bottom:905.265900px;}
.y180{bottom:911.365350px;}
.yce{bottom:911.770350px;}
.y35{bottom:911.772600px;}
.ya4{bottom:911.785350px;}
.yde{bottom:911.920350px;}
.y1d7{bottom:920.263500px;}
.y196{bottom:920.265900px;}
.y153{bottom:929.230350px;}
.y70{bottom:929.515350px;}
.ycd{bottom:929.770350px;}
.y34{bottom:929.772600px;}
.ya3{bottom:929.785350px;}
.ydd{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y1d6{bottom:935.263500px;}
.y195{bottom:935.265900px;}
.ycc{bottom:947.770350px;}
.y33{bottom:947.772600px;}
.ya2{bottom:947.785350px;}
.y1d5{bottom:950.263500px;}
.y194{bottom:950.265900px;}
.y1d4{bottom:965.263500px;}
.y193{bottom:965.265900px;}
.ydc{bottom:965.515350px;}
.y6f{bottom:965.770350px;}
.y32{bottom:965.772600px;}
.ya1{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1d3{bottom:980.263500px;}
.y192{bottom:980.265900px;}
.ydb{bottom:983.515350px;}
.y6c{bottom:983.770350px;}
.y31{bottom:983.772600px;}
.ya0{bottom:983.785350px;}
.y1d2{bottom:995.263500px;}
.y191{bottom:995.265900px;}
.y6b{bottom:1001.770350px;}
.y30{bottom:1001.772600px;}
.y9f{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1d1{bottom:1010.263500px;}
.y190{bottom:1010.265900px;}
.y6a{bottom:1019.770350px;}
.y65{bottom:1019.772600px;}
.y9e{bottom:1019.785350px;}
.y1d0{bottom:1025.263500px;}
.y18f{bottom:1025.265900px;}
.y2f{bottom:1037.367600px;}
.y69{bottom:1037.770350px;}
.y64{bottom:1037.772600px;}
.y9d{bottom:1037.785350px;}
.y1cf{bottom:1040.263500px;}
.y18e{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y68{bottom:1132.418700px;}
.yd1{bottom:1132.421700px;}
.yda{bottom:1132.423350px;}
.y1ce{bottom:1132.423500px;}
.y124{bottom:1132.425450px;}
.yf8{bottom:1132.432800px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.he{height:34.968750px;}
.hd{height:34.992188px;}
.h11{height:42.117188px;}
.h9{height:43.681641px;}
.ha{height:43.710938px;}
.h14{height:43.804688px;}
.h15{height:47.164720px;}
.hf{height:52.646484px;}
.h17{height:54.266484px;}
.hb{height:54.407396px;}
.h10{height:54.755859px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h16{height:58.901900px;}
.h12{height:58.955900px;}
.h4{height:92.168262px;}
.h13{height:99.946884px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:70.582650px;}
.x8{left:76.535400px;}
.x15{left:78.661350px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x1a{left:99.921300px;}
.x1e{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x20{left:123.307050px;}
.x3{left:125.427900px;}
.x12{left:131.815350px;}
.x5{left:191.338500px;}
.x1d{left:194.285400px;}
.x17{left:206.333700px;}
.x7{left:455.041500px;}
.xb{left:457.088550px;}
.xf{left:478.345350px;}
.x1b{left:480.472500px;}
.x1f{left:482.603400px;}
.xa{left:491.108550px;}
.x16{left:501.661350px;}
.x21{left:503.911050px;}
.x13{left:512.365350px;}
.xc{left:525.278550px;}
.x11{left:591.646500px;}
.x19{left:600.688650px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x18{left:721.722450px;}
.xd{left:728.391600px;}
.x1c{left:743.860500px;}
.x10{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.473067pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v7{vertical-align:20.098133pt;}
.v3{vertical-align:25.725333pt;}
.v1{vertical-align:27.005867pt;}
.v6{vertical-align:31.647467pt;}
.v5{vertical-align:42.120533pt;}
.ls5e{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.693333pt;}
.ls5f{letter-spacing:-0.533333pt;}
.ls5d{letter-spacing:-0.426667pt;}
.ls60{letter-spacing:-0.320000pt;}
.ls91{letter-spacing:-0.298667pt;}
.ls63{letter-spacing:-0.266667pt;}
.ls80{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls90{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls64{letter-spacing:-0.106667pt;}
.ls81{letter-spacing:-0.085333pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls57{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls4{letter-spacing:0.004373pt;}
.ls3{letter-spacing:0.004907pt;}
.ls46{letter-spacing:0.008533pt;}
.ls45{letter-spacing:0.015467pt;}
.ls4e{letter-spacing:0.042667pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls39{letter-spacing:0.055467pt;}
.ls72{letter-spacing:0.085333pt;}
.ls4b{letter-spacing:0.105600pt;}
.ls38{letter-spacing:0.106667pt;}
.ls52{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls71{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.236800pt;}
.ls78{letter-spacing:0.256000pt;}
.ls58{letter-spacing:0.266667pt;}
.ls8c{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls8d{letter-spacing:0.341333pt;}
.ls23{letter-spacing:0.373333pt;}
.ls7d{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls73{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls77{letter-spacing:0.512000pt;}
.ls4d{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls84{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls8e{letter-spacing:0.682667pt;}
.ls3d{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls79{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls56{letter-spacing:0.810667pt;}
.ls19{letter-spacing:0.853333pt;}
.ls7c{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.938667pt;}
.ls3c{letter-spacing:0.960000pt;}
.ls7f{letter-spacing:0.981333pt;}
.ls3b{letter-spacing:1.013333pt;}
.ls93{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.109333pt;}
.ls28{letter-spacing:1.120000pt;}
.ls75{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.173333pt;}
.ls85{letter-spacing:1.194667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls83{letter-spacing:1.237333pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6d{letter-spacing:1.322667pt;}
.ls2b{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls6b{letter-spacing:1.408000pt;}
.lsc{letter-spacing:1.440000pt;}
.ls6f{letter-spacing:1.450667pt;}
.ls1b{letter-spacing:1.493333pt;}
.ls87{letter-spacing:1.536000pt;}
.ls22{letter-spacing:1.546667pt;}
.ls49{letter-spacing:1.561067pt;}
.ls61{letter-spacing:1.600000pt;}
.ls89{letter-spacing:1.621333pt;}
.ls12{letter-spacing:1.653333pt;}
.ls88{letter-spacing:1.664000pt;}
.ls31{letter-spacing:1.706667pt;}
.ls7e{letter-spacing:1.749333pt;}
.ls1d{letter-spacing:1.760000pt;}
.ls30{letter-spacing:1.813333pt;}
.ls7a{letter-spacing:1.834667pt;}
.ls18{letter-spacing:1.866667pt;}
.ls6c{letter-spacing:1.877333pt;}
.ls24{letter-spacing:1.920000pt;}
.ls8a{letter-spacing:1.962667pt;}
.ls3e{letter-spacing:1.973333pt;}
.ls5a{letter-spacing:2.026667pt;}
.ls82{letter-spacing:2.048000pt;}
.ls3f{letter-spacing:2.080000pt;}
.ls51{letter-spacing:2.090667pt;}
.ls17{letter-spacing:2.133333pt;}
.ls21{letter-spacing:2.186667pt;}
.ls92{letter-spacing:2.218667pt;}
.ls5b{letter-spacing:2.240000pt;}
.ls2f{letter-spacing:2.293333pt;}
.ls27{letter-spacing:2.346667pt;}
.ls76{letter-spacing:2.389333pt;}
.ls50{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.453333pt;}
.ls36{letter-spacing:2.506667pt;}
.ls35{letter-spacing:2.560000pt;}
.ls70{letter-spacing:2.602667pt;}
.ls41{letter-spacing:2.613333pt;}
.ls2c{letter-spacing:2.666667pt;}
.ls43{letter-spacing:2.720000pt;}
.ls32{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.ls1c{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.ls8{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.040000pt;}
.ls8b{letter-spacing:3.072000pt;}
.ls2d{letter-spacing:3.146667pt;}
.ls74{letter-spacing:3.157333pt;}
.ls4f{letter-spacing:3.200000pt;}
.ls26{letter-spacing:3.306667pt;}
.ls7b{letter-spacing:3.370667pt;}
.ls42{letter-spacing:3.466667pt;}
.ls16{letter-spacing:3.520000pt;}
.ls62{letter-spacing:3.626667pt;}
.ls40{letter-spacing:3.680000pt;}
.ls86{letter-spacing:3.797333pt;}
.ls44{letter-spacing:3.893333pt;}
.ls9{letter-spacing:4.000000pt;}
.ls8f{letter-spacing:4.053333pt;}
.ls4c{letter-spacing:4.266667pt;}
.ls69{letter-spacing:4.906667pt;}
.ls65{letter-spacing:5.066667pt;}
.ls67{letter-spacing:5.120000pt;}
.ls68{letter-spacing:5.226667pt;}
.ls48{letter-spacing:5.333333pt;}
.ls5c{letter-spacing:6.240000pt;}
.ls25{letter-spacing:6.346667pt;}
.ls6a{letter-spacing:6.773333pt;}
.ls4a{letter-spacing:6.986667pt;}
.ls66{letter-spacing:9.493333pt;}
.ls1{letter-spacing:52.755445pt;}
.ls0{letter-spacing:52.759467pt;}
.ws5b{word-spacing:-19.893333pt;}
.ws18{word-spacing:-14.826667pt;}
.ws70{word-spacing:-14.464000pt;}
.ws23{word-spacing:-14.400000pt;}
.ws73{word-spacing:-13.738667pt;}
.ws49{word-spacing:-13.493333pt;}
.ws17{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-12.714667pt;}
.ws71{word-spacing:-12.202667pt;}
.ws5c{word-spacing:-12.117333pt;}
.ws6f{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws75{word-spacing:-11.349333pt;}
.ws76{word-spacing:-11.306667pt;}
.ws77{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.ws72{word-spacing:-10.709333pt;}
.ws5d{word-spacing:-10.666667pt;}
.ws74{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws16{word-spacing:-7.773333pt;}
.ws1{word-spacing:-6.482960pt;}
.ws2e{word-spacing:-6.218667pt;}
.ws7e{word-spacing:-3.797333pt;}
.ws81{word-spacing:-3.114667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws62{word-spacing:-2.400000pt;}
.ws8f{word-spacing:-2.346667pt;}
.ws85{word-spacing:-2.133333pt;}
.ws79{word-spacing:-2.048000pt;}
.ws10{word-spacing:-1.973333pt;}
.ws83{word-spacing:-1.920000pt;}
.ws63{word-spacing:-1.877333pt;}
.ws7c{word-spacing:-1.706667pt;}
.ws7f{word-spacing:-1.536000pt;}
.ws65{word-spacing:-1.450667pt;}
.ws7b{word-spacing:-1.237333pt;}
.ws12{word-spacing:-1.226667pt;}
.ws6a{word-spacing:-1.109333pt;}
.ws61{word-spacing:-0.906667pt;}
.ws97{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws5e{word-spacing:-0.693333pt;}
.ws8b{word-spacing:-0.682667pt;}
.ws8c{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.554667pt;}
.ws60{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.384000pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws53{word-spacing:-0.266667pt;}
.ws8d{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.170667pt;}
.ws91{word-spacing:-0.128000pt;}
.ws54{word-spacing:-0.106667pt;}
.ws80{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws82{word-spacing:0.042667pt;}
.ws8a{word-spacing:0.085333pt;}
.ws1c{word-spacing:0.106667pt;}
.ws84{word-spacing:0.128000pt;}
.ws38{word-spacing:0.160000pt;}
.ws86{word-spacing:0.170667pt;}
.ws2b{word-spacing:0.213333pt;}
.ws69{word-spacing:0.256000pt;}
.ws55{word-spacing:0.266667pt;}
.ws15{word-spacing:0.298667pt;}
.ws4b{word-spacing:0.320000pt;}
.ws4f{word-spacing:0.373333pt;}
.wsd{word-spacing:0.426667pt;}
.ws50{word-spacing:0.480000pt;}
.ws44{word-spacing:0.533333pt;}
.ws39{word-spacing:0.586667pt;}
.ws66{word-spacing:0.597333pt;}
.ws4e{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.693333pt;}
.ws21{word-spacing:0.746667pt;}
.ws8e{word-spacing:0.768000pt;}
.ws3c{word-spacing:0.853333pt;}
.ws5f{word-spacing:0.906667pt;}
.ws2a{word-spacing:1.013333pt;}
.ws26{word-spacing:1.024000pt;}
.ws93{word-spacing:1.109333pt;}
.ws25{word-spacing:1.120000pt;}
.ws64{word-spacing:1.152000pt;}
.ws48{word-spacing:1.194667pt;}
.ws1e{word-spacing:1.226667pt;}
.ws29{word-spacing:1.280000pt;}
.ws78{word-spacing:1.322667pt;}
.ws3b{word-spacing:1.386667pt;}
.ws4a{word-spacing:1.440000pt;}
.ws87{word-spacing:1.450667pt;}
.ws27{word-spacing:1.493333pt;}
.ws43{word-spacing:1.546667pt;}
.wse{word-spacing:1.600000pt;}
.wsc{word-spacing:1.653333pt;}
.ws90{word-spacing:1.664000pt;}
.ws14{word-spacing:1.706667pt;}
.ws1d{word-spacing:1.760000pt;}
.ws1b{word-spacing:1.866667pt;}
.ws9{word-spacing:1.920000pt;}
.ws46{word-spacing:2.005333pt;}
.wsa{word-spacing:2.026667pt;}
.ws45{word-spacing:2.080000pt;}
.ws96{word-spacing:2.090667pt;}
.ws7d{word-spacing:2.133333pt;}
.ws58{word-spacing:2.186667pt;}
.ws89{word-spacing:2.218667pt;}
.ws1a{word-spacing:2.240000pt;}
.ws94{word-spacing:2.304000pt;}
.ws95{word-spacing:2.389333pt;}
.ws68{word-spacing:2.432000pt;}
.ws8{word-spacing:2.666667pt;}
.ws20{word-spacing:2.720000pt;}
.ws51{word-spacing:2.773333pt;}
.ws59{word-spacing:2.826667pt;}
.ws92{word-spacing:2.901333pt;}
.ws67{word-spacing:2.944000pt;}
.ws6b{word-spacing:2.986667pt;}
.ws2f{word-spacing:3.072000pt;}
.ws22{word-spacing:3.093333pt;}
.ws47{word-spacing:3.157333pt;}
.ws36{word-spacing:3.200000pt;}
.ws88{word-spacing:3.285333pt;}
.ws57{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.466667pt;}
.ws2d{word-spacing:3.498667pt;}
.ws13{word-spacing:3.520000pt;}
.ws2c{word-spacing:3.541333pt;}
.ws11{word-spacing:3.626667pt;}
.ws28{word-spacing:3.680000pt;}
.ws4c{word-spacing:3.733333pt;}
.wsb{word-spacing:3.946667pt;}
.ws19{word-spacing:4.000000pt;}
.ws37{word-spacing:4.053333pt;}
.ws24{word-spacing:4.106667pt;}
.ws56{word-spacing:4.160000pt;}
.ws52{word-spacing:4.213333pt;}
.wsf{word-spacing:4.266667pt;}
.ws7{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
.ws31{word-spacing:38.570667pt;}
.ws3d{word-spacing:136.746667pt;}
.ws30{word-spacing:143.189333pt;}
.ws32{word-spacing:164.693333pt;}
.ws42{word-spacing:180.565333pt;}
.ws40{word-spacing:201.898667pt;}
.ws41{word-spacing:222.250667pt;}
.ws3f{word-spacing:232.149333pt;}
.ws33{word-spacing:246.101333pt;}
.ws3e{word-spacing:262.357333pt;}
.ws35{word-spacing:350.421333pt;}
.ws34{word-spacing:606.592000pt;}
._7{margin-left:-2576.085333pt;}
._8{margin-left:-2554.922667pt;}
._46{margin-left:-10.613333pt;}
._b{margin-left:-8.533333pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.341333pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._5{width:1.280000pt;}
._43{width:2.346667pt;}
._c{width:3.306667pt;}
._9{width:4.266667pt;}
._6{width:5.600000pt;}
._44{width:6.533333pt;}
._45{width:7.973333pt;}
._a{width:37.896960pt;}
._34{width:39.244373pt;}
._16{width:45.440000pt;}
._20{width:49.237333pt;}
._d{width:78.904000pt;}
._35{width:96.085333pt;}
._18{width:106.752000pt;}
._17{width:110.549333pt;}
._11{width:134.936000pt;}
._12{width:138.752000pt;}
._f{width:147.626667pt;}
._32{width:164.693333pt;}
._10{width:173.496000pt;}
._15{width:175.360000pt;}
._2f{width:176.554667pt;}
._2d{width:177.749333pt;}
._27{width:178.901333pt;}
._1e{width:181.290667pt;}
._1b{width:182.485333pt;}
._1f{width:183.680000pt;}
._2b{width:184.832000pt;}
._25{width:186.069333pt;}
._29{width:187.221333pt;}
._23{width:190.762667pt;}
._42{width:232.149333pt;}
._24{width:242.602667pt;}
._21{width:271.061333pt;}
._3e{width:273.024000pt;}
._41{width:281.258667pt;}
._3f{width:291.925333pt;}
._40{width:296.320000pt;}
._3d{width:306.176000pt;}
._2e{width:309.248000pt;}
._19{width:320.768000pt;}
._3b{width:326.869333pt;}
._13{width:354.048000pt;}
._1c{width:361.088000pt;}
._e{width:375.552000pt;}
._3c{width:397.994667pt;}
._39{width:417.848000pt;}
._31{width:447.829333pt;}
._36{width:461.866667pt;}
._38{width:479.416000pt;}
._37{width:493.666667pt;}
._3a{width:504.333333pt;}
._30{width:524.800000pt;}
._1a{width:554.496000pt;}
._14{width:580.522667pt;}
._2a{width:585.301333pt;}
._22{width:591.189333pt;}
._1d{width:614.912000pt;}
._28{width:620.842667pt;}
._26{width:624.341333pt;}
._2c{width:688.698133pt;}
._33{width:780.557333pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y201{bottom:71.345333pt;}
.y152{bottom:74.462533pt;}
.y63{bottom:74.464533pt;}
.y17f{bottom:74.475867pt;}
.y9c{bottom:74.729200pt;}
.y6e{bottom:75.131867pt;}
.yd5{bottom:75.321733pt;}
.yd0{bottom:76.265733pt;}
.y18d{bottom:76.552800pt;}
.y2b{bottom:78.242667pt;}
.yf4{bottom:81.117600pt;}
.ycb{bottom:82.504533pt;}
.y1cd{bottom:84.678667pt;}
.y6d{bottom:89.126533pt;}
.yd4{bottom:89.316400pt;}
.y18c{bottom:89.886133pt;}
.ycf{bottom:90.260400pt;}
.y151{bottom:90.462533pt;}
.y62{bottom:90.464533pt;}
.y17e{bottom:90.475867pt;}
.y9b{bottom:90.729200pt;}
.y2a{bottom:91.576000pt;}
.y1cc{bottom:98.012000pt;}
.yca{bottom:98.504533pt;}
.y18b{bottom:103.219467pt;}
.y150{bottom:106.462533pt;}
.y61{bottom:106.464533pt;}
.y17d{bottom:106.475867pt;}
.y9a{bottom:106.729200pt;}
.yf3{bottom:106.898933pt;}
.y1cb{bottom:111.345333pt;}
.yc9{bottom:114.504533pt;}
.y10f{bottom:114.653733pt;}
.y18a{bottom:116.552800pt;}
.yf2{bottom:121.341600pt;}
.y14f{bottom:122.462533pt;}
.y60{bottom:122.464533pt;}
.y17c{bottom:122.475867pt;}
.y99{bottom:122.729200pt;}
.y1ca{bottom:124.678667pt;}
.y10e{bottom:129.096400pt;}
.y189{bottom:129.886133pt;}
.yc8{bottom:130.504533pt;}
.y123{bottom:131.987067pt;}
.yf1{bottom:135.784267pt;}
.y1c9{bottom:138.012000pt;}
.y14e{bottom:138.462533pt;}
.y5f{bottom:138.464533pt;}
.y17b{bottom:138.475867pt;}
.y98{bottom:138.729200pt;}
.y188{bottom:143.219467pt;}
.y10d{bottom:143.539067pt;}
.yd7{bottom:145.779333pt;}
.y122{bottom:146.429733pt;}
.yc7{bottom:146.504533pt;}
.yf0{bottom:150.269067pt;}
.y1c8{bottom:151.345333pt;}
.y14d{bottom:154.462533pt;}
.y5e{bottom:154.464533pt;}
.y17a{bottom:154.475867pt;}
.y97{bottom:154.729200pt;}
.y187{bottom:156.552800pt;}
.yd9{bottom:159.131867pt;}
.yd6{bottom:159.774000pt;}
.y121{bottom:160.872400pt;}
.yc6{bottom:162.504533pt;}
.y1c7{bottom:164.678667pt;}
.yef{bottom:164.711733pt;}
.y14c{bottom:170.462533pt;}
.y5d{bottom:170.464533pt;}
.y179{bottom:170.475867pt;}
.y96{bottom:170.729200pt;}
.y10c{bottom:171.549733pt;}
.yd8{bottom:173.126533pt;}
.y1c6{bottom:178.012000pt;}
.yc5{bottom:178.504533pt;}
.yee{bottom:179.154400pt;}
.y186{bottom:185.982533pt;}
.y14b{bottom:186.462533pt;}
.y5c{bottom:186.464533pt;}
.y178{bottom:186.475867pt;}
.y95{bottom:186.729200pt;}
.y120{bottom:188.883067pt;}
.y1c5{bottom:191.345333pt;}
.yed{bottom:193.597067pt;}
.yc4{bottom:194.504533pt;}
.y29{bottom:195.115467pt;}
.y14a{bottom:202.462533pt;}
.y5b{bottom:202.464533pt;}
.y10b{bottom:202.567600pt;}
.y94{bottom:202.729200pt;}
.y1c4{bottom:204.678667pt;}
.yec{bottom:208.039733pt;}
.yc3{bottom:210.504533pt;}
.y28{bottom:211.123733pt;}
.y1c3{bottom:218.012000pt;}
.y177{bottom:218.115867pt;}
.y149{bottom:218.462533pt;}
.y5a{bottom:218.464533pt;}
.y93{bottom:218.729200pt;}
.y10a{bottom:219.900933pt;}
.yeb{bottom:222.482400pt;}
.yc2{bottom:226.504533pt;}
.y1c2{bottom:231.345333pt;}
.y148{bottom:234.462533pt;}
.y59{bottom:234.464533pt;}
.y92{bottom:234.729200pt;}
.y27{bottom:235.430400pt;}
.yea{bottom:236.925067pt;}
.y109{bottom:237.234267pt;}
.yc1{bottom:242.504533pt;}
.y1c1{bottom:244.678667pt;}
.y185{bottom:250.102533pt;}
.y176{bottom:250.342533pt;}
.y147{bottom:250.462533pt;}
.y58{bottom:250.464533pt;}
.y91{bottom:250.729200pt;}
.ye9{bottom:251.367733pt;}
.y26{bottom:251.430400pt;}
.y1c0{bottom:258.012000pt;}
.yc0{bottom:258.504533pt;}
.ye8{bottom:265.810400pt;}
.y175{bottom:266.342533pt;}
.y146{bottom:266.462533pt;}
.y57{bottom:266.464533pt;}
.y90{bottom:266.729200pt;}
.y25{bottom:267.430400pt;}
.y200{bottom:271.345333pt;}
.y1bf{bottom:271.347467pt;}
.ybf{bottom:274.504533pt;}
.ye7{bottom:280.253067pt;}
.y184{bottom:282.102533pt;}
.y174{bottom:282.342533pt;}
.y145{bottom:282.462533pt;}
.y56{bottom:282.464533pt;}
.y8f{bottom:282.729200pt;}
.y24{bottom:283.430400pt;}
.y1ff{bottom:284.678667pt;}
.y1be{bottom:284.680800pt;}
.y115{bottom:287.231200pt;}
.y108{bottom:287.233067pt;}
.ybe{bottom:290.504533pt;}
.ye6{bottom:294.695733pt;}
.y1fe{bottom:298.012000pt;}
.y1bd{bottom:298.014133pt;}
.y173{bottom:298.342533pt;}
.y144{bottom:298.462533pt;}
.y55{bottom:298.464533pt;}
.y8e{bottom:298.729200pt;}
.y23{bottom:299.430400pt;}
.y114{bottom:301.673867pt;}
.y107{bottom:301.675733pt;}
.y1fd{bottom:311.345333pt;}
.y1bc{bottom:311.347467pt;}
.y172{bottom:314.342533pt;}
.y143{bottom:314.462533pt;}
.y54{bottom:314.464533pt;}
.y8d{bottom:314.729200pt;}
.y22{bottom:315.430400pt;}
.y113{bottom:316.116533pt;}
.y106{bottom:316.118400pt;}
.ye5{bottom:320.477067pt;}
.ybd{bottom:322.144533pt;}
.y1fc{bottom:324.678667pt;}
.y1bb{bottom:324.680800pt;}
.y171{bottom:330.342533pt;}
.y142{bottom:330.462533pt;}
.y53{bottom:330.464533pt;}
.y105{bottom:330.561067pt;}
.y8c{bottom:330.729200pt;}
.y21{bottom:331.430400pt;}
.y1fb{bottom:338.012000pt;}
.y1ba{bottom:338.014133pt;}
.y112{bottom:344.127200pt;}
.ye4{bottom:346.258400pt;}
.y170{bottom:346.342533pt;}
.y141{bottom:346.462533pt;}
.y52{bottom:346.464533pt;}
.y8b{bottom:346.729200pt;}
.y20{bottom:347.430400pt;}
.y1fa{bottom:351.345333pt;}
.y1b9{bottom:351.347467pt;}
.ybc{bottom:354.024533pt;}
.y104{bottom:359.457067pt;}
.y16f{bottom:362.342533pt;}
.y140{bottom:362.462533pt;}
.y51{bottom:362.464533pt;}
.y8a{bottom:362.729200pt;}
.y1f{bottom:363.430400pt;}
.y1f9{bottom:364.678667pt;}
.y1b8{bottom:364.680800pt;}
.y103{bottom:373.899733pt;}
.ye3{bottom:375.050533pt;}
.y111{bottom:375.145067pt;}
.y1f8{bottom:378.012000pt;}
.y1b7{bottom:378.014133pt;}
.y16e{bottom:378.342533pt;}
.y13f{bottom:378.462533pt;}
.y50{bottom:378.464533pt;}
.y89{bottom:378.729200pt;}
.y1e{bottom:379.430400pt;}
.y102{bottom:388.342400pt;}
.y1f7{bottom:391.345333pt;}
.y1b6{bottom:391.347467pt;}
.ye2{bottom:392.395867pt;}
.y110{bottom:392.478400pt;}
.y16d{bottom:394.342533pt;}
.y13e{bottom:394.462533pt;}
.y4f{bottom:394.464533pt;}
.y88{bottom:394.729200pt;}
.y1d{bottom:395.430400pt;}
.ybb{bottom:402.504533pt;}
.y101{bottom:402.785067pt;}
.y1f6{bottom:404.678667pt;}
.y1b5{bottom:404.680800pt;}
.yd3{bottom:406.596400pt;}
.y16c{bottom:410.342533pt;}
.y13d{bottom:410.462533pt;}
.y4e{bottom:410.464533pt;}
.y87{bottom:410.729200pt;}
.y1c{bottom:411.430400pt;}
.y1f5{bottom:418.012000pt;}
.y1b4{bottom:418.014133pt;}
.yba{bottom:418.504533pt;}
.yd2{bottom:420.591067pt;}
.y183{bottom:426.102533pt;}
.y16b{bottom:426.342533pt;}
.y13c{bottom:426.462533pt;}
.y4d{bottom:426.464533pt;}
.y86{bottom:426.729200pt;}
.y1b{bottom:427.430400pt;}
.y1f4{bottom:431.345333pt;}
.y1b3{bottom:431.347467pt;}
.y100{bottom:431.681067pt;}
.y11f{bottom:433.021867pt;}
.yb9{bottom:434.504533pt;}
.y16a{bottom:442.342533pt;}
.y13b{bottom:442.462533pt;}
.y4c{bottom:442.464533pt;}
.yf7{bottom:442.585600pt;}
.ye1{bottom:442.595867pt;}
.y1a{bottom:443.430400pt;}
.y1f3{bottom:444.678667pt;}
.y1b2{bottom:444.680800pt;}
.yff{bottom:446.123733pt;}
.y11e{bottom:447.016533pt;}
.yb8{bottom:450.504533pt;}
.yf6{bottom:456.580267pt;}
.y1f2{bottom:458.012000pt;}
.y1b1{bottom:458.014133pt;}
.y169{bottom:458.342533pt;}
.y85{bottom:458.369200pt;}
.y13a{bottom:458.462533pt;}
.y4b{bottom:458.464533pt;}
.ye0{bottom:458.595867pt;}
.y19{bottom:459.430400pt;}
.yfe{bottom:460.566400pt;}
.y11d{bottom:461.011200pt;}
.yb7{bottom:466.504533pt;}
.yf5{bottom:470.574933pt;}
.y1f1{bottom:471.345333pt;}
.y1b0{bottom:471.347467pt;}
.y182{bottom:474.102533pt;}
.y168{bottom:474.342533pt;}
.y139{bottom:474.462533pt;}
.y4a{bottom:474.464533pt;}
.ydf{bottom:474.595867pt;}
.y11c{bottom:475.005867pt;}
.yfd{bottom:475.009067pt;}
.y18{bottom:475.430400pt;}
.yb6{bottom:482.504533pt;}
.y1f0{bottom:484.678667pt;}
.y1af{bottom:484.680800pt;}
.y11b{bottom:489.000533pt;}
.y167{bottom:490.342533pt;}
.y138{bottom:490.462533pt;}
.y49{bottom:490.464533pt;}
.y84{bottom:490.595867pt;}
.y17{bottom:491.430400pt;}
.yfc{bottom:497.345067pt;}
.y1ef{bottom:498.012000pt;}
.y1ae{bottom:498.014133pt;}
.yb5{bottom:498.504533pt;}
.y166{bottom:506.342533pt;}
.y137{bottom:506.462533pt;}
.y48{bottom:506.464533pt;}
.y83{bottom:506.595867pt;}
.y16{bottom:507.430400pt;}
.y1ee{bottom:511.345333pt;}
.y1ad{bottom:511.347467pt;}
.yb4{bottom:514.504533pt;}
.y165{bottom:522.342533pt;}
.y136{bottom:522.462533pt;}
.y47{bottom:522.464533pt;}
.y82{bottom:522.595867pt;}
.y15{bottom:523.430400pt;}
.y1ed{bottom:524.678667pt;}
.y1ac{bottom:524.680800pt;}
.yfb{bottom:528.371200pt;}
.yb3{bottom:530.504533pt;}
.y1ec{bottom:538.012000pt;}
.y1ab{bottom:538.014133pt;}
.y164{bottom:538.342533pt;}
.y135{bottom:538.462533pt;}
.y46{bottom:538.464533pt;}
.y81{bottom:538.595867pt;}
.y14{bottom:539.430400pt;}
.yfa{bottom:545.704533pt;}
.yb2{bottom:546.504533pt;}
.y1eb{bottom:551.345333pt;}
.y1aa{bottom:551.347467pt;}
.y67{bottom:554.104533pt;}
.y163{bottom:554.342533pt;}
.y134{bottom:554.462533pt;}
.y45{bottom:554.464533pt;}
.y80{bottom:554.595867pt;}
.y13{bottom:555.430400pt;}
.yb1{bottom:562.504533pt;}
.yf9{bottom:563.037867pt;}
.y1ea{bottom:564.678667pt;}
.y1a9{bottom:564.680800pt;}
.y181{bottom:570.102533pt;}
.y162{bottom:570.342533pt;}
.y133{bottom:570.462533pt;}
.y44{bottom:570.464533pt;}
.y7f{bottom:570.595867pt;}
.y12{bottom:571.430400pt;}
.y1e9{bottom:578.012000pt;}
.y1a8{bottom:578.014133pt;}
.yb0{bottom:578.504533pt;}
.y161{bottom:586.342533pt;}
.y132{bottom:586.462533pt;}
.y43{bottom:586.464533pt;}
.y7e{bottom:586.595867pt;}
.y11{bottom:587.430400pt;}
.y1e8{bottom:591.345333pt;}
.y1a7{bottom:591.347467pt;}
.yaf{bottom:594.504533pt;}
.y66{bottom:601.984533pt;}
.y160{bottom:602.342533pt;}
.y131{bottom:602.462533pt;}
.y42{bottom:602.464533pt;}
.y7d{bottom:602.595867pt;}
.y11a{bottom:603.100533pt;}
.y10{bottom:603.430400pt;}
.y1e7{bottom:604.678667pt;}
.y1a6{bottom:604.680800pt;}
.yae{bottom:610.504533pt;}
.y119{bottom:617.095200pt;}
.y1e6{bottom:618.012000pt;}
.y1a5{bottom:618.014133pt;}
.y15f{bottom:618.342533pt;}
.y130{bottom:618.462533pt;}
.y41{bottom:618.464533pt;}
.y7c{bottom:618.595867pt;}
.yf{bottom:619.430400pt;}
.y118{bottom:631.089867pt;}
.y1e5{bottom:631.345333pt;}
.y1a4{bottom:631.347467pt;}
.y15e{bottom:634.342533pt;}
.y12f{bottom:634.462533pt;}
.y40{bottom:634.464533pt;}
.y7b{bottom:634.595867pt;}
.yad{bottom:642.504533pt;}
.y1e4{bottom:644.678667pt;}
.y1a3{bottom:644.680800pt;}
.y117{bottom:645.084533pt;}
.y15d{bottom:650.342533pt;}
.y12e{bottom:650.462533pt;}
.y3f{bottom:650.464533pt;}
.y7a{bottom:650.595867pt;}
.y1e3{bottom:658.012000pt;}
.y1a2{bottom:658.014133pt;}
.yac{bottom:658.504533pt;}
.y116{bottom:659.079200pt;}
.ye{bottom:659.570933pt;}
.y15c{bottom:666.342533pt;}
.y12d{bottom:666.462533pt;}
.y3e{bottom:666.464533pt;}
.y79{bottom:666.595867pt;}
.yd{bottom:670.638267pt;}
.y1e2{bottom:671.345333pt;}
.y1a1{bottom:671.347467pt;}
.yab{bottom:674.504533pt;}
.y15b{bottom:682.342533pt;}
.y12c{bottom:682.462533pt;}
.y3d{bottom:682.464533pt;}
.y78{bottom:682.595867pt;}
.y1e1{bottom:684.678667pt;}
.y1a0{bottom:684.680800pt;}
.y1e0{bottom:698.012000pt;}
.y19f{bottom:698.014133pt;}
.y15a{bottom:698.342533pt;}
.y12b{bottom:698.462533pt;}
.y3c{bottom:698.464533pt;}
.y77{bottom:698.595867pt;}
.yc{bottom:698.829867pt;}
.yaa{bottom:700.121333pt;}
.ya9{bottom:710.502533pt;}
.y1df{bottom:711.345333pt;}
.y19e{bottom:711.347467pt;}
.y159{bottom:714.342533pt;}
.y12a{bottom:714.462533pt;}
.y3b{bottom:714.464533pt;}
.y76{bottom:714.595867pt;}
.yb{bottom:715.652400pt;}
.ya{bottom:722.829867pt;}
.y1de{bottom:724.678667pt;}
.y19d{bottom:724.680800pt;}
.y158{bottom:730.342533pt;}
.y129{bottom:730.462533pt;}
.y3a{bottom:730.464533pt;}
.y75{bottom:730.595867pt;}
.y1dd{bottom:738.012000pt;}
.y19c{bottom:738.014133pt;}
.y9{bottom:739.652400pt;}
.y157{bottom:746.342533pt;}
.y128{bottom:746.462533pt;}
.y39{bottom:746.464533pt;}
.ya8{bottom:746.475867pt;}
.y74{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y1dc{bottom:751.345333pt;}
.y19b{bottom:751.347467pt;}
.y156{bottom:762.342533pt;}
.y127{bottom:762.462533pt;}
.y38{bottom:762.464533pt;}
.ya7{bottom:762.475867pt;}
.y73{bottom:762.595867pt;}
.y7{bottom:763.652400pt;}
.y1db{bottom:764.678667pt;}
.y19a{bottom:764.680800pt;}
.y1da{bottom:778.012000pt;}
.y199{bottom:778.014133pt;}
.y155{bottom:778.342533pt;}
.y126{bottom:778.462533pt;}
.y37{bottom:778.464533pt;}
.ya6{bottom:778.475867pt;}
.y72{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y1d9{bottom:791.345333pt;}
.y198{bottom:791.347467pt;}
.y154{bottom:794.342533pt;}
.y125{bottom:794.462533pt;}
.y36{bottom:794.464533pt;}
.ya5{bottom:794.475867pt;}
.y71{bottom:794.595867pt;}
.y1d8{bottom:804.678667pt;}
.y197{bottom:804.680800pt;}
.y180{bottom:810.102533pt;}
.yce{bottom:810.462533pt;}
.y35{bottom:810.464533pt;}
.ya4{bottom:810.475867pt;}
.yde{bottom:810.595867pt;}
.y1d7{bottom:818.012000pt;}
.y196{bottom:818.014133pt;}
.y153{bottom:825.982533pt;}
.y70{bottom:826.235867pt;}
.ycd{bottom:826.462533pt;}
.y34{bottom:826.464533pt;}
.ya3{bottom:826.475867pt;}
.ydd{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y1d6{bottom:831.345333pt;}
.y195{bottom:831.347467pt;}
.ycc{bottom:842.462533pt;}
.y33{bottom:842.464533pt;}
.ya2{bottom:842.475867pt;}
.y1d5{bottom:844.678667pt;}
.y194{bottom:844.680800pt;}
.y1d4{bottom:858.012000pt;}
.y193{bottom:858.014133pt;}
.ydc{bottom:858.235867pt;}
.y6f{bottom:858.462533pt;}
.y32{bottom:858.464533pt;}
.ya1{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1d3{bottom:871.345333pt;}
.y192{bottom:871.347467pt;}
.ydb{bottom:874.235867pt;}
.y6c{bottom:874.462533pt;}
.y31{bottom:874.464533pt;}
.ya0{bottom:874.475867pt;}
.y1d2{bottom:884.678667pt;}
.y191{bottom:884.680800pt;}
.y6b{bottom:890.462533pt;}
.y30{bottom:890.464533pt;}
.y9f{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1d1{bottom:898.012000pt;}
.y190{bottom:898.014133pt;}
.y6a{bottom:906.462533pt;}
.y65{bottom:906.464533pt;}
.y9e{bottom:906.475867pt;}
.y1d0{bottom:911.345333pt;}
.y18f{bottom:911.347467pt;}
.y2f{bottom:922.104533pt;}
.y69{bottom:922.462533pt;}
.y64{bottom:922.464533pt;}
.y9d{bottom:922.475867pt;}
.y1cf{bottom:924.678667pt;}
.y18e{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y68{bottom:1006.594400pt;}
.yd1{bottom:1006.597067pt;}
.yda{bottom:1006.598533pt;}
.y1ce{bottom:1006.598667pt;}
.y124{bottom:1006.600400pt;}
.yf8{bottom:1006.606933pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.he{height:31.083333pt;}
.hd{height:31.104167pt;}
.h11{height:37.437500pt;}
.h9{height:38.828125pt;}
.ha{height:38.854167pt;}
.h14{height:38.937500pt;}
.h15{height:41.924196pt;}
.hf{height:46.796875pt;}
.h17{height:48.236875pt;}
.hb{height:48.362130pt;}
.h10{height:48.671875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h16{height:52.357245pt;}
.h12{height:52.405245pt;}
.h4{height:81.927344pt;}
.h13{height:88.841675pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:62.740133pt;}
.x8{left:68.031467pt;}
.x15{left:69.921200pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1a{left:88.818933pt;}
.x1e{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x20{left:109.606267pt;}
.x3{left:111.491467pt;}
.x12{left:117.169200pt;}
.x5{left:170.078667pt;}
.x1d{left:172.698133pt;}
.x17{left:183.407733pt;}
.x7{left:404.481333pt;}
.xb{left:406.300933pt;}
.xf{left:425.195867pt;}
.x1b{left:427.086667pt;}
.x1f{left:428.980800pt;}
.xa{left:436.540933pt;}
.x16{left:445.921200pt;}
.x21{left:447.920933pt;}
.x13{left:455.435867pt;}
.xc{left:466.914267pt;}
.x11{left:525.908000pt;}
.x19{left:533.945467pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x18{left:641.531067pt;}
.xd{left:647.459200pt;}
.x1c{left:661.209333pt;}
.x10{left:666.356800pt;}
}




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