
    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_4f780b4c257f5c1366208f8d.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_dbf1e068f5556e1780c4eb65.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_388177bf88a8acbfac4d78e1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0836e84f00868e9a54aa8b17.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_6407b6a3def919fa3edf4c11.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b2709096138888471e93f0d6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a98114e4949eec2dfaecdce7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_2a07245bf2e2f396b91456f5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_833e390e075c7dbdce62ff9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_6c2770533360f23def86f4d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.902832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-16.471800px;}
.v5{vertical-align:-3.422400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v6{vertical-align:3.404400px;}
.v4{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.ls49{letter-spacing:-3.552000px;}
.ls75{letter-spacing:-3.360000px;}
.ls4b{letter-spacing:-3.330000px;}
.ls77{letter-spacing:-3.300000px;}
.lsad{letter-spacing:-2.880000px;}
.ls9b{letter-spacing:-2.760000px;}
.ls4a{letter-spacing:-2.640000px;}
.ls7a{letter-spacing:-2.400000px;}
.ls88{letter-spacing:-2.220000px;}
.ls70{letter-spacing:-2.160000px;}
.ls79{letter-spacing:-1.920000px;}
.ls86{letter-spacing:-1.860000px;}
.lsa0{letter-spacing:-1.620000px;}
.ls7b{letter-spacing:-1.560000px;}
.lsa1{letter-spacing:-0.900000px;}
.ls78{letter-spacing:-0.780000px;}
.ls76{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.420000px;}
.lsb1{letter-spacing:-0.360000px;}
.lsa9{letter-spacing:-0.300000px;}
.lsa2{letter-spacing:-0.240000px;}
.ls67{letter-spacing:-0.192000px;}
.ls83{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.144000px;}
.ls6f{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.096000px;}
.ls11{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.066000px;}
.ls19{letter-spacing:-0.060000px;}
.ls16{letter-spacing:-0.048000px;}
.ls13{letter-spacing:-0.039600px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls6b{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls27{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.124200px;}
.ls8e{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.240000px;}
.ls85{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.360000px;}
.ls95{letter-spacing:0.371400px;}
.ls15{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.480000px;}
.ls33{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.576000px;}
.ls61{letter-spacing:0.600000px;}
.ls6c{letter-spacing:0.660000px;}
.lsb5{letter-spacing:0.672000px;}
.ls6d{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.780000px;}
.lsbd{letter-spacing:0.816000px;}
.ls63{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.900000px;}
.lsb9{letter-spacing:0.912000px;}
.ls5d{letter-spacing:0.960000px;}
.ls1a{letter-spacing:1.020000px;}
.ls1d{letter-spacing:1.080000px;}
.lsbb{letter-spacing:1.104000px;}
.ls1e{letter-spacing:1.140000px;}
.ls55{letter-spacing:1.200000px;}
.ls5c{letter-spacing:1.239000px;}
.lsbc{letter-spacing:1.248000px;}
.ls35{letter-spacing:1.260000px;}
.ls92{letter-spacing:1.288200px;}
.ls5f{letter-spacing:1.320000px;}
.lsb4{letter-spacing:1.344000px;}
.ls65{letter-spacing:1.380000px;}
.lsb8{letter-spacing:1.392000px;}
.ls2f{letter-spacing:1.440000px;}
.ls54{letter-spacing:1.500000px;}
.lsbe{letter-spacing:1.536000px;}
.ls7e{letter-spacing:1.560000px;}
.ls30{letter-spacing:1.620000px;}
.ls36{letter-spacing:1.680000px;}
.ls2e{letter-spacing:1.740000px;}
.ls20{letter-spacing:1.800000px;}
.ls84{letter-spacing:1.860000px;}
.lsb6{letter-spacing:1.872000px;}
.ls6a{letter-spacing:1.920000px;}
.ls21{letter-spacing:1.980000px;}
.lsb7{letter-spacing:2.016000px;}
.ls8{letter-spacing:2.040000px;}
.lsa7{letter-spacing:2.100000px;}
.ls71{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.220000px;}
.ls7c{letter-spacing:2.280000px;}
.ls2d{letter-spacing:2.340000px;}
.ls82{letter-spacing:2.400000px;}
.lsaf{letter-spacing:2.448000px;}
.ls53{letter-spacing:2.460000px;}
.ls69{letter-spacing:2.520000px;}
.lsa3{letter-spacing:2.580000px;}
.ls25{letter-spacing:2.640000px;}
.lsc{letter-spacing:2.700000px;}
.ls22{letter-spacing:2.760000px;}
.ls31{letter-spacing:2.820000px;}
.lsb2{letter-spacing:2.832000px;}
.ls2a{letter-spacing:2.880000px;}
.ls8f{letter-spacing:2.928000px;}
.ls60{letter-spacing:2.940000px;}
.ls1c{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.120000px;}
.ls34{letter-spacing:3.180000px;}
.ls72{letter-spacing:3.240000px;}
.lsd{letter-spacing:3.300000px;}
.ls4{letter-spacing:3.360000px;}
.lsf{letter-spacing:3.480000px;}
.lsa4{letter-spacing:3.540000px;}
.ls99{letter-spacing:3.600000px;}
.lsbf{letter-spacing:3.648000px;}
.ls96{letter-spacing:3.660000px;}
.ls28{letter-spacing:3.720000px;}
.lsb3{letter-spacing:3.744000px;}
.ls1f{letter-spacing:3.780000px;}
.ls7f{letter-spacing:3.840000px;}
.lsa8{letter-spacing:3.900000px;}
.lse{letter-spacing:3.960000px;}
.lsae{letter-spacing:4.020000px;}
.ls2c{letter-spacing:4.080000px;}
.lsa6{letter-spacing:4.140000px;}
.ls5e{letter-spacing:4.200000px;}
.ls5b{letter-spacing:4.260000px;}
.lsba{letter-spacing:4.272000px;}
.ls2b{letter-spacing:4.320000px;}
.ls90{letter-spacing:4.416000px;}
.lsab{letter-spacing:4.440000px;}
.ls7d{letter-spacing:4.560000px;}
.ls91{letter-spacing:4.740000px;}
.ls29{letter-spacing:4.800000px;}
.ls39{letter-spacing:4.920000px;}
.lsa{letter-spacing:4.980000px;}
.ls74{letter-spacing:5.040000px;}
.ls5a{letter-spacing:5.100000px;}
.lsaa{letter-spacing:5.160000px;}
.lsb0{letter-spacing:5.220000px;}
.ls57{letter-spacing:5.280000px;}
.ls56{letter-spacing:5.580000px;}
.ls9c{letter-spacing:5.700000px;}
.ls66{letter-spacing:5.880000px;}
.ls94{letter-spacing:6.120000px;}
.ls32{letter-spacing:6.180000px;}
.ls59{letter-spacing:6.240000px;}
.ls64{letter-spacing:6.300000px;}
.ls9a{letter-spacing:6.420000px;}
.ls97{letter-spacing:6.660000px;}
.lsac{letter-spacing:6.780000px;}
.lsa5{letter-spacing:7.140000px;}
.ls9e{letter-spacing:7.200000px;}
.ls6e{letter-spacing:7.440000px;}
.ls93{letter-spacing:7.620000px;}
.ls87{letter-spacing:7.740000px;}
.ls98{letter-spacing:7.920000px;}
.ls9d{letter-spacing:8.340000px;}
.ls81{letter-spacing:8.400000px;}
.ls9f{letter-spacing:8.520000px;}
.ls80{letter-spacing:9.300000px;}
.ls73{letter-spacing:14.820000px;}
.ls43{letter-spacing:38.520000px;}
.ls46{letter-spacing:44.055000px;}
.ls4d{letter-spacing:47.025000px;}
.ls4c{letter-spacing:55.530000px;}
.ls48{letter-spacing:59.985000px;}
.ls45{letter-spacing:64.035000px;}
.ls44{letter-spacing:89.550000px;}
.ls8a{letter-spacing:92.352000px;}
.ls3a{letter-spacing:102.672000px;}
.ls3f{letter-spacing:116.016000px;}
.ls50{letter-spacing:119.880000px;}
.ls3c{letter-spacing:126.384000px;}
.ls3b{letter-spacing:129.360000px;}
.ls3d{letter-spacing:144.480000px;}
.ls3e{letter-spacing:156.048000px;}
.ls4e{letter-spacing:282.060000px;}
.ls52{letter-spacing:356.940000px;}
.ls40{letter-spacing:375.456000px;}
.ls4f{letter-spacing:384.300000px;}
.ls41{letter-spacing:388.800000px;}
.ls8b{letter-spacing:441.216000px;}
.ls42{letter-spacing:542.025000px;}
.ls51{letter-spacing:553.230000px;}
.ls47{letter-spacing:558.000000px;}
.ls8d{letter-spacing:620.688000px;}
.ls8c{letter-spacing:628.608000px;}
.ls89{letter-spacing:772.704000px;}
.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;}
}
.wsfe{word-spacing:-786.048000px;}
.ws9f{word-spacing:-565.740000px;}
.wsed{word-spacing:-60.000000px;}
.wscd{word-spacing:-31.500000px;}
.ws13f{word-spacing:-23.460000px;}
.wsa6{word-spacing:-21.780000px;}
.ws32{word-spacing:-21.480000px;}
.ws117{word-spacing:-21.420000px;}
.ws13e{word-spacing:-21.120000px;}
.ws146{word-spacing:-20.940000px;}
.ws145{word-spacing:-20.700000px;}
.ws13c{word-spacing:-20.580000px;}
.wse2{word-spacing:-20.520000px;}
.ws5{word-spacing:-20.040000px;}
.wsf8{word-spacing:-19.860000px;}
.wse3{word-spacing:-19.620000px;}
.ws12a{word-spacing:-19.500000px;}
.ws6{word-spacing:-19.380000px;}
.ws12d{word-spacing:-19.260000px;}
.wseb{word-spacing:-19.140000px;}
.ws121{word-spacing:-19.080000px;}
.wsc9{word-spacing:-18.840000px;}
.wsa8{word-spacing:-18.720000px;}
.ws21{word-spacing:-18.660000px;}
.wsbf{word-spacing:-18.600000px;}
.ws119{word-spacing:-18.480000px;}
.ws13d{word-spacing:-18.420000px;}
.ws12b{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.348000px;}
.ws136{word-spacing:-18.300000px;}
.wsa5{word-spacing:-18.180000px;}
.wsa7{word-spacing:-18.120000px;}
.ws123{word-spacing:-17.940000px;}
.ws122{word-spacing:-17.880000px;}
.ws12c{word-spacing:-17.760000px;}
.wsaa{word-spacing:-17.640000px;}
.ws157{word-spacing:-17.616000px;}
.wscc{word-spacing:-17.580000px;}
.ws11e{word-spacing:-17.520000px;}
.wsa9{word-spacing:-17.460000px;}
.ws116{word-spacing:-17.400000px;}
.wscb{word-spacing:-17.340000px;}
.ws118{word-spacing:-17.280000px;}
.wsa4{word-spacing:-17.220000px;}
.wsab{word-spacing:-17.160000px;}
.ws22{word-spacing:-17.100000px;}
.ws124{word-spacing:-17.040000px;}
.wsec{word-spacing:-16.980000px;}
.wsa2{word-spacing:-16.920000px;}
.wsca{word-spacing:-16.800000px;}
.wsa3{word-spacing:-16.740000px;}
.ws8f{word-spacing:-16.680000px;}
.wse1{word-spacing:-16.620000px;}
.wsee{word-spacing:-16.560000px;}
.ws147{word-spacing:-16.320000px;}
.wsc8{word-spacing:-16.080000px;}
.wsdf{word-spacing:-14.820000px;}
.ws156{word-spacing:-14.736000px;}
.ws154{word-spacing:-14.688000px;}
.ws7{word-spacing:-14.178000px;}
.ws155{word-spacing:-14.016000px;}
.ws148{word-spacing:-13.824000px;}
.ws3{word-spacing:-13.728000px;}
.ws4{word-spacing:-13.344000px;}
.ws158{word-spacing:-13.296000px;}
.ws14c{word-spacing:-11.904000px;}
.ws14f{word-spacing:-11.808000px;}
.ws1{word-spacing:-11.008800px;}
.ws0{word-spacing:-10.969200px;}
.ws55{word-spacing:-10.704000px;}
.wsbe{word-spacing:-10.008000px;}
.ws150{word-spacing:-9.360000px;}
.ws141{word-spacing:-7.920000px;}
.ws14e{word-spacing:-6.864000px;}
.ws143{word-spacing:-6.780000px;}
.ws152{word-spacing:-6.672000px;}
.ws3d{word-spacing:-6.180000px;}
.wsbd{word-spacing:-5.880000px;}
.ws11b{word-spacing:-5.280000px;}
.ws153{word-spacing:-5.220000px;}
.ws140{word-spacing:-5.160000px;}
.wsb3{word-spacing:-5.100000px;}
.wse0{word-spacing:-5.040000px;}
.ws120{word-spacing:-4.980000px;}
.wse5{word-spacing:-4.920000px;}
.ws34{word-spacing:-4.800000px;}
.ws11a{word-spacing:-4.740000px;}
.wse7{word-spacing:-4.560000px;}
.ws142{word-spacing:-4.440000px;}
.ws15c{word-spacing:-4.416000px;}
.ws36{word-spacing:-4.320000px;}
.ws163{word-spacing:-4.272000px;}
.wsb4{word-spacing:-4.260000px;}
.wsb6{word-spacing:-4.200000px;}
.ws138{word-spacing:-4.140000px;}
.ws37{word-spacing:-4.080000px;}
.ws14a{word-spacing:-4.020000px;}
.ws1f{word-spacing:-3.960000px;}
.ws13b{word-spacing:-3.900000px;}
.wse9{word-spacing:-3.840000px;}
.ws28{word-spacing:-3.780000px;}
.ws15a{word-spacing:-3.744000px;}
.ws33{word-spacing:-3.720000px;}
.ws11f{word-spacing:-3.660000px;}
.ws167{word-spacing:-3.648000px;}
.ws128{word-spacing:-3.600000px;}
.ws135{word-spacing:-3.540000px;}
.ws20{word-spacing:-3.480000px;}
.ws13{word-spacing:-3.360000px;}
.ws1c{word-spacing:-3.300000px;}
.wsd8{word-spacing:-3.240000px;}
.ws3f{word-spacing:-3.180000px;}
.ws42{word-spacing:-3.120000px;}
.ws2c{word-spacing:-3.060000px;}
.ws25{word-spacing:-3.000000px;}
.wsb8{word-spacing:-2.940000px;}
.ws35{word-spacing:-2.880000px;}
.ws159{word-spacing:-2.832000px;}
.ws3c{word-spacing:-2.820000px;}
.ws2b{word-spacing:-2.760000px;}
.ws1b{word-spacing:-2.700000px;}
.ws12{word-spacing:-2.640000px;}
.ws133{word-spacing:-2.580000px;}
.wsc1{word-spacing:-2.520000px;}
.wsad{word-spacing:-2.460000px;}
.ws14d{word-spacing:-2.448000px;}
.ws126{word-spacing:-2.400000px;}
.ws38{word-spacing:-2.340000px;}
.wse6{word-spacing:-2.280000px;}
.ws24{word-spacing:-2.220000px;}
.wsd6{word-spacing:-2.160000px;}
.ws13a{word-spacing:-2.100000px;}
.ws18{word-spacing:-2.040000px;}
.ws161{word-spacing:-2.016000px;}
.ws2a{word-spacing:-1.980000px;}
.ws2e{word-spacing:-1.920000px;}
.ws160{word-spacing:-1.872000px;}
.wsef{word-spacing:-1.860000px;}
.ws29{word-spacing:-1.800000px;}
.ws39{word-spacing:-1.740000px;}
.ws41{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.620000px;}
.wse8{word-spacing:-1.560000px;}
.ws166{word-spacing:-1.536000px;}
.wsae{word-spacing:-1.500000px;}
.ws3a{word-spacing:-1.440000px;}
.wsbc{word-spacing:-1.380000px;}
.ws15b{word-spacing:-1.344000px;}
.wsb7{word-spacing:-1.320000px;}
.ws40{word-spacing:-1.260000px;}
.ws151{word-spacing:-1.248000px;}
.wsaf{word-spacing:-1.200000px;}
.ws27{word-spacing:-1.140000px;}
.ws15f{word-spacing:-1.104000px;}
.ws26{word-spacing:-1.080000px;}
.ws23{word-spacing:-1.020000px;}
.wsb5{word-spacing:-0.960000px;}
.ws162{word-spacing:-0.912000px;}
.wsc0{word-spacing:-0.900000px;}
.wsbb{word-spacing:-0.840000px;}
.ws165{word-spacing:-0.816000px;}
.wsb1{word-spacing:-0.780000px;}
.wsc4{word-spacing:-0.720000px;}
.ws15d{word-spacing:-0.672000px;}
.wsc3{word-spacing:-0.660000px;}
.wsb9{word-spacing:-0.600000px;}
.wse{word-spacing:-0.576000px;}
.ws3e{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.480000px;}
.ws2d{word-spacing:-0.420000px;}
.wsd{word-spacing:-0.384000px;}
.wsba{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.300000px;}
.wsf7{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.180000px;}
.ws110{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.096000px;}
.ws1a{word-spacing:-0.060000px;}
.ws31{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws134{word-spacing:0.048000px;}
.ws1e{word-spacing:0.060000px;}
.ws9{word-spacing:0.066000px;}
.wsa{word-spacing:0.096000px;}
.wsc2{word-spacing:0.120000px;}
.ws11{word-spacing:0.144000px;}
.wsea{word-spacing:0.180000px;}
.wsac{word-spacing:0.192000px;}
.ws132{word-spacing:0.240000px;}
.ws137{word-spacing:0.300000px;}
.ws14b{word-spacing:0.360000px;}
.wsf5{word-spacing:0.420000px;}
.wsf{word-spacing:0.432000px;}
.ws12e{word-spacing:0.480000px;}
.wsd0{word-spacing:0.600000px;}
.wsd4{word-spacing:0.780000px;}
.ws129{word-spacing:0.900000px;}
.ws43{word-spacing:0.960000px;}
.wsf0{word-spacing:1.020000px;}
.ws149{word-spacing:1.260000px;}
.ws111{word-spacing:1.344000px;}
.ws164{word-spacing:1.392000px;}
.wsb0{word-spacing:1.440000px;}
.wsde{word-spacing:1.560000px;}
.wsfa{word-spacing:1.620000px;}
.ws131{word-spacing:1.800000px;}
.wsf3{word-spacing:1.860000px;}
.wsc5{word-spacing:2.160000px;}
.wsf9{word-spacing:2.220000px;}
.wsd1{word-spacing:2.304000px;}
.wsc7{word-spacing:2.400000px;}
.ws112{word-spacing:2.544000px;}
.ws139{word-spacing:2.580000px;}
.ws15e{word-spacing:2.592000px;}
.ws8e{word-spacing:2.640000px;}
.wsb{word-spacing:2.688000px;}
.ws144{word-spacing:2.880000px;}
.ws114{word-spacing:2.928000px;}
.ws11c{word-spacing:2.940000px;}
.ws10f{word-spacing:2.976000px;}
.wsfb{word-spacing:3.120000px;}
.wsce{word-spacing:3.300000px;}
.wsf1{word-spacing:3.360000px;}
.ws12f{word-spacing:3.540000px;}
.wscf{word-spacing:3.720000px;}
.wsf2{word-spacing:3.780000px;}
.wsd2{word-spacing:3.840000px;}
.wsd3{word-spacing:3.900000px;}
.wsdb{word-spacing:3.960000px;}
.wsf4{word-spacing:4.020000px;}
.ws30{word-spacing:4.368000px;}
.wsc{word-spacing:4.416000px;}
.wsdd{word-spacing:4.440000px;}
.wsf6{word-spacing:4.656000px;}
.wsd5{word-spacing:4.860000px;}
.ws8d{word-spacing:4.920000px;}
.ws11d{word-spacing:5.088000px;}
.wsda{word-spacing:5.400000px;}
.ws14{word-spacing:5.460000px;}
.ws1d{word-spacing:5.520000px;}
.wsb2{word-spacing:6.000000px;}
.ws113{word-spacing:6.096000px;}
.wsd7{word-spacing:6.300000px;}
.ws127{word-spacing:6.360000px;}
.wsdc{word-spacing:6.480000px;}
.ws130{word-spacing:6.720000px;}
.wsd9{word-spacing:8.760000px;}
.wsc6{word-spacing:8.820000px;}
.ws82{word-spacing:13.500000px;}
.ws76{word-spacing:14.760000px;}
.ws90{word-spacing:23.265000px;}
.ws46{word-spacing:51.696000px;}
.wsfc{word-spacing:55.056000px;}
.ws49{word-spacing:59.664000px;}
.ws64{word-spacing:61.440000px;}
.ws4c{word-spacing:62.688000px;}
.ws107{word-spacing:62.976000px;}
.ws62{word-spacing:63.216000px;}
.ws54{word-spacing:63.984000px;}
.ws6c{word-spacing:64.464000px;}
.ws61{word-spacing:68.544000px;}
.ws65{word-spacing:69.840000px;}
.ws108{word-spacing:70.224000px;}
.ws63{word-spacing:70.320000px;}
.ws8b{word-spacing:72.945000px;}
.ws4a{word-spacing:73.008000px;}
.ws68{word-spacing:74.784000px;}
.ws4b{word-spacing:75.984000px;}
.ws47{word-spacing:76.032000px;}
.ws6a{word-spacing:77.760000px;}
.ws6b{word-spacing:77.808000px;}
.ws9d{word-spacing:78.885000px;}
.ws6e{word-spacing:79.584000px;}
.ws56{word-spacing:81.888000px;}
.ws69{word-spacing:84.864000px;}
.ws4d{word-spacing:86.352000px;}
.ws48{word-spacing:86.688000px;}
.ws50{word-spacing:88.128000px;}
.ws6d{word-spacing:89.328000px;}
.ws5b{word-spacing:89.376000px;}
.ws57{word-spacing:91.104000px;}
.ws58{word-spacing:91.152000px;}
.ws66{word-spacing:92.976000px;}
.ws4e{word-spacing:99.696000px;}
.ws59{word-spacing:102.672000px;}
.ws5a{word-spacing:102.720000px;}
.ws5e{word-spacing:104.016000px;}
.ws51{word-spacing:108.576000px;}
.ws70{word-spacing:116.016000px;}
.ws4f{word-spacing:116.064000px;}
.ws52{word-spacing:117.792000px;}
.ws5c{word-spacing:121.392000px;}
.ws75{word-spacing:123.744000px;}
.ws53{word-spacing:129.360000px;}
.wsfd{word-spacing:129.552000px;}
.ws71{word-spacing:137.376000px;}
.ws74{word-spacing:150.720000px;}
.ws109{word-spacing:224.496000px;}
.ws77{word-spacing:240.750000px;}
.ws83{word-spacing:249.480000px;}
.ws91{word-spacing:257.760000px;}
.ws105{word-spacing:265.440000px;}
.ws106{word-spacing:271.728000px;}
.ws84{word-spacing:274.995000px;}
.ws80{word-spacing:292.140000px;}
.wsff{word-spacing:292.224000px;}
.ws7d{word-spacing:293.085000px;}
.ws60{word-spacing:315.888000px;}
.ws101{word-spacing:324.192000px;}
.ws73{word-spacing:324.768000px;}
.ws5f{word-spacing:327.456000px;}
.ws10d{word-spacing:332.208000px;}
.ws6f{word-spacing:335.424000px;}
.ws67{word-spacing:338.112000px;}
.ws85{word-spacing:340.605000px;}
.ws103{word-spacing:342.816000px;}
.ws9a{word-spacing:343.035000px;}
.ws72{word-spacing:348.768000px;}
.ws5d{word-spacing:351.456000px;}
.ws81{word-spacing:353.610000px;}
.ws10a{word-spacing:355.152000px;}
.ws7e{word-spacing:357.075000px;}
.ws9e{word-spacing:357.615000px;}
.ws88{word-spacing:368.145000px;}
.ws79{word-spacing:369.090000px;}
.ws89{word-spacing:374.040000px;}
.ws9b{word-spacing:385.155000px;}
.ws97{word-spacing:385.695000px;}
.ws94{word-spacing:386.640000px;}
.ws9c{word-spacing:391.050000px;}
.ws7b{word-spacing:393.255000px;}
.ws7a{word-spacing:394.605000px;}
.ws93{word-spacing:410.265000px;}
.ws7f{word-spacing:423.225000px;}
.ws98{word-spacing:424.170000px;}
.ws95{word-spacing:425.115000px;}
.ws96{word-spacing:440.235000px;}
.wsa0{word-spacing:447.750000px;}
.ws99{word-spacing:457.695000px;}
.ws45{word-spacing:461.376000px;}
.ws92{word-spacing:462.600000px;}
.ws86{word-spacing:463.140000px;}
.ws87{word-spacing:464.220000px;}
.ws104{word-spacing:506.256000px;}
.ws8c{word-spacing:538.245000px;}
.wsa1{word-spacing:540.720000px;}
.ws102{word-spacing:546.240000px;}
.ws100{word-spacing:552.720000px;}
.ws8a{word-spacing:600.840000px;}
.ws7c{word-spacing:616.230000px;}
.ws10b{word-spacing:631.104000px;}
.ws78{word-spacing:692.235000px;}
.ws10c{word-spacing:759.360000px;}
.ws44{word-spacing:1028.160000px;}
.ws10e{word-spacing:1197.744000px;}
.ws125{word-spacing:1337.712000px;}
.ws115{word-spacing:1442.736000px;}
.wse4{word-spacing:1693.632000px;}
._c{margin-left:-2898.126000px;}
._10{margin-left:-2874.309000px;}
._46{margin-left:-772.704000px;}
._3c{margin-left:-553.230000px;}
._4b{margin-left:-16.600200px;}
._40{margin-left:-14.820000px;}
._b{margin-left:-7.291800px;}
._1{margin-left:-6.216000px;}
._7{margin-left:-4.176000px;}
._0{margin-left:-3.108000px;}
._2{margin-left:-1.975800px;}
._f{width:1.008000px;}
._3{width:2.016000px;}
._6{width:3.016200px;}
._4{width:4.711800px;}
._5{width:5.736600px;}
._9{width:6.744000px;}
._8{width:8.256000px;}
._a{width:9.480000px;}
._d{width:10.584000px;}
._e{width:11.640000px;}
._48{width:13.200000px;}
._41{width:14.820000px;}
._3e{width:19.260000px;}
._3f{width:20.340000px;}
._30{width:21.453000px;}
._49{width:38.352000px;}
._39{width:44.280000px;}
._12{width:49.008000px;}
._2e{width:52.785000px;}
._13{width:59.712000px;}
._1a{width:60.720000px;}
._4a{width:63.156000px;}
._22{width:72.672000px;}
._24{width:74.887800px;}
._11{width:76.608000px;}
._19{width:79.344000px;}
._18{width:82.032000px;}
._1b{width:86.352000px;}
._1c{width:88.128000px;}
._14{width:100.032000px;}
._15{width:103.152000px;}
._17{width:113.664000px;}
._26{width:134.736000px;}
._3b{width:137.385000px;}
._1e{width:164.784000px;}
._16{width:167.376000px;}
._25{width:177.943800px;}
._1d{width:183.408000px;}
._44{width:238.848000px;}
._23{width:263.376000px;}
._2c{width:269.577000px;}
._21{width:282.048000px;}
._2d{width:294.390000px;}
._20{width:295.392000px;}
._1f{width:308.736000px;}
._2a{width:342.405000px;}
._38{width:349.020000px;}
._3a{width:362.430000px;}
._2b{width:384.660000px;}
._32{width:432.531000px;}
._37{width:435.690000px;}
._36{width:444.420000px;}
._35{width:456.930000px;}
._33{width:484.911000px;}
._31{width:502.245000px;}
._47{width:505.248000px;}
._45{width:538.896000px;}
._3d{width:561.735000px;}
._2f{width:571.680000px;}
._29{width:593.010000px;}
._34{width:612.855000px;}
._43{width:663.312000px;}
._28{width:672.390000px;}
._42{width:676.656000px;}
._27{width:679.632000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs8{font-size:45.000000px;}
.fs9{font-size:46.587399px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:49.693267px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:62.116583px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:81.690750px;}
.y87{bottom:81.691800px;}
.y86{bottom:82.195950px;}
.y12d{bottom:82.819200px;}
.y12f{bottom:82.819950px;}
.y16c{bottom:82.938300px;}
.y130{bottom:83.149800px;}
.y46{bottom:83.350650px;}
.y12b{bottom:83.351550px;}
.y29{bottom:83.493900px;}
.y4c{bottom:83.882100px;}
.yf9{bottom:84.206250px;}
.y124{bottom:84.221400px;}
.y133{bottom:84.354450px;}
.yf7{bottom:84.626250px;}
.ye4{bottom:85.063200px;}
.y14b{bottom:85.063950px;}
.y107{bottom:85.771800px;}
.y99{bottom:92.321100px;}
.y1a2{bottom:95.367600px;}
.y84{bottom:97.193250px;}
.y16b{bottom:97.938300px;}
.y12c{bottom:98.563200px;}
.y12e{bottom:98.563950px;}
.y45{bottom:99.094650px;}
.y12a{bottom:99.095550px;}
.y4b{bottom:99.626100px;}
.yf8{bottom:99.950250px;}
.yf6{bottom:100.370250px;}
.y95{bottom:107.822550px;}
.y98{bottom:107.823600px;}
.y97{bottom:107.826450px;}
.y96{bottom:108.327900px;}
.y129{bottom:109.820250px;}
.y83{bottom:112.695750px;}
.y16a{bottom:112.938300px;}
.y1a1{bottom:113.367600px;}
.y94{bottom:123.325050px;}
.y169{bottom:127.938300px;}
.y7f{bottom:128.191800px;}
.y82{bottom:128.197650px;}
.y81{bottom:128.200500px;}
.y80{bottom:128.701950px;}
.y1a0{bottom:131.367600px;}
.y119{bottom:135.247050px;}
.y93{bottom:138.827550px;}
.y168{bottom:142.938300px;}
.y7e{bottom:143.694300px;}
.y1d{bottom:146.481900px;}
.y19f{bottom:149.367600px;}
.y115{bottom:151.491000px;}
.y118{bottom:151.495050px;}
.y117{bottom:151.497900px;}
.y116{bottom:151.982850px;}
.y8f{bottom:154.323750px;}
.y92{bottom:154.329600px;}
.y91{bottom:154.332300px;}
.y90{bottom:154.833750px;}
.y167{bottom:157.938300px;}
.y7d{bottom:159.196800px;}
.y19e{bottom:167.367600px;}
.y114{bottom:167.739000px;}
.y8e{bottom:169.826250px;}
.y7c{bottom:174.699300px;}
.y113{bottom:183.999000px;}
.y8d{bottom:185.328750px;}
.y19d{bottom:185.367600px;}
.y7b{bottom:190.201800px;}
.y166{bottom:191.378850px;}
.y10f{bottom:200.234550px;}
.y112{bottom:200.250900px;}
.y111{bottom:200.253900px;}
.y110{bottom:200.738700px;}
.y8c{bottom:200.831250px;}
.y19c{bottom:203.367600px;}
.y25{bottom:204.123450px;}
.y7a{bottom:205.704300px;}
.y165{bottom:209.378850px;}
.y8b{bottom:216.333750px;}
.y10e{bottom:216.494550px;}
.y79{bottom:221.206800px;}
.y19b{bottom:221.367600px;}
.y24{bottom:222.123450px;}
.y8a{bottom:231.836250px;}
.y10d{bottom:232.754550px;}
.y19a{bottom:239.367600px;}
.y23{bottom:240.123450px;}
.y164{bottom:245.228850px;}
.y78{bottom:248.094300px;}
.y10c{bottom:249.014550px;}
.y199{bottom:257.367600px;}
.y22{bottom:258.123450px;}
.y89{bottom:262.976250px;}
.y163{bottom:263.228850px;}
.y10b{bottom:265.262550px;}
.y198{bottom:275.367600px;}
.y21{bottom:276.123450px;}
.yf1{bottom:278.833500px;}
.y77{bottom:280.517250px;}
.ye6{bottom:280.958700px;}
.y162{bottom:281.228850px;}
.y10a{bottom:281.510550px;}
.y197{bottom:293.367600px;}
.y20{bottom:294.123450px;}
.ye5{bottom:295.418700px;}
.y88{bottom:297.525000px;}
.y161{bottom:299.228850px;}
.y196{bottom:311.367600px;}
.y1f{bottom:312.123450px;}
.y109{bottom:313.022550px;}
.y160{bottom:317.228850px;}
.y76{bottom:321.251100px;}
.y195{bottom:329.367600px;}
.y26{bottom:330.123450px;}
.y15f{bottom:335.228850px;}
.y75{bottom:344.639100px;}
.y194{bottom:347.367600px;}
.y108{bottom:347.839950px;}
.y1e{bottom:348.123450px;}
.y15e{bottom:353.228850px;}
.ye2{bottom:353.367600px;}
.ybb{bottom:354.705750px;}
.y74{bottom:360.887100px;}
.y193{bottom:365.367600px;}
.y15d{bottom:371.228850px;}
.ye1{bottom:371.367600px;}
.yba{bottom:372.705750px;}
.y73{bottom:377.135100px;}
.y192{bottom:383.367600px;}
.y15c{bottom:389.228850px;}
.ye0{bottom:389.367600px;}
.yb9{bottom:390.705750px;}
.y11f{bottom:392.215050px;}
.y72{bottom:393.383100px;}
.y191{bottom:401.367600px;}
.y15b{bottom:407.228850px;}
.ydf{bottom:407.367600px;}
.y11e{bottom:407.959050px;}
.yb8{bottom:408.705750px;}
.y71{bottom:409.631100px;}
.y1c{bottom:418.305900px;}
.y190{bottom:419.367600px;}
.y11d{bottom:423.703050px;}
.y15a{bottom:425.228850px;}
.yde{bottom:425.367600px;}
.y70{bottom:425.879100px;}
.yb7{bottom:426.705750px;}
.y1b{bottom:433.305900px;}
.y18f{bottom:437.367600px;}
.y11c{bottom:439.447050px;}
.y6f{bottom:442.127100px;}
.y159{bottom:443.228850px;}
.ydd{bottom:443.367600px;}
.yb6{bottom:444.705750px;}
.y11b{bottom:455.191050px;}
.y18e{bottom:455.367600px;}
.y6e{bottom:458.375100px;}
.y158{bottom:461.228850px;}
.ydc{bottom:461.367600px;}
.yb5{bottom:462.705750px;}
.yb4{bottom:463.128000px;}
.y1a{bottom:466.161900px;}
.y11a{bottom:470.935050px;}
.y18d{bottom:473.367600px;}
.y6d{bottom:474.623100px;}
.y157{bottom:479.228850px;}
.ydb{bottom:479.367600px;}
.yb3{bottom:480.713100px;}
.y19{bottom:481.161900px;}
.y6c{bottom:490.871100px;}
.y18c{bottom:491.367600px;}
.y18{bottom:496.161900px;}
.y156{bottom:497.228850px;}
.yda{bottom:497.367600px;}
.yb2{bottom:498.713100px;}
.y6b{bottom:507.071100px;}
.y18b{bottom:509.367600px;}
.y121{bottom:511.095900px;}
.y17{bottom:511.161900px;}
.y123{bottom:514.181400px;}
.y155{bottom:515.228850px;}
.yd9{bottom:515.367600px;}
.yb1{bottom:516.713100px;}
.y6a{bottom:523.319100px;}
.y16{bottom:526.161900px;}
.y18a{bottom:527.367600px;}
.y122{bottom:529.925400px;}
.y154{bottom:533.228850px;}
.yd8{bottom:533.367600px;}
.yb0{bottom:534.713100px;}
.y69{bottom:539.567100px;}
.y15{bottom:541.161900px;}
.y189{bottom:545.367600px;}
.y153{bottom:551.228850px;}
.yd7{bottom:551.367600px;}
.yaf{bottom:552.713100px;}
.y68{bottom:555.815100px;}
.y14{bottom:556.161900px;}
.y188{bottom:563.367600px;}
.y152{bottom:569.228850px;}
.yd6{bottom:569.367600px;}
.yae{bottom:570.713100px;}
.y13{bottom:571.161900px;}
.y67{bottom:572.075100px;}
.y187{bottom:581.367600px;}
.y151{bottom:587.228850px;}
.yd5{bottom:587.367600px;}
.y66{bottom:588.323100px;}
.yf2{bottom:588.703200px;}
.yad{bottom:588.713100px;}
.y186{bottom:599.367600px;}
.y65{bottom:604.571100px;}
.y150{bottom:605.228850px;}
.yd4{bottom:605.367600px;}
.yac{bottom:606.713100px;}
.y185{bottom:617.367600px;}
.y12{bottom:619.905900px;}
.y64{bottom:620.819100px;}
.y14f{bottom:623.228850px;}
.yf0{bottom:623.245500px;}
.yd3{bottom:623.367600px;}
.yab{bottom:624.713100px;}
.y126{bottom:629.623350px;}
.y184{bottom:635.367600px;}
.y63{bottom:637.067100px;}
.y14e{bottom:641.228850px;}
.y4a{bottom:641.363850px;}
.yd2{bottom:641.367600px;}
.y125{bottom:642.379350px;}
.yaa{bottom:642.713100px;}
.y62{bottom:653.315100px;}
.y183{bottom:653.367600px;}
.y11{bottom:654.405900px;}
.y14d{bottom:659.228850px;}
.y49{bottom:659.363850px;}
.yd1{bottom:659.367600px;}
.ya9{bottom:660.713100px;}
.y61{bottom:669.563100px;}
.y182{bottom:671.367600px;}
.y10{bottom:675.023850px;}
.y14c{bottom:677.228850px;}
.y48{bottom:677.363850px;}
.yd0{bottom:677.367600px;}
.yed{bottom:677.786100px;}
.ya8{bottom:678.713100px;}
.y60{bottom:685.811100px;}
.yf{bottom:687.405900px;}
.y181{bottom:689.367600px;}
.y44{bottom:695.228850px;}
.y3d{bottom:695.363850px;}
.ycf{bottom:695.367600px;}
.ya7{bottom:696.713100px;}
.y5f{bottom:702.059100px;}
.y180{bottom:707.367600px;}
.ye{bottom:708.023850px;}
.y43{bottom:713.228850px;}
.y3c{bottom:713.363850px;}
.yce{bottom:713.367600px;}
.yec{bottom:713.786100px;}
.y5e{bottom:718.307100px;}
.y1b6{bottom:718.938300px;}
.yd{bottom:724.523850px;}
.y1c2{bottom:724.938300px;}
.y17f{bottom:725.367600px;}
.ya6{bottom:730.313100px;}
.y42{bottom:731.228850px;}
.y3b{bottom:731.363850px;}
.ycd{bottom:731.367600px;}
.y142{bottom:731.502600px;}
.y14a{bottom:731.517600px;}
.y1b5{bottom:733.938300px;}
.y5d{bottom:734.555100px;}
.y1c1{bottom:739.938300px;}
.yc{bottom:741.023850px;}
.y17e{bottom:743.367600px;}
.ya5{bottom:745.913100px;}
.y1b4{bottom:748.938300px;}
.y41{bottom:749.228850px;}
.y3a{bottom:749.363850px;}
.ycc{bottom:749.367600px;}
.y141{bottom:749.502600px;}
.y149{bottom:749.517600px;}
.y132{bottom:749.786100px;}
.y5c{bottom:750.815100px;}
.yb{bottom:753.405900px;}
.y1c0{bottom:754.938300px;}
.y17d{bottom:761.367600px;}
.y1b3{bottom:763.938300px;}
.y120{bottom:764.091900px;}
.y5b{bottom:767.075100px;}
.y40{bottom:767.228850px;}
.y39{bottom:767.363850px;}
.ycb{bottom:767.367600px;}
.y140{bottom:767.502600px;}
.y148{bottom:767.517600px;}
.y131{bottom:767.812350px;}
.y1bf{bottom:769.938300px;}
.ya{bottom:774.023850px;}
.y1b2{bottom:778.938300px;}
.y17c{bottom:779.367600px;}
.ya4{bottom:779.513100px;}
.y5a{bottom:783.335100px;}
.y1be{bottom:784.938300px;}
.y3f{bottom:785.228850px;}
.y38{bottom:785.363850px;}
.yca{bottom:785.367600px;}
.y13f{bottom:785.502600px;}
.y147{bottom:785.517600px;}
.yef{bottom:785.786100px;}
.y9{bottom:790.523850px;}
.y1b1{bottom:793.938300px;}
.y17b{bottom:797.367600px;}
.ya3{bottom:797.513100px;}
.y59{bottom:799.595100px;}
.y1bd{bottom:799.938300px;}
.y8{bottom:802.905900px;}
.y37{bottom:803.363850px;}
.yc9{bottom:803.367600px;}
.y13e{bottom:803.502600px;}
.y146{bottom:803.517600px;}
.y1b0{bottom:808.938300px;}
.y1bc{bottom:814.938300px;}
.y17a{bottom:815.367600px;}
.ya2{bottom:815.513100px;}
.y58{bottom:815.855100px;}
.y3e{bottom:821.228850px;}
.y36{bottom:821.363850px;}
.y105{bottom:821.364000px;}
.yc8{bottom:821.367600px;}
.y13d{bottom:821.502600px;}
.y145{bottom:821.517600px;}
.yeb{bottom:821.786100px;}
.y104{bottom:821.786250px;}
.y7{bottom:823.523850px;}
.y1af{bottom:823.938300px;}
.y1bb{bottom:829.938300px;}
.y57{bottom:832.115100px;}
.y179{bottom:833.367600px;}
.ye9{bottom:838.512750px;}
.yea{bottom:838.515000px;}
.y1ae{bottom:838.938300px;}
.y35{bottom:839.363850px;}
.yc7{bottom:839.367600px;}
.y13c{bottom:839.502600px;}
.y144{bottom:839.517600px;}
.ye8{bottom:839.786100px;}
.y6{bottom:840.023850px;}
.y1ba{bottom:844.938300px;}
.y56{bottom:848.375100px;}
.ya1{bottom:850.938450px;}
.y178{bottom:851.367600px;}
.y1ad{bottom:853.938300px;}
.y5{bottom:855.292800px;}
.y34{bottom:857.363850px;}
.y102{bottom:857.364000px;}
.yc6{bottom:857.367600px;}
.y13b{bottom:857.502600px;}
.ye7{bottom:857.786100px;}
.y103{bottom:857.786250px;}
.y1b9{bottom:859.938300px;}
.y127{bottom:860.287350px;}
.y55{bottom:864.635100px;}
.ya0{bottom:865.938450px;}
.y1ac{bottom:868.938300px;}
.y177{bottom:869.367600px;}
.y1b8{bottom:874.938300px;}
.y33{bottom:875.363850px;}
.y101{bottom:875.364000px;}
.yc5{bottom:875.367600px;}
.y13a{bottom:875.502600px;}
.y143{bottom:875.517600px;}
.y4{bottom:878.541300px;}
.y54{bottom:880.895100px;}
.y9f{bottom:880.938450px;}
.y1ab{bottom:883.938300px;}
.y1b7{bottom:889.938300px;}
.y32{bottom:893.363850px;}
.y100{bottom:893.364000px;}
.yc4{bottom:893.367600px;}
.y139{bottom:893.502600px;}
.yf5{bottom:893.786100px;}
.y106{bottom:893.786250px;}
.y9e{bottom:895.938450px;}
.y53{bottom:897.155100px;}
.y128{bottom:897.487350px;}
.y1aa{bottom:898.938300px;}
.y176{bottom:904.938300px;}
.y3{bottom:905.924700px;}
.y31{bottom:911.363850px;}
.yff{bottom:911.364000px;}
.yc3{bottom:911.367600px;}
.y138{bottom:911.502600px;}
.yf4{bottom:911.786100px;}
.y52{bottom:913.415100px;}
.y1a9{bottom:913.938300px;}
.y175{bottom:919.938300px;}
.y1a8{bottom:928.938300px;}
.y30{bottom:929.363850px;}
.y9d{bottom:929.364000px;}
.yc2{bottom:929.367600px;}
.y137{bottom:929.502600px;}
.y2{bottom:932.930700px;}
.y174{bottom:934.938300px;}
.y51{bottom:938.171100px;}
.y1a7{bottom:943.938300px;}
.y2f{bottom:947.363850px;}
.yfe{bottom:947.364000px;}
.yc1{bottom:947.367600px;}
.y136{bottom:947.502600px;}
.yf3{bottom:947.786100px;}
.y173{bottom:949.938300px;}
.y1a6{bottom:958.938300px;}
.y1{bottom:959.936700px;}
.y50{bottom:962.927100px;}
.y172{bottom:964.938300px;}
.y9c{bottom:965.229000px;}
.y2e{bottom:965.363850px;}
.yfd{bottom:965.364000px;}
.yc0{bottom:965.367600px;}
.y135{bottom:965.502600px;}
.yee{bottom:965.786100px;}
.y1a5{bottom:973.938300px;}
.y171{bottom:979.938300px;}
.y2d{bottom:983.363850px;}
.yfc{bottom:983.364000px;}
.ybf{bottom:983.367600px;}
.y4f{bottom:987.683100px;}
.y1a4{bottom:988.938300px;}
.y170{bottom:994.938300px;}
.y2c{bottom:1001.363850px;}
.yfb{bottom:1001.364000px;}
.ybe{bottom:1001.367600px;}
.y134{bottom:1001.502600px;}
.y1a3{bottom:1003.938300px;}
.y16f{bottom:1009.938300px;}
.y4e{bottom:1017.867600px;}
.y2b{bottom:1019.363850px;}
.y9b{bottom:1019.364000px;}
.ye3{bottom:1019.367600px;}
.ybd{bottom:1019.370750px;}
.yfa{bottom:1019.786250px;}
.y16e{bottom:1024.938300px;}
.y2a{bottom:1037.363850px;}
.y9a{bottom:1037.364000px;}
.y4d{bottom:1037.367600px;}
.ybc{bottom:1037.370750px;}
.y16d{bottom:1039.938300px;}
.y28{bottom:1070.769450px;}
.y47{bottom:1086.066450px;}
.y27{bottom:1086.069450px;}
.h5{height:20.995312px;}
.hf{height:32.347305px;}
.h10{height:32.783203px;}
.he{height:32.805176px;}
.h16{height:34.503821px;}
.h7{height:34.945312px;}
.h17{height:34.968750px;}
.h6{height:34.992188px;}
.hd{height:35.184188px;}
.ha{height:37.179199px;}
.h11{height:43.129776px;}
.h8{height:43.681641px;}
.hb{height:43.710938px;}
.h9{height:43.740234px;}
.h12{height:43.755234px;}
.hc{height:46.822162px;}
.h15{height:47.106338px;}
.h14{height:47.135634px;}
.h13{height:47.144634px;}
.h4{height:51.498619px;}
.h3{height:51.504619px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:75.008100px;}
.xa{left:76.535400px;}
.x16{left:78.636900px;}
.x63{left:87.014400px;}
.x8{left:96.094500px;}
.x1{left:97.795350px;}
.x23{left:99.921150px;}
.x39{left:105.610200px;}
.x33{left:107.552250px;}
.x30{left:108.842250px;}
.xb{left:110.570400px;}
.x2{left:125.439450px;}
.x66{left:127.555350px;}
.x43{left:129.259800px;}
.x5{left:131.816400px;}
.x3{left:161.571450px;}
.x15{left:181.320900px;}
.x34{left:190.952250px;}
.x65{left:198.877650px;}
.x4a{left:202.788150px;}
.x3a{left:206.774100px;}
.x4{left:212.876400px;}
.x31{left:215.552250px;}
.x61{left:219.401550px;}
.x32{left:228.467250px;}
.x2f{left:229.855200px;}
.x2e{left:232.360200px;}
.x17{left:234.838650px;}
.x22{left:235.981350px;}
.x18{left:243.702000px;}
.x52{left:247.518150px;}
.x51{left:248.740050px;}
.x19{left:251.938800px;}
.x53{left:254.992050px;}
.x55{left:256.972500px;}
.x1a{left:258.945600px;}
.x64{left:263.046750px;}
.x24{left:264.602400px;}
.x1b{left:267.182400px;}
.x36{left:269.468400px;}
.x25{left:271.609050px;}
.x1c{left:274.189050px;}
.x4b{left:281.888400px;}
.x26{left:282.971550px;}
.x3d{left:286.377900px;}
.x2c{left:287.953650px;}
.x27{left:289.978200px;}
.x4c{left:291.230700px;}
.x59{left:293.385750px;}
.x2d{left:296.817150px;}
.x3e{left:298.394100px;}
.x14{left:315.900900px;}
.x13{left:369.072900px;}
.x3b{left:391.320150px;}
.x35{left:399.569550px;}
.x3c{left:400.662300px;}
.x28{left:409.169250px;}
.x4d{left:410.399550px;}
.x38{left:421.423500px;}
.x1d{left:447.437100px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x56{left:466.126350px;}
.x44{left:469.579800px;}
.x3f{left:476.819250px;}
.x10{left:478.360350px;}
.x6{left:480.491400px;}
.x40{left:486.161400px;}
.xd{left:491.120400px;}
.x4e{left:497.791800px;}
.x5b{left:501.729750px;}
.x4f{left:507.691200px;}
.x11{left:512.380350px;}
.x7{left:514.511400px;}
.xe{left:525.290400px;}
.x29{left:536.871450px;}
.x5c{left:543.189750px;}
.x41{left:549.777000px;}
.x1e{left:551.753400px;}
.x2a{left:553.736250px;}
.x42{left:559.119300px;}
.x1f{left:566.492250px;}
.x47{left:571.594950px;}
.x48{left:606.970350px;}
.x49{left:619.151250px;}
.x37{left:642.584400px;}
.x54{left:647.203200px;}
.x5d{left:652.108500px;}
.x5e{left:661.686450px;}
.x5a{left:663.309750px;}
.x45{left:667.386150px;}
.x20{left:677.186550px;}
.x46{left:679.586250px;}
.x2b{left:681.438450px;}
.x21{left:698.303250px;}
.x50{left:717.130200px;}
.xf{left:724.221150px;}
.x57{left:738.250350px;}
.x58{left:739.336350px;}
.x12{left:745.480950px;}
.x5f{left:763.413900px;}
.x60{left:775.467450px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v5{vertical-align:-3.042133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v6{vertical-align:3.026133pt;}
.v4{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.ls49{letter-spacing:-3.157333pt;}
.ls75{letter-spacing:-2.986667pt;}
.ls4b{letter-spacing:-2.960000pt;}
.ls77{letter-spacing:-2.933333pt;}
.lsad{letter-spacing:-2.560000pt;}
.ls9b{letter-spacing:-2.453333pt;}
.ls4a{letter-spacing:-2.346667pt;}
.ls7a{letter-spacing:-2.133333pt;}
.ls88{letter-spacing:-1.973333pt;}
.ls70{letter-spacing:-1.920000pt;}
.ls79{letter-spacing:-1.706667pt;}
.ls86{letter-spacing:-1.653333pt;}
.lsa0{letter-spacing:-1.440000pt;}
.ls7b{letter-spacing:-1.386667pt;}
.lsa1{letter-spacing:-0.800000pt;}
.ls78{letter-spacing:-0.693333pt;}
.ls76{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.373333pt;}
.lsb1{letter-spacing:-0.320000pt;}
.lsa9{letter-spacing:-0.266667pt;}
.lsa2{letter-spacing:-0.213333pt;}
.ls67{letter-spacing:-0.170667pt;}
.ls83{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6f{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls11{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.058667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:-0.035200pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls6b{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls27{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.110400pt;}
.ls8e{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.213333pt;}
.ls85{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.320000pt;}
.ls95{letter-spacing:0.330133pt;}
.ls15{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.426667pt;}
.ls33{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.512000pt;}
.ls61{letter-spacing:0.533333pt;}
.ls6c{letter-spacing:0.586667pt;}
.lsb5{letter-spacing:0.597333pt;}
.ls6d{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.693333pt;}
.lsbd{letter-spacing:0.725333pt;}
.ls63{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.800000pt;}
.lsb9{letter-spacing:0.810667pt;}
.ls5d{letter-spacing:0.853333pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls1d{letter-spacing:0.960000pt;}
.lsbb{letter-spacing:0.981333pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls55{letter-spacing:1.066667pt;}
.ls5c{letter-spacing:1.101333pt;}
.lsbc{letter-spacing:1.109333pt;}
.ls35{letter-spacing:1.120000pt;}
.ls92{letter-spacing:1.145067pt;}
.ls5f{letter-spacing:1.173333pt;}
.lsb4{letter-spacing:1.194667pt;}
.ls65{letter-spacing:1.226667pt;}
.lsb8{letter-spacing:1.237333pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls54{letter-spacing:1.333333pt;}
.lsbe{letter-spacing:1.365333pt;}
.ls7e{letter-spacing:1.386667pt;}
.ls30{letter-spacing:1.440000pt;}
.ls36{letter-spacing:1.493333pt;}
.ls2e{letter-spacing:1.546667pt;}
.ls20{letter-spacing:1.600000pt;}
.ls84{letter-spacing:1.653333pt;}
.lsb6{letter-spacing:1.664000pt;}
.ls6a{letter-spacing:1.706667pt;}
.ls21{letter-spacing:1.760000pt;}
.lsb7{letter-spacing:1.792000pt;}
.ls8{letter-spacing:1.813333pt;}
.lsa7{letter-spacing:1.866667pt;}
.ls71{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:1.973333pt;}
.ls7c{letter-spacing:2.026667pt;}
.ls2d{letter-spacing:2.080000pt;}
.ls82{letter-spacing:2.133333pt;}
.lsaf{letter-spacing:2.176000pt;}
.ls53{letter-spacing:2.186667pt;}
.ls69{letter-spacing:2.240000pt;}
.lsa3{letter-spacing:2.293333pt;}
.ls25{letter-spacing:2.346667pt;}
.lsc{letter-spacing:2.400000pt;}
.ls22{letter-spacing:2.453333pt;}
.ls31{letter-spacing:2.506667pt;}
.lsb2{letter-spacing:2.517333pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls8f{letter-spacing:2.602667pt;}
.ls60{letter-spacing:2.613333pt;}
.ls1c{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.720000pt;}
.ls38{letter-spacing:2.773333pt;}
.ls34{letter-spacing:2.826667pt;}
.ls72{letter-spacing:2.880000pt;}
.lsd{letter-spacing:2.933333pt;}
.ls4{letter-spacing:2.986667pt;}
.lsf{letter-spacing:3.093333pt;}
.lsa4{letter-spacing:3.146667pt;}
.ls99{letter-spacing:3.200000pt;}
.lsbf{letter-spacing:3.242667pt;}
.ls96{letter-spacing:3.253333pt;}
.ls28{letter-spacing:3.306667pt;}
.lsb3{letter-spacing:3.328000pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls7f{letter-spacing:3.413333pt;}
.lsa8{letter-spacing:3.466667pt;}
.lse{letter-spacing:3.520000pt;}
.lsae{letter-spacing:3.573333pt;}
.ls2c{letter-spacing:3.626667pt;}
.lsa6{letter-spacing:3.680000pt;}
.ls5e{letter-spacing:3.733333pt;}
.ls5b{letter-spacing:3.786667pt;}
.lsba{letter-spacing:3.797333pt;}
.ls2b{letter-spacing:3.840000pt;}
.ls90{letter-spacing:3.925333pt;}
.lsab{letter-spacing:3.946667pt;}
.ls7d{letter-spacing:4.053333pt;}
.ls91{letter-spacing:4.213333pt;}
.ls29{letter-spacing:4.266667pt;}
.ls39{letter-spacing:4.373333pt;}
.lsa{letter-spacing:4.426667pt;}
.ls74{letter-spacing:4.480000pt;}
.ls5a{letter-spacing:4.533333pt;}
.lsaa{letter-spacing:4.586667pt;}
.lsb0{letter-spacing:4.640000pt;}
.ls57{letter-spacing:4.693333pt;}
.ls56{letter-spacing:4.960000pt;}
.ls9c{letter-spacing:5.066667pt;}
.ls66{letter-spacing:5.226667pt;}
.ls94{letter-spacing:5.440000pt;}
.ls32{letter-spacing:5.493333pt;}
.ls59{letter-spacing:5.546667pt;}
.ls64{letter-spacing:5.600000pt;}
.ls9a{letter-spacing:5.706667pt;}
.ls97{letter-spacing:5.920000pt;}
.lsac{letter-spacing:6.026667pt;}
.lsa5{letter-spacing:6.346667pt;}
.ls9e{letter-spacing:6.400000pt;}
.ls6e{letter-spacing:6.613333pt;}
.ls93{letter-spacing:6.773333pt;}
.ls87{letter-spacing:6.880000pt;}
.ls98{letter-spacing:7.040000pt;}
.ls9d{letter-spacing:7.413333pt;}
.ls81{letter-spacing:7.466667pt;}
.ls9f{letter-spacing:7.573333pt;}
.ls80{letter-spacing:8.266667pt;}
.ls73{letter-spacing:13.173333pt;}
.ls43{letter-spacing:34.240000pt;}
.ls46{letter-spacing:39.160000pt;}
.ls4d{letter-spacing:41.800000pt;}
.ls4c{letter-spacing:49.360000pt;}
.ls48{letter-spacing:53.320000pt;}
.ls45{letter-spacing:56.920000pt;}
.ls44{letter-spacing:79.600000pt;}
.ls8a{letter-spacing:82.090667pt;}
.ls3a{letter-spacing:91.264000pt;}
.ls3f{letter-spacing:103.125333pt;}
.ls50{letter-spacing:106.560000pt;}
.ls3c{letter-spacing:112.341333pt;}
.ls3b{letter-spacing:114.986667pt;}
.ls3d{letter-spacing:128.426667pt;}
.ls3e{letter-spacing:138.709333pt;}
.ls4e{letter-spacing:250.720000pt;}
.ls52{letter-spacing:317.280000pt;}
.ls40{letter-spacing:333.738667pt;}
.ls4f{letter-spacing:341.600000pt;}
.ls41{letter-spacing:345.600000pt;}
.ls8b{letter-spacing:392.192000pt;}
.ls42{letter-spacing:481.800000pt;}
.ls51{letter-spacing:491.760000pt;}
.ls47{letter-spacing:496.000000pt;}
.ls8d{letter-spacing:551.722667pt;}
.ls8c{letter-spacing:558.762667pt;}
.ls89{letter-spacing:686.848000pt;}
.wsfe{word-spacing:-698.709333pt;}
.ws9f{word-spacing:-502.880000pt;}
.wsed{word-spacing:-53.333333pt;}
.wscd{word-spacing:-28.000000pt;}
.ws13f{word-spacing:-20.853333pt;}
.wsa6{word-spacing:-19.360000pt;}
.ws32{word-spacing:-19.093333pt;}
.ws117{word-spacing:-19.040000pt;}
.ws13e{word-spacing:-18.773333pt;}
.ws146{word-spacing:-18.613333pt;}
.ws145{word-spacing:-18.400000pt;}
.ws13c{word-spacing:-18.293333pt;}
.wse2{word-spacing:-18.240000pt;}
.ws5{word-spacing:-17.813333pt;}
.wsf8{word-spacing:-17.653333pt;}
.wse3{word-spacing:-17.440000pt;}
.ws12a{word-spacing:-17.333333pt;}
.ws6{word-spacing:-17.226667pt;}
.ws12d{word-spacing:-17.120000pt;}
.wseb{word-spacing:-17.013333pt;}
.ws121{word-spacing:-16.960000pt;}
.wsc9{word-spacing:-16.746667pt;}
.wsa8{word-spacing:-16.640000pt;}
.ws21{word-spacing:-16.586667pt;}
.wsbf{word-spacing:-16.533333pt;}
.ws119{word-spacing:-16.426667pt;}
.ws13d{word-spacing:-16.373333pt;}
.ws12b{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.309333pt;}
.ws136{word-spacing:-16.266667pt;}
.wsa5{word-spacing:-16.160000pt;}
.wsa7{word-spacing:-16.106667pt;}
.ws123{word-spacing:-15.946667pt;}
.ws122{word-spacing:-15.893333pt;}
.ws12c{word-spacing:-15.786667pt;}
.wsaa{word-spacing:-15.680000pt;}
.ws157{word-spacing:-15.658667pt;}
.wscc{word-spacing:-15.626667pt;}
.ws11e{word-spacing:-15.573333pt;}
.wsa9{word-spacing:-15.520000pt;}
.ws116{word-spacing:-15.466667pt;}
.wscb{word-spacing:-15.413333pt;}
.ws118{word-spacing:-15.360000pt;}
.wsa4{word-spacing:-15.306667pt;}
.wsab{word-spacing:-15.253333pt;}
.ws22{word-spacing:-15.200000pt;}
.ws124{word-spacing:-15.146667pt;}
.wsec{word-spacing:-15.093333pt;}
.wsa2{word-spacing:-15.040000pt;}
.wsca{word-spacing:-14.933333pt;}
.wsa3{word-spacing:-14.880000pt;}
.ws8f{word-spacing:-14.826667pt;}
.wse1{word-spacing:-14.773333pt;}
.wsee{word-spacing:-14.720000pt;}
.ws147{word-spacing:-14.506667pt;}
.wsc8{word-spacing:-14.293333pt;}
.wsdf{word-spacing:-13.173333pt;}
.ws156{word-spacing:-13.098667pt;}
.ws154{word-spacing:-13.056000pt;}
.ws7{word-spacing:-12.602667pt;}
.ws155{word-spacing:-12.458667pt;}
.ws148{word-spacing:-12.288000pt;}
.ws3{word-spacing:-12.202667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws158{word-spacing:-11.818667pt;}
.ws14c{word-spacing:-10.581333pt;}
.ws14f{word-spacing:-10.496000pt;}
.ws1{word-spacing:-9.785600pt;}
.ws0{word-spacing:-9.750400pt;}
.ws55{word-spacing:-9.514667pt;}
.wsbe{word-spacing:-8.896000pt;}
.ws150{word-spacing:-8.320000pt;}
.ws141{word-spacing:-7.040000pt;}
.ws14e{word-spacing:-6.101333pt;}
.ws143{word-spacing:-6.026667pt;}
.ws152{word-spacing:-5.930667pt;}
.ws3d{word-spacing:-5.493333pt;}
.wsbd{word-spacing:-5.226667pt;}
.ws11b{word-spacing:-4.693333pt;}
.ws153{word-spacing:-4.640000pt;}
.ws140{word-spacing:-4.586667pt;}
.wsb3{word-spacing:-4.533333pt;}
.wse0{word-spacing:-4.480000pt;}
.ws120{word-spacing:-4.426667pt;}
.wse5{word-spacing:-4.373333pt;}
.ws34{word-spacing:-4.266667pt;}
.ws11a{word-spacing:-4.213333pt;}
.wse7{word-spacing:-4.053333pt;}
.ws142{word-spacing:-3.946667pt;}
.ws15c{word-spacing:-3.925333pt;}
.ws36{word-spacing:-3.840000pt;}
.ws163{word-spacing:-3.797333pt;}
.wsb4{word-spacing:-3.786667pt;}
.wsb6{word-spacing:-3.733333pt;}
.ws138{word-spacing:-3.680000pt;}
.ws37{word-spacing:-3.626667pt;}
.ws14a{word-spacing:-3.573333pt;}
.ws1f{word-spacing:-3.520000pt;}
.ws13b{word-spacing:-3.466667pt;}
.wse9{word-spacing:-3.413333pt;}
.ws28{word-spacing:-3.360000pt;}
.ws15a{word-spacing:-3.328000pt;}
.ws33{word-spacing:-3.306667pt;}
.ws11f{word-spacing:-3.253333pt;}
.ws167{word-spacing:-3.242667pt;}
.ws128{word-spacing:-3.200000pt;}
.ws135{word-spacing:-3.146667pt;}
.ws20{word-spacing:-3.093333pt;}
.ws13{word-spacing:-2.986667pt;}
.ws1c{word-spacing:-2.933333pt;}
.wsd8{word-spacing:-2.880000pt;}
.ws3f{word-spacing:-2.826667pt;}
.ws42{word-spacing:-2.773333pt;}
.ws2c{word-spacing:-2.720000pt;}
.ws25{word-spacing:-2.666667pt;}
.wsb8{word-spacing:-2.613333pt;}
.ws35{word-spacing:-2.560000pt;}
.ws159{word-spacing:-2.517333pt;}
.ws3c{word-spacing:-2.506667pt;}
.ws2b{word-spacing:-2.453333pt;}
.ws1b{word-spacing:-2.400000pt;}
.ws12{word-spacing:-2.346667pt;}
.ws133{word-spacing:-2.293333pt;}
.wsc1{word-spacing:-2.240000pt;}
.wsad{word-spacing:-2.186667pt;}
.ws14d{word-spacing:-2.176000pt;}
.ws126{word-spacing:-2.133333pt;}
.ws38{word-spacing:-2.080000pt;}
.wse6{word-spacing:-2.026667pt;}
.ws24{word-spacing:-1.973333pt;}
.wsd6{word-spacing:-1.920000pt;}
.ws13a{word-spacing:-1.866667pt;}
.ws18{word-spacing:-1.813333pt;}
.ws161{word-spacing:-1.792000pt;}
.ws2a{word-spacing:-1.760000pt;}
.ws2e{word-spacing:-1.706667pt;}
.ws160{word-spacing:-1.664000pt;}
.wsef{word-spacing:-1.653333pt;}
.ws29{word-spacing:-1.600000pt;}
.ws39{word-spacing:-1.546667pt;}
.ws41{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.440000pt;}
.wse8{word-spacing:-1.386667pt;}
.ws166{word-spacing:-1.365333pt;}
.wsae{word-spacing:-1.333333pt;}
.ws3a{word-spacing:-1.280000pt;}
.wsbc{word-spacing:-1.226667pt;}
.ws15b{word-spacing:-1.194667pt;}
.wsb7{word-spacing:-1.173333pt;}
.ws40{word-spacing:-1.120000pt;}
.ws151{word-spacing:-1.109333pt;}
.wsaf{word-spacing:-1.066667pt;}
.ws27{word-spacing:-1.013333pt;}
.ws15f{word-spacing:-0.981333pt;}
.ws26{word-spacing:-0.960000pt;}
.ws23{word-spacing:-0.906667pt;}
.wsb5{word-spacing:-0.853333pt;}
.ws162{word-spacing:-0.810667pt;}
.wsc0{word-spacing:-0.800000pt;}
.wsbb{word-spacing:-0.746667pt;}
.ws165{word-spacing:-0.725333pt;}
.wsb1{word-spacing:-0.693333pt;}
.wsc4{word-spacing:-0.640000pt;}
.ws15d{word-spacing:-0.597333pt;}
.wsc3{word-spacing:-0.586667pt;}
.wsb9{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.512000pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.426667pt;}
.ws2d{word-spacing:-0.373333pt;}
.wsd{word-spacing:-0.341333pt;}
.wsba{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.266667pt;}
.wsf7{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.160000pt;}
.ws110{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.085333pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws31{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws134{word-spacing:0.042667pt;}
.ws1e{word-spacing:0.053333pt;}
.ws9{word-spacing:0.058667pt;}
.wsa{word-spacing:0.085333pt;}
.wsc2{word-spacing:0.106667pt;}
.ws11{word-spacing:0.128000pt;}
.wsea{word-spacing:0.160000pt;}
.wsac{word-spacing:0.170667pt;}
.ws132{word-spacing:0.213333pt;}
.ws137{word-spacing:0.266667pt;}
.ws14b{word-spacing:0.320000pt;}
.wsf5{word-spacing:0.373333pt;}
.wsf{word-spacing:0.384000pt;}
.ws12e{word-spacing:0.426667pt;}
.wsd0{word-spacing:0.533333pt;}
.wsd4{word-spacing:0.693333pt;}
.ws129{word-spacing:0.800000pt;}
.ws43{word-spacing:0.853333pt;}
.wsf0{word-spacing:0.906667pt;}
.ws149{word-spacing:1.120000pt;}
.ws111{word-spacing:1.194667pt;}
.ws164{word-spacing:1.237333pt;}
.wsb0{word-spacing:1.280000pt;}
.wsde{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.440000pt;}
.ws131{word-spacing:1.600000pt;}
.wsf3{word-spacing:1.653333pt;}
.wsc5{word-spacing:1.920000pt;}
.wsf9{word-spacing:1.973333pt;}
.wsd1{word-spacing:2.048000pt;}
.wsc7{word-spacing:2.133333pt;}
.ws112{word-spacing:2.261333pt;}
.ws139{word-spacing:2.293333pt;}
.ws15e{word-spacing:2.304000pt;}
.ws8e{word-spacing:2.346667pt;}
.wsb{word-spacing:2.389333pt;}
.ws144{word-spacing:2.560000pt;}
.ws114{word-spacing:2.602667pt;}
.ws11c{word-spacing:2.613333pt;}
.ws10f{word-spacing:2.645333pt;}
.wsfb{word-spacing:2.773333pt;}
.wsce{word-spacing:2.933333pt;}
.wsf1{word-spacing:2.986667pt;}
.ws12f{word-spacing:3.146667pt;}
.wscf{word-spacing:3.306667pt;}
.wsf2{word-spacing:3.360000pt;}
.wsd2{word-spacing:3.413333pt;}
.wsd3{word-spacing:3.466667pt;}
.wsdb{word-spacing:3.520000pt;}
.wsf4{word-spacing:3.573333pt;}
.ws30{word-spacing:3.882667pt;}
.wsc{word-spacing:3.925333pt;}
.wsdd{word-spacing:3.946667pt;}
.wsf6{word-spacing:4.138667pt;}
.wsd5{word-spacing:4.320000pt;}
.ws8d{word-spacing:4.373333pt;}
.ws11d{word-spacing:4.522667pt;}
.wsda{word-spacing:4.800000pt;}
.ws14{word-spacing:4.853333pt;}
.ws1d{word-spacing:4.906667pt;}
.wsb2{word-spacing:5.333333pt;}
.ws113{word-spacing:5.418667pt;}
.wsd7{word-spacing:5.600000pt;}
.ws127{word-spacing:5.653333pt;}
.wsdc{word-spacing:5.760000pt;}
.ws130{word-spacing:5.973333pt;}
.wsd9{word-spacing:7.786667pt;}
.wsc6{word-spacing:7.840000pt;}
.ws82{word-spacing:12.000000pt;}
.ws76{word-spacing:13.120000pt;}
.ws90{word-spacing:20.680000pt;}
.ws46{word-spacing:45.952000pt;}
.wsfc{word-spacing:48.938667pt;}
.ws49{word-spacing:53.034667pt;}
.ws64{word-spacing:54.613333pt;}
.ws4c{word-spacing:55.722667pt;}
.ws107{word-spacing:55.978667pt;}
.ws62{word-spacing:56.192000pt;}
.ws54{word-spacing:56.874667pt;}
.ws6c{word-spacing:57.301333pt;}
.ws61{word-spacing:60.928000pt;}
.ws65{word-spacing:62.080000pt;}
.ws108{word-spacing:62.421333pt;}
.ws63{word-spacing:62.506667pt;}
.ws8b{word-spacing:64.840000pt;}
.ws4a{word-spacing:64.896000pt;}
.ws68{word-spacing:66.474667pt;}
.ws4b{word-spacing:67.541333pt;}
.ws47{word-spacing:67.584000pt;}
.ws6a{word-spacing:69.120000pt;}
.ws6b{word-spacing:69.162667pt;}
.ws9d{word-spacing:70.120000pt;}
.ws6e{word-spacing:70.741333pt;}
.ws56{word-spacing:72.789333pt;}
.ws69{word-spacing:75.434667pt;}
.ws4d{word-spacing:76.757333pt;}
.ws48{word-spacing:77.056000pt;}
.ws50{word-spacing:78.336000pt;}
.ws6d{word-spacing:79.402667pt;}
.ws5b{word-spacing:79.445333pt;}
.ws57{word-spacing:80.981333pt;}
.ws58{word-spacing:81.024000pt;}
.ws66{word-spacing:82.645333pt;}
.ws4e{word-spacing:88.618667pt;}
.ws59{word-spacing:91.264000pt;}
.ws5a{word-spacing:91.306667pt;}
.ws5e{word-spacing:92.458667pt;}
.ws51{word-spacing:96.512000pt;}
.ws70{word-spacing:103.125333pt;}
.ws4f{word-spacing:103.168000pt;}
.ws52{word-spacing:104.704000pt;}
.ws5c{word-spacing:107.904000pt;}
.ws75{word-spacing:109.994667pt;}
.ws53{word-spacing:114.986667pt;}
.wsfd{word-spacing:115.157333pt;}
.ws71{word-spacing:122.112000pt;}
.ws74{word-spacing:133.973333pt;}
.ws109{word-spacing:199.552000pt;}
.ws77{word-spacing:214.000000pt;}
.ws83{word-spacing:221.760000pt;}
.ws91{word-spacing:229.120000pt;}
.ws105{word-spacing:235.946667pt;}
.ws106{word-spacing:241.536000pt;}
.ws84{word-spacing:244.440000pt;}
.ws80{word-spacing:259.680000pt;}
.wsff{word-spacing:259.754667pt;}
.ws7d{word-spacing:260.520000pt;}
.ws60{word-spacing:280.789333pt;}
.ws101{word-spacing:288.170667pt;}
.ws73{word-spacing:288.682667pt;}
.ws5f{word-spacing:291.072000pt;}
.ws10d{word-spacing:295.296000pt;}
.ws6f{word-spacing:298.154667pt;}
.ws67{word-spacing:300.544000pt;}
.ws85{word-spacing:302.760000pt;}
.ws103{word-spacing:304.725333pt;}
.ws9a{word-spacing:304.920000pt;}
.ws72{word-spacing:310.016000pt;}
.ws5d{word-spacing:312.405333pt;}
.ws81{word-spacing:314.320000pt;}
.ws10a{word-spacing:315.690667pt;}
.ws7e{word-spacing:317.400000pt;}
.ws9e{word-spacing:317.880000pt;}
.ws88{word-spacing:327.240000pt;}
.ws79{word-spacing:328.080000pt;}
.ws89{word-spacing:332.480000pt;}
.ws9b{word-spacing:342.360000pt;}
.ws97{word-spacing:342.840000pt;}
.ws94{word-spacing:343.680000pt;}
.ws9c{word-spacing:347.600000pt;}
.ws7b{word-spacing:349.560000pt;}
.ws7a{word-spacing:350.760000pt;}
.ws93{word-spacing:364.680000pt;}
.ws7f{word-spacing:376.200000pt;}
.ws98{word-spacing:377.040000pt;}
.ws95{word-spacing:377.880000pt;}
.ws96{word-spacing:391.320000pt;}
.wsa0{word-spacing:398.000000pt;}
.ws99{word-spacing:406.840000pt;}
.ws45{word-spacing:410.112000pt;}
.ws92{word-spacing:411.200000pt;}
.ws86{word-spacing:411.680000pt;}
.ws87{word-spacing:412.640000pt;}
.ws104{word-spacing:450.005333pt;}
.ws8c{word-spacing:478.440000pt;}
.wsa1{word-spacing:480.640000pt;}
.ws102{word-spacing:485.546667pt;}
.ws100{word-spacing:491.306667pt;}
.ws8a{word-spacing:534.080000pt;}
.ws7c{word-spacing:547.760000pt;}
.ws10b{word-spacing:560.981333pt;}
.ws78{word-spacing:615.320000pt;}
.ws10c{word-spacing:674.986667pt;}
.ws44{word-spacing:913.920000pt;}
.ws10e{word-spacing:1064.661333pt;}
.ws125{word-spacing:1189.077333pt;}
.ws115{word-spacing:1282.432000pt;}
.wse4{word-spacing:1505.450667pt;}
._c{margin-left:-2576.112000pt;}
._10{margin-left:-2554.941333pt;}
._46{margin-left:-686.848000pt;}
._3c{margin-left:-491.760000pt;}
._4b{margin-left:-14.755733pt;}
._40{margin-left:-13.173333pt;}
._b{margin-left:-6.481600pt;}
._1{margin-left:-5.525333pt;}
._7{margin-left:-3.712000pt;}
._0{margin-left:-2.762667pt;}
._2{margin-left:-1.756267pt;}
._f{width:0.896000pt;}
._3{width:1.792000pt;}
._6{width:2.681067pt;}
._4{width:4.188267pt;}
._5{width:5.099200pt;}
._9{width:5.994667pt;}
._8{width:7.338667pt;}
._a{width:8.426667pt;}
._d{width:9.408000pt;}
._e{width:10.346667pt;}
._48{width:11.733333pt;}
._41{width:13.173333pt;}
._3e{width:17.120000pt;}
._3f{width:18.080000pt;}
._30{width:19.069333pt;}
._49{width:34.090667pt;}
._39{width:39.360000pt;}
._12{width:43.562667pt;}
._2e{width:46.920000pt;}
._13{width:53.077333pt;}
._1a{width:53.973333pt;}
._4a{width:56.138667pt;}
._22{width:64.597333pt;}
._24{width:66.566933pt;}
._11{width:68.096000pt;}
._19{width:70.528000pt;}
._18{width:72.917333pt;}
._1b{width:76.757333pt;}
._1c{width:78.336000pt;}
._14{width:88.917333pt;}
._15{width:91.690667pt;}
._17{width:101.034667pt;}
._26{width:119.765333pt;}
._3b{width:122.120000pt;}
._1e{width:146.474667pt;}
._16{width:148.778667pt;}
._25{width:158.172267pt;}
._1d{width:163.029333pt;}
._44{width:212.309333pt;}
._23{width:234.112000pt;}
._2c{width:239.624000pt;}
._21{width:250.709333pt;}
._2d{width:261.680000pt;}
._20{width:262.570667pt;}
._1f{width:274.432000pt;}
._2a{width:304.360000pt;}
._38{width:310.240000pt;}
._3a{width:322.160000pt;}
._2b{width:341.920000pt;}
._32{width:384.472000pt;}
._37{width:387.280000pt;}
._36{width:395.040000pt;}
._35{width:406.160000pt;}
._33{width:431.032000pt;}
._31{width:446.440000pt;}
._47{width:449.109333pt;}
._45{width:479.018667pt;}
._3d{width:499.320000pt;}
._2f{width:508.160000pt;}
._29{width:527.120000pt;}
._34{width:544.760000pt;}
._43{width:589.610667pt;}
._28{width:597.680000pt;}
._42{width:601.472000pt;}
._27{width:604.117333pt;}
.fs3{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs8{font-size:40.000000pt;}
.fs9{font-size:41.411021pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:44.171793pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:55.214741pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:72.614000pt;}
.y87{bottom:72.614933pt;}
.y86{bottom:73.063067pt;}
.y12d{bottom:73.617067pt;}
.y12f{bottom:73.617733pt;}
.y16c{bottom:73.722933pt;}
.y130{bottom:73.910933pt;}
.y46{bottom:74.089467pt;}
.y12b{bottom:74.090267pt;}
.y29{bottom:74.216800pt;}
.y4c{bottom:74.561867pt;}
.yf9{bottom:74.850000pt;}
.y124{bottom:74.863467pt;}
.y133{bottom:74.981733pt;}
.yf7{bottom:75.223333pt;}
.ye4{bottom:75.611733pt;}
.y14b{bottom:75.612400pt;}
.y107{bottom:76.241600pt;}
.y99{bottom:82.063200pt;}
.y1a2{bottom:84.771200pt;}
.y84{bottom:86.394000pt;}
.y16b{bottom:87.056267pt;}
.y12c{bottom:87.611733pt;}
.y12e{bottom:87.612400pt;}
.y45{bottom:88.084133pt;}
.y12a{bottom:88.084933pt;}
.y4b{bottom:88.556533pt;}
.yf8{bottom:88.844667pt;}
.yf6{bottom:89.218000pt;}
.y95{bottom:95.842267pt;}
.y98{bottom:95.843200pt;}
.y97{bottom:95.845733pt;}
.y96{bottom:96.291467pt;}
.y129{bottom:97.618000pt;}
.y83{bottom:100.174000pt;}
.y16a{bottom:100.389600pt;}
.y1a1{bottom:100.771200pt;}
.y94{bottom:109.622267pt;}
.y169{bottom:113.722933pt;}
.y7f{bottom:113.948267pt;}
.y82{bottom:113.953467pt;}
.y81{bottom:113.956000pt;}
.y80{bottom:114.401733pt;}
.y1a0{bottom:116.771200pt;}
.y119{bottom:120.219600pt;}
.y93{bottom:123.402267pt;}
.y168{bottom:127.056267pt;}
.y7e{bottom:127.728267pt;}
.y1d{bottom:130.206133pt;}
.y19f{bottom:132.771200pt;}
.y115{bottom:134.658667pt;}
.y118{bottom:134.662267pt;}
.y117{bottom:134.664800pt;}
.y116{bottom:135.095867pt;}
.y8f{bottom:137.176667pt;}
.y92{bottom:137.181867pt;}
.y91{bottom:137.184267pt;}
.y90{bottom:137.630000pt;}
.y167{bottom:140.389600pt;}
.y7d{bottom:141.508267pt;}
.y19e{bottom:148.771200pt;}
.y114{bottom:149.101333pt;}
.y8e{bottom:150.956667pt;}
.y7c{bottom:155.288267pt;}
.y113{bottom:163.554667pt;}
.y8d{bottom:164.736667pt;}
.y19d{bottom:164.771200pt;}
.y7b{bottom:169.068267pt;}
.y166{bottom:170.114533pt;}
.y10f{bottom:177.986267pt;}
.y112{bottom:178.000800pt;}
.y111{bottom:178.003467pt;}
.y110{bottom:178.434400pt;}
.y8c{bottom:178.516667pt;}
.y19c{bottom:180.771200pt;}
.y25{bottom:181.443067pt;}
.y7a{bottom:182.848267pt;}
.y165{bottom:186.114533pt;}
.y8b{bottom:192.296667pt;}
.y10e{bottom:192.439600pt;}
.y79{bottom:196.628267pt;}
.y19b{bottom:196.771200pt;}
.y24{bottom:197.443067pt;}
.y8a{bottom:206.076667pt;}
.y10d{bottom:206.892933pt;}
.y19a{bottom:212.771200pt;}
.y23{bottom:213.443067pt;}
.y164{bottom:217.981200pt;}
.y78{bottom:220.528267pt;}
.y10c{bottom:221.346267pt;}
.y199{bottom:228.771200pt;}
.y22{bottom:229.443067pt;}
.y89{bottom:233.756667pt;}
.y163{bottom:233.981200pt;}
.y10b{bottom:235.788933pt;}
.y198{bottom:244.771200pt;}
.y21{bottom:245.443067pt;}
.yf1{bottom:247.852000pt;}
.y77{bottom:249.348667pt;}
.ye6{bottom:249.741067pt;}
.y162{bottom:249.981200pt;}
.y10a{bottom:250.231600pt;}
.y197{bottom:260.771200pt;}
.y20{bottom:261.443067pt;}
.ye5{bottom:262.594400pt;}
.y88{bottom:264.466667pt;}
.y161{bottom:265.981200pt;}
.y196{bottom:276.771200pt;}
.y1f{bottom:277.443067pt;}
.y109{bottom:278.242267pt;}
.y160{bottom:281.981200pt;}
.y76{bottom:285.556533pt;}
.y195{bottom:292.771200pt;}
.y26{bottom:293.443067pt;}
.y15f{bottom:297.981200pt;}
.y75{bottom:306.345867pt;}
.y194{bottom:308.771200pt;}
.y108{bottom:309.191067pt;}
.y1e{bottom:309.443067pt;}
.y15e{bottom:313.981200pt;}
.ye2{bottom:314.104533pt;}
.ybb{bottom:315.294000pt;}
.y74{bottom:320.788533pt;}
.y193{bottom:324.771200pt;}
.y15d{bottom:329.981200pt;}
.ye1{bottom:330.104533pt;}
.yba{bottom:331.294000pt;}
.y73{bottom:335.231200pt;}
.y192{bottom:340.771200pt;}
.y15c{bottom:345.981200pt;}
.ye0{bottom:346.104533pt;}
.yb9{bottom:347.294000pt;}
.y11f{bottom:348.635600pt;}
.y72{bottom:349.673867pt;}
.y191{bottom:356.771200pt;}
.y15b{bottom:361.981200pt;}
.ydf{bottom:362.104533pt;}
.y11e{bottom:362.630267pt;}
.yb8{bottom:363.294000pt;}
.y71{bottom:364.116533pt;}
.y1c{bottom:371.827467pt;}
.y190{bottom:372.771200pt;}
.y11d{bottom:376.624933pt;}
.y15a{bottom:377.981200pt;}
.yde{bottom:378.104533pt;}
.y70{bottom:378.559200pt;}
.yb7{bottom:379.294000pt;}
.y1b{bottom:385.160800pt;}
.y18f{bottom:388.771200pt;}
.y11c{bottom:390.619600pt;}
.y6f{bottom:393.001867pt;}
.y159{bottom:393.981200pt;}
.ydd{bottom:394.104533pt;}
.yb6{bottom:395.294000pt;}
.y11b{bottom:404.614267pt;}
.y18e{bottom:404.771200pt;}
.y6e{bottom:407.444533pt;}
.y158{bottom:409.981200pt;}
.ydc{bottom:410.104533pt;}
.yb5{bottom:411.294000pt;}
.yb4{bottom:411.669333pt;}
.y1a{bottom:414.366133pt;}
.y11a{bottom:418.608933pt;}
.y18d{bottom:420.771200pt;}
.y6d{bottom:421.887200pt;}
.y157{bottom:425.981200pt;}
.ydb{bottom:426.104533pt;}
.yb3{bottom:427.300533pt;}
.y19{bottom:427.699467pt;}
.y6c{bottom:436.329867pt;}
.y18c{bottom:436.771200pt;}
.y18{bottom:441.032800pt;}
.y156{bottom:441.981200pt;}
.yda{bottom:442.104533pt;}
.yb2{bottom:443.300533pt;}
.y6b{bottom:450.729867pt;}
.y18b{bottom:452.771200pt;}
.y121{bottom:454.307467pt;}
.y17{bottom:454.366133pt;}
.y123{bottom:457.050133pt;}
.y155{bottom:457.981200pt;}
.yd9{bottom:458.104533pt;}
.yb1{bottom:459.300533pt;}
.y6a{bottom:465.172533pt;}
.y16{bottom:467.699467pt;}
.y18a{bottom:468.771200pt;}
.y122{bottom:471.044800pt;}
.y154{bottom:473.981200pt;}
.yd8{bottom:474.104533pt;}
.yb0{bottom:475.300533pt;}
.y69{bottom:479.615200pt;}
.y15{bottom:481.032800pt;}
.y189{bottom:484.771200pt;}
.y153{bottom:489.981200pt;}
.yd7{bottom:490.104533pt;}
.yaf{bottom:491.300533pt;}
.y68{bottom:494.057867pt;}
.y14{bottom:494.366133pt;}
.y188{bottom:500.771200pt;}
.y152{bottom:505.981200pt;}
.yd6{bottom:506.104533pt;}
.yae{bottom:507.300533pt;}
.y13{bottom:507.699467pt;}
.y67{bottom:508.511200pt;}
.y187{bottom:516.771200pt;}
.y151{bottom:521.981200pt;}
.yd5{bottom:522.104533pt;}
.y66{bottom:522.953867pt;}
.yf2{bottom:523.291733pt;}
.yad{bottom:523.300533pt;}
.y186{bottom:532.771200pt;}
.y65{bottom:537.396533pt;}
.y150{bottom:537.981200pt;}
.yd4{bottom:538.104533pt;}
.yac{bottom:539.300533pt;}
.y185{bottom:548.771200pt;}
.y12{bottom:551.027467pt;}
.y64{bottom:551.839200pt;}
.y14f{bottom:553.981200pt;}
.yf0{bottom:553.996000pt;}
.yd3{bottom:554.104533pt;}
.yab{bottom:555.300533pt;}
.y126{bottom:559.665200pt;}
.y184{bottom:564.771200pt;}
.y63{bottom:566.281867pt;}
.y14e{bottom:569.981200pt;}
.y4a{bottom:570.101200pt;}
.yd2{bottom:570.104533pt;}
.y125{bottom:571.003867pt;}
.yaa{bottom:571.300533pt;}
.y62{bottom:580.724533pt;}
.y183{bottom:580.771200pt;}
.y11{bottom:581.694133pt;}
.y14d{bottom:585.981200pt;}
.y49{bottom:586.101200pt;}
.yd1{bottom:586.104533pt;}
.ya9{bottom:587.300533pt;}
.y61{bottom:595.167200pt;}
.y182{bottom:596.771200pt;}
.y10{bottom:600.021200pt;}
.y14c{bottom:601.981200pt;}
.y48{bottom:602.101200pt;}
.yd0{bottom:602.104533pt;}
.yed{bottom:602.476533pt;}
.ya8{bottom:603.300533pt;}
.y60{bottom:609.609867pt;}
.yf{bottom:611.027467pt;}
.y181{bottom:612.771200pt;}
.y44{bottom:617.981200pt;}
.y3d{bottom:618.101200pt;}
.ycf{bottom:618.104533pt;}
.ya7{bottom:619.300533pt;}
.y5f{bottom:624.052533pt;}
.y180{bottom:628.771200pt;}
.ye{bottom:629.354533pt;}
.y43{bottom:633.981200pt;}
.y3c{bottom:634.101200pt;}
.yce{bottom:634.104533pt;}
.yec{bottom:634.476533pt;}
.y5e{bottom:638.495200pt;}
.y1b6{bottom:639.056267pt;}
.yd{bottom:644.021200pt;}
.y1c2{bottom:644.389600pt;}
.y17f{bottom:644.771200pt;}
.ya6{bottom:649.167200pt;}
.y42{bottom:649.981200pt;}
.y3b{bottom:650.101200pt;}
.ycd{bottom:650.104533pt;}
.y142{bottom:650.224533pt;}
.y14a{bottom:650.237867pt;}
.y1b5{bottom:652.389600pt;}
.y5d{bottom:652.937867pt;}
.y1c1{bottom:657.722933pt;}
.yc{bottom:658.687867pt;}
.y17e{bottom:660.771200pt;}
.ya5{bottom:663.033867pt;}
.y1b4{bottom:665.722933pt;}
.y41{bottom:665.981200pt;}
.y3a{bottom:666.101200pt;}
.ycc{bottom:666.104533pt;}
.y141{bottom:666.224533pt;}
.y149{bottom:666.237867pt;}
.y132{bottom:666.476533pt;}
.y5c{bottom:667.391200pt;}
.yb{bottom:669.694133pt;}
.y1c0{bottom:671.056267pt;}
.y17d{bottom:676.771200pt;}
.y1b3{bottom:679.056267pt;}
.y120{bottom:679.192800pt;}
.y5b{bottom:681.844533pt;}
.y40{bottom:681.981200pt;}
.y39{bottom:682.101200pt;}
.ycb{bottom:682.104533pt;}
.y140{bottom:682.224533pt;}
.y148{bottom:682.237867pt;}
.y131{bottom:682.499867pt;}
.y1bf{bottom:684.389600pt;}
.ya{bottom:688.021200pt;}
.y1b2{bottom:692.389600pt;}
.y17c{bottom:692.771200pt;}
.ya4{bottom:692.900533pt;}
.y5a{bottom:696.297867pt;}
.y1be{bottom:697.722933pt;}
.y3f{bottom:697.981200pt;}
.y38{bottom:698.101200pt;}
.yca{bottom:698.104533pt;}
.y13f{bottom:698.224533pt;}
.y147{bottom:698.237867pt;}
.yef{bottom:698.476533pt;}
.y9{bottom:702.687867pt;}
.y1b1{bottom:705.722933pt;}
.y17b{bottom:708.771200pt;}
.ya3{bottom:708.900533pt;}
.y59{bottom:710.751200pt;}
.y1bd{bottom:711.056267pt;}
.y8{bottom:713.694133pt;}
.y37{bottom:714.101200pt;}
.yc9{bottom:714.104533pt;}
.y13e{bottom:714.224533pt;}
.y146{bottom:714.237867pt;}
.y1b0{bottom:719.056267pt;}
.y1bc{bottom:724.389600pt;}
.y17a{bottom:724.771200pt;}
.ya2{bottom:724.900533pt;}
.y58{bottom:725.204533pt;}
.y3e{bottom:729.981200pt;}
.y36{bottom:730.101200pt;}
.y105{bottom:730.101333pt;}
.yc8{bottom:730.104533pt;}
.y13d{bottom:730.224533pt;}
.y145{bottom:730.237867pt;}
.yeb{bottom:730.476533pt;}
.y104{bottom:730.476667pt;}
.y7{bottom:732.021200pt;}
.y1af{bottom:732.389600pt;}
.y1bb{bottom:737.722933pt;}
.y57{bottom:739.657867pt;}
.y179{bottom:740.771200pt;}
.ye9{bottom:745.344667pt;}
.yea{bottom:745.346667pt;}
.y1ae{bottom:745.722933pt;}
.y35{bottom:746.101200pt;}
.yc7{bottom:746.104533pt;}
.y13c{bottom:746.224533pt;}
.y144{bottom:746.237867pt;}
.ye8{bottom:746.476533pt;}
.y6{bottom:746.687867pt;}
.y1ba{bottom:751.056267pt;}
.y56{bottom:754.111200pt;}
.ya1{bottom:756.389733pt;}
.y178{bottom:756.771200pt;}
.y1ad{bottom:759.056267pt;}
.y5{bottom:760.260267pt;}
.y34{bottom:762.101200pt;}
.y102{bottom:762.101333pt;}
.yc6{bottom:762.104533pt;}
.y13b{bottom:762.224533pt;}
.ye7{bottom:762.476533pt;}
.y103{bottom:762.476667pt;}
.y1b9{bottom:764.389600pt;}
.y127{bottom:764.699867pt;}
.y55{bottom:768.564533pt;}
.ya0{bottom:769.723067pt;}
.y1ac{bottom:772.389600pt;}
.y177{bottom:772.771200pt;}
.y1b8{bottom:777.722933pt;}
.y33{bottom:778.101200pt;}
.y101{bottom:778.101333pt;}
.yc5{bottom:778.104533pt;}
.y13a{bottom:778.224533pt;}
.y143{bottom:778.237867pt;}
.y4{bottom:780.925600pt;}
.y54{bottom:783.017867pt;}
.y9f{bottom:783.056400pt;}
.y1ab{bottom:785.722933pt;}
.y1b7{bottom:791.056267pt;}
.y32{bottom:794.101200pt;}
.y100{bottom:794.101333pt;}
.yc4{bottom:794.104533pt;}
.y139{bottom:794.224533pt;}
.yf5{bottom:794.476533pt;}
.y106{bottom:794.476667pt;}
.y9e{bottom:796.389733pt;}
.y53{bottom:797.471200pt;}
.y128{bottom:797.766533pt;}
.y1aa{bottom:799.056267pt;}
.y176{bottom:804.389600pt;}
.y3{bottom:805.266400pt;}
.y31{bottom:810.101200pt;}
.yff{bottom:810.101333pt;}
.yc3{bottom:810.104533pt;}
.y138{bottom:810.224533pt;}
.yf4{bottom:810.476533pt;}
.y52{bottom:811.924533pt;}
.y1a9{bottom:812.389600pt;}
.y175{bottom:817.722933pt;}
.y1a8{bottom:825.722933pt;}
.y30{bottom:826.101200pt;}
.y9d{bottom:826.101333pt;}
.yc2{bottom:826.104533pt;}
.y137{bottom:826.224533pt;}
.y2{bottom:829.271733pt;}
.y174{bottom:831.056267pt;}
.y51{bottom:833.929867pt;}
.y1a7{bottom:839.056267pt;}
.y2f{bottom:842.101200pt;}
.yfe{bottom:842.101333pt;}
.yc1{bottom:842.104533pt;}
.y136{bottom:842.224533pt;}
.yf3{bottom:842.476533pt;}
.y173{bottom:844.389600pt;}
.y1a6{bottom:852.389600pt;}
.y1{bottom:853.277067pt;}
.y50{bottom:855.935200pt;}
.y172{bottom:857.722933pt;}
.y9c{bottom:857.981333pt;}
.y2e{bottom:858.101200pt;}
.yfd{bottom:858.101333pt;}
.yc0{bottom:858.104533pt;}
.y135{bottom:858.224533pt;}
.yee{bottom:858.476533pt;}
.y1a5{bottom:865.722933pt;}
.y171{bottom:871.056267pt;}
.y2d{bottom:874.101200pt;}
.yfc{bottom:874.101333pt;}
.ybf{bottom:874.104533pt;}
.y4f{bottom:877.940533pt;}
.y1a4{bottom:879.056267pt;}
.y170{bottom:884.389600pt;}
.y2c{bottom:890.101200pt;}
.yfb{bottom:890.101333pt;}
.ybe{bottom:890.104533pt;}
.y134{bottom:890.224533pt;}
.y1a3{bottom:892.389600pt;}
.y16f{bottom:897.722933pt;}
.y4e{bottom:904.771200pt;}
.y2b{bottom:906.101200pt;}
.y9b{bottom:906.101333pt;}
.ye3{bottom:906.104533pt;}
.ybd{bottom:906.107333pt;}
.yfa{bottom:906.476667pt;}
.y16e{bottom:911.056267pt;}
.y2a{bottom:922.101200pt;}
.y9a{bottom:922.101333pt;}
.y4d{bottom:922.104533pt;}
.ybc{bottom:922.107333pt;}
.y16d{bottom:924.389600pt;}
.y28{bottom:951.795067pt;}
.y47{bottom:965.392400pt;}
.y27{bottom:965.395067pt;}
.h5{height:18.662500pt;}
.hf{height:28.753160pt;}
.h10{height:29.140625pt;}
.he{height:29.160156pt;}
.h16{height:30.670063pt;}
.h7{height:31.062500pt;}
.h17{height:31.083333pt;}
.h6{height:31.104167pt;}
.hd{height:31.274833pt;}
.ha{height:33.048177pt;}
.h11{height:38.337579pt;}
.h8{height:38.828125pt;}
.hb{height:38.854167pt;}
.h9{height:38.880208pt;}
.h12{height:38.893542pt;}
.hc{height:41.619700pt;}
.h15{height:41.872300pt;}
.h14{height:41.898342pt;}
.h13{height:41.906342pt;}
.h4{height:45.776550pt;}
.h3{height:45.781883pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:66.673867pt;}
.xa{left:68.031467pt;}
.x16{left:69.899467pt;}
.x63{left:77.346133pt;}
.x8{left:85.417333pt;}
.x1{left:86.929200pt;}
.x23{left:88.818800pt;}
.x39{left:93.875733pt;}
.x33{left:95.602000pt;}
.x30{left:96.748667pt;}
.xb{left:98.284800pt;}
.x2{left:111.501733pt;}
.x66{left:113.382533pt;}
.x43{left:114.897600pt;}
.x5{left:117.170133pt;}
.x3{left:143.619067pt;}
.x15{left:161.174133pt;}
.x34{left:169.735333pt;}
.x65{left:176.780133pt;}
.x4a{left:180.256133pt;}
.x3a{left:183.799200pt;}
.x4{left:189.223467pt;}
.x31{left:191.602000pt;}
.x61{left:195.023600pt;}
.x32{left:203.082000pt;}
.x2f{left:204.315733pt;}
.x2e{left:206.542400pt;}
.x17{left:208.745467pt;}
.x22{left:209.761200pt;}
.x18{left:216.624000pt;}
.x52{left:220.016133pt;}
.x51{left:221.102267pt;}
.x19{left:223.945600pt;}
.x53{left:226.659600pt;}
.x55{left:228.420000pt;}
.x1a{left:230.173867pt;}
.x64{left:233.819333pt;}
.x24{left:235.202133pt;}
.x1b{left:237.495467pt;}
.x36{left:239.527467pt;}
.x25{left:241.430267pt;}
.x1c{left:243.723600pt;}
.x4b{left:250.567467pt;}
.x26{left:251.530267pt;}
.x3d{left:254.558133pt;}
.x2c{left:255.958800pt;}
.x27{left:257.758400pt;}
.x4c{left:258.871733pt;}
.x59{left:260.787333pt;}
.x2d{left:263.837467pt;}
.x3e{left:265.239200pt;}
.x14{left:280.800800pt;}
.x13{left:328.064800pt;}
.x3b{left:347.840133pt;}
.x35{left:355.172933pt;}
.x3c{left:356.144267pt;}
.x28{left:363.706000pt;}
.x4d{left:364.799600pt;}
.x38{left:374.598667pt;}
.x1d{left:397.721867pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x56{left:414.334533pt;}
.x44{left:417.404267pt;}
.x3f{left:423.839333pt;}
.x10{left:425.209200pt;}
.x6{left:427.103467pt;}
.x40{left:432.143467pt;}
.xd{left:436.551467pt;}
.x4e{left:442.481600pt;}
.x5b{left:445.982000pt;}
.x4f{left:451.281067pt;}
.x11{left:455.449200pt;}
.x7{left:457.343467pt;}
.xe{left:466.924800pt;}
.x29{left:477.219067pt;}
.x5c{left:482.835333pt;}
.x41{left:488.690667pt;}
.x1e{left:490.447467pt;}
.x2a{left:492.210000pt;}
.x42{left:496.994933pt;}
.x1f{left:503.548667pt;}
.x47{left:508.084400pt;}
.x48{left:539.529200pt;}
.x49{left:550.356667pt;}
.x37{left:571.186133pt;}
.x54{left:575.291733pt;}
.x5d{left:579.652000pt;}
.x5e{left:588.165733pt;}
.x5a{left:589.608667pt;}
.x45{left:593.232133pt;}
.x20{left:601.943600pt;}
.x46{left:604.076667pt;}
.x2b{left:605.723067pt;}
.x21{left:620.714000pt;}
.x50{left:637.449067pt;}
.xf{left:643.752133pt;}
.x57{left:656.222533pt;}
.x58{left:657.187867pt;}
.x12{left:662.649733pt;}
.x5f{left:678.590133pt;}
.x60{left:689.304400pt;}
}




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