
    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_f136e3ffedb0cf51793313ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_bfb04df1677a8ba8b4c647bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_cc757f5d87b6aa58658e3147.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_33955b8822d51fbfeb1990e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9654bacd9778c8979c55209c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;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_0e1a1c27731d48a504e5577a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bc94a883e7f413143c4c2bef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.179000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a2bc9ebe07f0d2ddc374a899.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3b6a0e21dd78e3dc2040bfa6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0cfebe92b54a960c0939055d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5652b3943e9f7f16937097ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ddc1aa7d695fdeccf4a2de84.woff2')format("woff");}.fff{font-family:fff;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_137a419ab50383c37d819473.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2cefc4046a937d801db720a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.667000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bf1b1f164fabb8e2cd8e245a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-19.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:42.012000px;}
.v3{vertical-align:56.976000px;}
.ls6{letter-spacing:-4.608000px;}
.lsf{letter-spacing:-3.360000px;}
.ls20{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-1.680000px;}
.ls1b{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-1.200000px;}
.ls21{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.816000px;}
.ls11{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.672000px;}
.lsa{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.196800px;}
.ls4{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.911955px;}
.ls1a{letter-spacing:0.960000px;}
.ls13{letter-spacing:3.211200px;}
.ls18{letter-spacing:4.852800px;}
.ls19{letter-spacing:7.113584px;}
.ls14{letter-spacing:7.492791px;}
.ls1f{letter-spacing:8.116770px;}
.ls1c{letter-spacing:11.092777px;}
.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;}
}
.ws43{word-spacing:-15.540000px;}
.wse1{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.420000px;}
.ws1ac{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.120000px;}
.wse6{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws18a{word-spacing:-11.280000px;}
.ws1a8{word-spacing:-10.992000px;}
.ws143{word-spacing:-10.800000px;}
.ws158{word-spacing:-10.320000px;}
.ws2{word-spacing:-9.408000px;}
.ws12a{word-spacing:-9.216000px;}
.ws101{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.ws104{word-spacing:-7.740000px;}
.ws9b{word-spacing:-3.600000px;}
.ws9c{word-spacing:-1.920000px;}
.ws1d{word-spacing:-1.890000px;}
.ws2d{word-spacing:-1.440000px;}
.ws74{word-spacing:-1.380000px;}
.wsec{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.260000px;}
.wsf{word-spacing:-1.200000px;}
.ws29{word-spacing:-1.020000px;}
.ws167{word-spacing:-1.008000px;}
.wsc0{word-spacing:-0.960000px;}
.ws180{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.840000px;}
.ws1a5{word-spacing:-0.816000px;}
.ws84{word-spacing:-0.780000px;}
.ws16e{word-spacing:-0.672000px;}
.wsbb{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.600000px;}
.ws17c{word-spacing:-0.576000px;}
.ws42{word-spacing:-0.540000px;}
.ws18b{word-spacing:-0.528000px;}
.ws16{word-spacing:-0.480000px;}
.ws1a9{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.420000px;}
.ws141{word-spacing:-0.384000px;}
.wsa9{word-spacing:-0.360000px;}
.ws140{word-spacing:-0.336000px;}
.ws73{word-spacing:-0.300000px;}
.ws135{word-spacing:-0.288000px;}
.ws78{word-spacing:-0.240000px;}
.ws189{word-spacing:-0.192000px;}
.ws18{word-spacing:-0.180000px;}
.ws1a2{word-spacing:-0.144000px;}
.wse3{word-spacing:-0.120000px;}
.ws147{word-spacing:-0.096000px;}
.ws102{word-spacing:-0.072000px;}
.ws89{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws14b{word-spacing:0.048000px;}
.ws37{word-spacing:0.060000px;}
.ws12b{word-spacing:0.096000px;}
.ws83{word-spacing:0.120000px;}
.ws12c{word-spacing:0.144000px;}
.ws36{word-spacing:0.180000px;}
.ws16b{word-spacing:0.192000px;}
.ws2f{word-spacing:0.240000px;}
.ws1ae{word-spacing:0.288000px;}
.ws31{word-spacing:0.300000px;}
.ws17d{word-spacing:0.336000px;}
.wscf{word-spacing:0.360000px;}
.ws1a6{word-spacing:0.432000px;}
.ws1a{word-spacing:0.480000px;}
.ws1af{word-spacing:0.528000px;}
.ws6c{word-spacing:0.540000px;}
.ws15f{word-spacing:0.576000px;}
.ws32{word-spacing:0.600000px;}
.ws162{word-spacing:0.624000px;}
.ws87{word-spacing:0.660000px;}
.ws155{word-spacing:0.672000px;}
.ws166{word-spacing:0.720000px;}
.ws157{word-spacing:0.768000px;}
.ws6f{word-spacing:0.780000px;}
.ws161{word-spacing:0.816000px;}
.ws48{word-spacing:0.840000px;}
.ws13a{word-spacing:0.864000px;}
.ws85{word-spacing:0.900000px;}
.ws156{word-spacing:0.912000px;}
.ws59{word-spacing:0.960000px;}
.ws192{word-spacing:1.008000px;}
.ws41{word-spacing:1.020000px;}
.wsc3{word-spacing:1.080000px;}
.ws177{word-spacing:1.104000px;}
.wse4{word-spacing:1.140000px;}
.ws193{word-spacing:1.152000px;}
.ws49{word-spacing:1.200000px;}
.ws19f{word-spacing:1.248000px;}
.ws38{word-spacing:1.260000px;}
.wsc4{word-spacing:1.320000px;}
.ws173{word-spacing:1.344000px;}
.ws4d{word-spacing:1.380000px;}
.ws17f{word-spacing:1.392000px;}
.ws134{word-spacing:1.440000px;}
.wsb3{word-spacing:1.500000px;}
.ws187{word-spacing:1.536000px;}
.ws26{word-spacing:1.560000px;}
.ws151{word-spacing:1.584000px;}
.ws3c{word-spacing:1.620000px;}
.ws186{word-spacing:1.632000px;}
.ws65{word-spacing:1.680000px;}
.ws175{word-spacing:1.728000px;}
.ws34{word-spacing:1.740000px;}
.ws132{word-spacing:1.776000px;}
.wsa8{word-spacing:1.800000px;}
.ws15e{word-spacing:1.824000px;}
.wsc8{word-spacing:1.860000px;}
.ws19b{word-spacing:1.872000px;}
.wsee{word-spacing:1.920000px;}
.ws144{word-spacing:1.968000px;}
.ws4c{word-spacing:1.980000px;}
.ws13d{word-spacing:2.016000px;}
.ws6a{word-spacing:2.040000px;}
.ws16d{word-spacing:2.064000px;}
.ws8a{word-spacing:2.100000px;}
.ws1a4{word-spacing:2.112000px;}
.ws7f{word-spacing:2.160000px;}
.ws3a{word-spacing:2.220000px;}
.ws15d{word-spacing:2.256000px;}
.ws70{word-spacing:2.280000px;}
.ws16f{word-spacing:2.304000px;}
.ws35{word-spacing:2.340000px;}
.ws160{word-spacing:2.352000px;}
.ws12{word-spacing:2.400000px;}
.ws130{word-spacing:2.448000px;}
.wsc2{word-spacing:2.460000px;}
.ws181{word-spacing:2.496000px;}
.ws88{word-spacing:2.520000px;}
.ws133{word-spacing:2.544000px;}
.ws20{word-spacing:2.580000px;}
.wse0{word-spacing:2.592000px;}
.ws4a{word-spacing:2.640000px;}
.ws153{word-spacing:2.688000px;}
.ws39{word-spacing:2.700000px;}
.ws1a3{word-spacing:2.736000px;}
.wsfd{word-spacing:2.760000px;}
.ws3f{word-spacing:2.820000px;}
.ws1ad{word-spacing:2.832000px;}
.ws8e{word-spacing:2.880000px;}
.ws14d{word-spacing:2.928000px;}
.ws191{word-spacing:2.976000px;}
.wsac{word-spacing:3.000000px;}
.ws7e{word-spacing:3.060000px;}
.ws1ab{word-spacing:3.072000px;}
.wsb5{word-spacing:3.120000px;}
.ws16c{word-spacing:3.168000px;}
.wsfb{word-spacing:3.180000px;}
.ws4b{word-spacing:3.240000px;}
.ws19d{word-spacing:3.264000px;}
.ws79{word-spacing:3.300000px;}
.ws149{word-spacing:3.312000px;}
.ws7a{word-spacing:3.360000px;}
.ws185{word-spacing:3.408000px;}
.ws28{word-spacing:3.420000px;}
.ws53{word-spacing:3.480000px;}
.ws169{word-spacing:3.504000px;}
.ws9{word-spacing:3.540000px;}
.ws19a{word-spacing:3.552000px;}
.wsbf{word-spacing:3.600000px;}
.ws182{word-spacing:3.648000px;}
.wsf7{word-spacing:3.660000px;}
.ws46{word-spacing:3.720000px;}
.ws139{word-spacing:3.744000px;}
.wsaa{word-spacing:3.780000px;}
.wsba{word-spacing:3.840000px;}
.ws14c{word-spacing:3.888000px;}
.ws57{word-spacing:3.900000px;}
.ws168{word-spacing:3.936000px;}
.wsaf{word-spacing:3.960000px;}
.ws194{word-spacing:3.984000px;}
.wse{word-spacing:4.020000px;}
.ws16a{word-spacing:4.032000px;}
.ws30{word-spacing:4.080000px;}
.ws1b0{word-spacing:4.128000px;}
.ws2a{word-spacing:4.140000px;}
.ws2b{word-spacing:4.200000px;}
.ws170{word-spacing:4.224000px;}
.ws96{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws1f{word-spacing:4.380000px;}
.ws15{word-spacing:4.440000px;}
.ws13e{word-spacing:4.464000px;}
.wsdd{word-spacing:4.500000px;}
.ws14a{word-spacing:4.512000px;}
.ws8c{word-spacing:4.560000px;}
.ws197{word-spacing:4.608000px;}
.ws5a{word-spacing:4.620000px;}
.ws19c{word-spacing:4.656000px;}
.wsed{word-spacing:4.680000px;}
.ws82{word-spacing:4.740000px;}
.ws131{word-spacing:4.752000px;}
.ws6d{word-spacing:4.800000px;}
.wsa4{word-spacing:4.860000px;}
.ws1a1{word-spacing:4.896000px;}
.ws64{word-spacing:4.920000px;}
.ws13f{word-spacing:4.944000px;}
.ws58{word-spacing:4.980000px;}
.ws18e{word-spacing:4.992000px;}
.wsa{word-spacing:5.040000px;}
.ws174{word-spacing:5.088000px;}
.ws90{word-spacing:5.100000px;}
.ws47{word-spacing:5.160000px;}
.ws45{word-spacing:5.220000px;}
.wse5{word-spacing:5.232000px;}
.ws10{word-spacing:5.280000px;}
.ws17b{word-spacing:5.328000px;}
.wsda{word-spacing:5.340000px;}
.ws13{word-spacing:5.400000px;}
.ws1aa{word-spacing:5.424000px;}
.wsab{word-spacing:5.460000px;}
.ws163{word-spacing:5.472000px;}
.ws1e{word-spacing:5.520000px;}
.ws195{word-spacing:5.568000px;}
.ws91{word-spacing:5.580000px;}
.ws1a7{word-spacing:5.616000px;}
.ws99{word-spacing:5.640000px;}
.ws178{word-spacing:5.664000px;}
.wsad{word-spacing:5.700000px;}
.ws1a0{word-spacing:5.712000px;}
.ws14{word-spacing:5.760000px;}
.ws152{word-spacing:5.808000px;}
.ws55{word-spacing:5.820000px;}
.ws148{word-spacing:5.856000px;}
.ws11{word-spacing:5.880000px;}
.wseb{word-spacing:5.940000px;}
.ws2c{word-spacing:6.000000px;}
.ws188{word-spacing:6.048000px;}
.ws61{word-spacing:6.060000px;}
.ws176{word-spacing:6.096000px;}
.wsb4{word-spacing:6.120000px;}
.ws146{word-spacing:6.144000px;}
.wsc1{word-spacing:6.180000px;}
.ws190{word-spacing:6.192000px;}
.ws77{word-spacing:6.240000px;}
.ws4f{word-spacing:6.300000px;}
.wsc{word-spacing:6.360000px;}
.ws9d{word-spacing:6.420000px;}
.ws137{word-spacing:6.432000px;}
.ws69{word-spacing:6.480000px;}
.ws18d{word-spacing:6.528000px;}
.wsa6{word-spacing:6.540000px;}
.ws18f{word-spacing:6.576000px;}
.ws56{word-spacing:6.600000px;}
.ws3e{word-spacing:6.660000px;}
.ws5b{word-spacing:6.720000px;}
.wsdf{word-spacing:6.780000px;}
.wsf9{word-spacing:6.840000px;}
.ws159{word-spacing:6.864000px;}
.ws98{word-spacing:6.900000px;}
.ws12f{word-spacing:6.912000px;}
.wsd0{word-spacing:6.960000px;}
.ws6b{word-spacing:7.020000px;}
.ws4e{word-spacing:7.080000px;}
.wsb1{word-spacing:7.140000px;}
.ws12d{word-spacing:7.152000px;}
.ws5d{word-spacing:7.200000px;}
.ws179{word-spacing:7.248000px;}
.ws54{word-spacing:7.260000px;}
.ws15b{word-spacing:7.296000px;}
.ws3d{word-spacing:7.320000px;}
.ws51{word-spacing:7.380000px;}
.ws14f{word-spacing:7.488000px;}
.ws19{word-spacing:7.500000px;}
.ws95{word-spacing:7.560000px;}
.ws15a{word-spacing:7.584000px;}
.wsf8{word-spacing:7.620000px;}
.ws145{word-spacing:7.632000px;}
.wsf5{word-spacing:7.680000px;}
.ws17{word-spacing:7.740000px;}
.ws33{word-spacing:7.800000px;}
.ws3b{word-spacing:7.860000px;}
.ws196{word-spacing:7.872000px;}
.ws75{word-spacing:7.920000px;}
.ws142{word-spacing:7.968000px;}
.ws17a{word-spacing:8.016000px;}
.wsde{word-spacing:8.040000px;}
.wsc5{word-spacing:8.100000px;}
.ws138{word-spacing:8.112000px;}
.wsa7{word-spacing:8.160000px;}
.ws1b1{word-spacing:8.208000px;}
.ws92{word-spacing:8.220000px;}
.ws172{word-spacing:8.304000px;}
.ws72{word-spacing:8.340000px;}
.ws68{word-spacing:8.400000px;}
.wsb8{word-spacing:8.460000px;}
.ws165{word-spacing:8.496000px;}
.ws93{word-spacing:8.520000px;}
.ws150{word-spacing:8.544000px;}
.ws199{word-spacing:8.592000px;}
.wsd9{word-spacing:8.640000px;}
.wsd{word-spacing:8.700000px;}
.ws6e{word-spacing:8.760000px;}
.ws22{word-spacing:8.820000px;}
.wsb2{word-spacing:8.880000px;}
.ws154{word-spacing:8.928000px;}
.ws5c{word-spacing:8.940000px;}
.ws52{word-spacing:9.000000px;}
.ws136{word-spacing:9.072000px;}
.wsf3{word-spacing:9.120000px;}
.wsc9{word-spacing:9.180000px;}
.ws171{word-spacing:9.216000px;}
.wscc{word-spacing:9.300000px;}
.ws12e{word-spacing:9.312000px;}
.ws44{word-spacing:9.420000px;}
.ws8d{word-spacing:9.480000px;}
.wsce{word-spacing:9.540000px;}
.ws183{word-spacing:9.552000px;}
.ws71{word-spacing:9.660000px;}
.ws13c{word-spacing:9.792000px;}
.ws81{word-spacing:9.840000px;}
.wsdc{word-spacing:9.900000px;}
.wsf2{word-spacing:9.960000px;}
.ws2e{word-spacing:10.020000px;}
.ws5f{word-spacing:10.080000px;}
.ws40{word-spacing:10.140000px;}
.ws164{word-spacing:10.176000px;}
.ws80{word-spacing:10.200000px;}
.ws13b{word-spacing:10.224000px;}
.ws5e{word-spacing:10.260000px;}
.ws14e{word-spacing:10.272000px;}
.wsf1{word-spacing:10.320000px;}
.ws9e{word-spacing:10.380000px;}
.wsef{word-spacing:10.560000px;}
.ws17e{word-spacing:10.608000px;}
.wsb0{word-spacing:10.620000px;}
.wscb{word-spacing:10.680000px;}
.wsbd{word-spacing:10.740000px;}
.ws15c{word-spacing:10.800000px;}
.ws9a{word-spacing:10.920000px;}
.ws184{word-spacing:10.944000px;}
.wse2{word-spacing:10.980000px;}
.wsb7{word-spacing:11.040000px;}
.ws24{word-spacing:11.100000px;}
.ws18c{word-spacing:11.136000px;}
.wsa1{word-spacing:11.160000px;}
.ws97{word-spacing:11.220000px;}
.ws7c{word-spacing:11.280000px;}
.ws198{word-spacing:11.328000px;}
.ws25{word-spacing:11.400000px;}
.ws8b{word-spacing:11.520000px;}
.ws23{word-spacing:11.640000px;}
.wsc7{word-spacing:11.760000px;}
.wsfa{word-spacing:11.820000px;}
.ws8f{word-spacing:11.880000px;}
.ws8{word-spacing:11.940000px;}
.ws86{word-spacing:12.000000px;}
.wsfe{word-spacing:12.060000px;}
.wsf6{word-spacing:12.240000px;}
.wsc6{word-spacing:12.300000px;}
.wscd{word-spacing:12.480000px;}
.wsdb{word-spacing:12.600000px;}
.wsa5{word-spacing:12.660000px;}
.wsca{word-spacing:12.780000px;}
.wsb{word-spacing:12.900000px;}
.wsa0{word-spacing:12.960000px;}
.ws66{word-spacing:13.680000px;}
.ws63{word-spacing:13.740000px;}
.ws7b{word-spacing:13.800000px;}
.wsb6{word-spacing:13.920000px;}
.ws19e{word-spacing:14.448000px;}
.ws76{word-spacing:14.460000px;}
.wsb9{word-spacing:14.880000px;}
.wsf0{word-spacing:15.120000px;}
.ws94{word-spacing:15.180000px;}
.wsfc{word-spacing:15.720000px;}
.wsbe{word-spacing:15.780000px;}
.ws67{word-spacing:15.840000px;}
.wsbc{word-spacing:15.960000px;}
.wsa2{word-spacing:16.380000px;}
.ws9f{word-spacing:16.920000px;}
.wsf4{word-spacing:17.340000px;}
.ws7d{word-spacing:17.400000px;}
.wsae{word-spacing:17.460000px;}
.wsa3{word-spacing:18.300000px;}
.ws106{word-spacing:25.488000px;}
.ws100{word-spacing:43.451992px;}
.ws125{word-spacing:49.392000px;}
.ws117{word-spacing:51.984000px;}
.ws10c{word-spacing:54.720000px;}
.ws10d{word-spacing:57.360000px;}
.ws112{word-spacing:60.000000px;}
.ws10a{word-spacing:60.048000px;}
.ws127{word-spacing:60.528000px;}
.ws114{word-spacing:61.248000px;}
.ws108{word-spacing:62.688000px;}
.ws118{word-spacing:62.880000px;}
.ws111{word-spacing:63.888000px;}
.ws122{word-spacing:63.936000px;}
.ws113{word-spacing:65.328000px;}
.ws10b{word-spacing:65.376000px;}
.ws126{word-spacing:66.144000px;}
.ws11f{word-spacing:66.240000px;}
.ws109{word-spacing:67.968000px;}
.ws129{word-spacing:68.016000px;}
.ws11e{word-spacing:68.928000px;}
.ws10e{word-spacing:70.704000px;}
.ws1b{word-spacing:73.056000px;}
.ws121{word-spacing:73.296000px;}
.ws110{word-spacing:73.344000px;}
.ws11c{word-spacing:73.392000px;}
.ws11b{word-spacing:73.488000px;}
.ws119{word-spacing:76.128000px;}
.ws116{word-spacing:76.752000px;}
.wsd5{word-spacing:77.568000px;}
.ws115{word-spacing:78.672000px;}
.ws11a{word-spacing:81.360000px;}
.wse7{word-spacing:83.568000px;}
.ws10f{word-spacing:84.048000px;}
.ws124{word-spacing:86.688000px;}
.ws11d{word-spacing:92.064000px;}
.wse8{word-spacing:94.224000px;}
.wsea{word-spacing:99.552000px;}
.wse9{word-spacing:102.192000px;}
.wsd4{word-spacing:126.912000px;}
.wsd6{word-spacing:149.568000px;}
.ws107{word-spacing:153.360000px;}
.ws105{word-spacing:171.640225px;}
.wsd1{word-spacing:180.240000px;}
.wsd2{word-spacing:190.128000px;}
.wsd7{word-spacing:209.568000px;}
.wsff{word-spacing:217.655995px;}
.wsd3{word-spacing:270.816000px;}
.wsd8{word-spacing:329.615980px;}
.ws103{word-spacing:463.427971px;}
.ws120{word-spacing:1049.039979px;}
.ws123{word-spacing:1049.183979px;}
.ws128{word-spacing:1050.575979px;}
._4{margin-left:-15.600000px;}
._11{margin-left:-11.088693px;}
._3e{margin-left:-8.496000px;}
._e{margin-left:-7.116000px;}
._13{margin-left:-5.687400px;}
._3{margin-left:-4.380600px;}
._2{margin-left:-2.844600px;}
._0{margin-left:-1.632000px;}
._1{width:1.920600px;}
._8{width:3.654000px;}
._9{width:5.046000px;}
._d{width:6.234600px;}
._a{width:7.944000px;}
._f{width:9.144000px;}
._10{width:11.406000px;}
._b{width:13.260600px;}
._14{width:14.784000px;}
._c{width:15.966600px;}
._12{width:18.024001px;}
._5{width:22.320000px;}
._18{width:36.335980px;}
._44{width:37.344000px;}
._f4{width:53.376000px;}
._6{width:56.255991px;}
._df{width:61.392000px;}
._dc{width:64.032000px;}
._e1{width:66.720000px;}
._28{width:70.213840px;}
._f9{width:72.048000px;}
._113{width:73.632000px;}
._56{width:74.688000px;}
._d0{width:76.320000px;}
._a6{width:77.328000px;}
._46{width:80.016000px;}
._87{width:82.704000px;}
._8f{width:85.344000px;}
._27{width:86.887836px;}
._af{width:88.032000px;}
._43{width:91.583995px;}
._30{width:94.608020px;}
._1e{width:96.383980px;}
._2d{width:98.592000px;}
._2b{width:100.896000px;}
._23{width:103.392000px;}
._2a{width:106.224000px;}
._32{width:108.864000px;}
._2f{width:111.504000px;}
._34{width:114.528000px;}
._22{width:116.256000px;}
._2c{width:119.232000px;}
._31{width:120.383980px;}
._2e{width:122.064000px;}
._19{width:123.120000px;}
._38{width:132.912000px;}
._41{width:134.459992px;}
._15{width:154.938000px;}
._35{width:160.080000px;}
._4a{width:165.360000px;}
._40{width:176.472595px;}
._24{width:182.688000px;}
._29{width:184.080000px;}
._3d{width:188.208000px;}
._3a{width:189.551980px;}
._37{width:193.920000px;}
._1c{width:195.120000px;}
._39{width:196.560000px;}
._33{width:199.344000px;}
._36{width:202.032000px;}
._3c{width:208.175980px;}
._16{width:213.900600px;}
._17{width:216.540600px;}
._1b{width:220.319980px;}
._3b{width:221.567980px;}
._47{width:252.336000px;}
._10d{width:260.616579px;}
._ed{width:267.852579px;}
._49{width:276.336000px;}
._3f{width:283.860000px;}
._1a{width:285.552000px;}
._1f{width:288.000000px;}
._25{width:291.360000px;}
._fb{width:297.791379px;}
._4c{width:300.336000px;}
._26{width:312.240000px;}
._53{width:324.336000px;}
._fa{width:328.127379px;}
._e2{width:333.323979px;}
._21{width:348.191980px;}
._42{width:356.003993px;}
._1d{width:357.552000px;}
._107{width:370.044579px;}
._b3{width:384.383979px;}
._109{width:391.465179px;}
._20{width:417.552000px;}
._ec{width:418.968579px;}
._de{width:436.716579px;}
._ea{width:445.535979px;}
._b8{width:452.652579px;}
._ce{width:460.367979px;}
._cd{width:463.007979px;}
._fc{width:469.932579px;}
._10c{width:471.372579px;}
._104{width:481.788579px;}
._e5{width:511.882140px;}
._10f{width:513.407379px;}
._e7{width:538.763979px;}
._b4{width:554.015979px;}
._cc{width:561.455979px;}
._114{width:566.111379px;}
._ee{width:572.904579px;}
._89{width:577.439979px;}
._91{width:580.751979px;}
._ef{width:582.287979px;}
._a7{width:589.080579px;}
._b0{width:591.575979px;}
._f3{width:593.221779px;}
._10e{width:595.487379px;}
._110{width:596.650140px;}
._115{width:598.319400px;}
._105{width:603.755979px;}
._f1{width:606.504579px;}
._116{width:611.232000px;}
._75{width:615.096579px;}
._111{width:630.009540px;}
._118{width:638.976000px;}
._112{width:645.131979px;}
._108{width:663.023979px;}
._dd{width:664.825179px;}
._10b{width:671.855379px;}
._52{width:678.025179px;}
._cb{width:687.359979px;}
._f5{width:688.847379px;}
._fd{width:690.815979px;}
._4f{width:699.829779px;}
._f7{width:702.287379px;}
._4d{width:704.953179px;}
._106{width:708.444579px;}
._f6{width:709.596579px;}
._96{width:710.940579px;}
._83{width:712.763999px;}
._4e{width:713.868579px;}
._eb{width:716.111979px;}
._ca{width:718.524579px;}
._117{width:721.632000px;}
._c8{width:727.164579px;}
._a1{width:729.791979px;}
._9b{width:732.492579px;}
._50{width:736.681179px;}
._85{width:738.431999px;}
._d9{width:740.159979px;}
._101{width:746.568579px;}
._d6{width:749.759979px;}
._8a{width:750.767979px;}
._e9{width:753.503979px;}
._d7{width:755.519379px;}
._4b{width:756.780579px;}
._e0{width:760.511979px;}
._9e{width:761.711979px;}
._81{width:764.351979px;}
._ac{width:769.391979px;}
._da{width:772.127979px;}
._d2{width:775.020579px;}
._93{width:776.399979px;}
._d3{width:780.300579px;}
._7e{width:783.023979px;}
._103{width:785.375979px;}
._ae{width:786.395979px;}
._57{width:788.316579px;}
._d4{width:789.407979px;}
._fe{width:790.751979px;}
._99{width:792.095979px;}
._5b{width:793.644579px;}
._9d{width:794.783979px;}
._ff{width:800.735979px;}
._ba{width:802.751979px;}
._b7{width:804.252579px;}
._a3{width:805.343979px;}
._61{width:807.647979px;}
._b5{width:812.351979px;}
._10a{width:813.660579px;}
._48{width:814.907979px;}
._9a{width:818.735979px;}
._d1{width:824.268579px;}
._e3{width:825.612579px;}
._80{width:837.612579px;}
._9c{width:840.479979px;}
._60{width:841.548579px;}
._e4{width:843.337179px;}
._c9{width:844.367979px;}
._58{width:845.628579px;}
._100{width:847.055979px;}
._c0{width:848.111979px;}
._e6{width:849.564579px;}
._55{width:851.004579px;}
._be{width:852.143979px;}
._c4{width:853.740579px;}
._a4{width:856.031979px;}
._db{width:857.471979px;}
._c7{width:860.351979px;}
._c1{width:862.799979px;}
._76{width:865.727979px;}
._5d{width:866.975979px;}
._5f{width:868.572579px;}
._59{width:872.268579px;}
._6b{width:874.751979px;}
._51{width:876.492579px;}
._5a{width:877.644579px;}
._6a{width:879.119979px;}
._8d{width:881.375979px;}
._6c{width:882.815979px;}
._8e{width:884.111979px;}
._bb{width:885.612579px;}
._a5{width:887.039979px;}
._6f{width:888.095979px;}
._62{width:889.727979px;}
._94{width:890.783979px;}
._b9{width:893.135979px;}
._ad{width:894.767979px;}
._54{width:896.796579px;}
._c6{width:898.703979px;}
._97{width:900.095979px;}
._a8{width:906.732579px;}
._65{width:908.351979px;}
._64{width:911.999979px;}
._69{width:913.775979px;}
._d8{width:915.359979px;}
._7{width:919.872000px;}
._a9{width:925.067979px;}
._8c{width:926.735979px;}
._79{width:928.079979px;}
._bc{width:929.711979px;}
._90{width:931.068579px;}
._c5{width:932.857179px;}
._bd{width:935.039979px;}
._72{width:936.815379px;}
._82{width:938.735979px;}
._98{width:941.423979px;}
._f8{width:942.575979px;}
._6d{width:944.268579px;}
._5e{width:947.519979px;}
._67{width:949.439979px;}
._77{width:951.071979px;}
._78{width:953.711979px;}
._68{width:954.719979px;}
._71{width:957.407979px;}
._7c{width:959.807379px;}
._84{width:963.455379px;}
._a2{width:965.423979px;}
._95{width:968.063979px;}
._63{width:970.655979px;}
._92{width:972.047979px;}
._66{width:973.055379px;}
._7d{width:976.079979px;}
._7b{width:978.719979px;}
._ab{width:980.316579px;}
._9f{width:981.359979px;}
._c3{width:982.427979px;}
._bf{width:984.095979px;}
._70{width:986.735979px;}
._aa{width:989.388579px;}
._7f{width:992.063979px;}
._45{width:994.703979px;}
._b1{width:997.295979px;}
._73{width:1000.079979px;}
._b6{width:1003.548579px;}
._8b{width:1005.407979px;}
._cf{width:1006.511379px;}
._a0{width:1008.095979px;}
._74{width:1010.735979px;}
._f2{width:1013.580579px;}
._b2{width:1015.967979px;}
._6e{width:1018.703979px;}
._d5{width:1021.391979px;}
._86{width:1026.671979px;}
._e8{width:1028.351979px;}
._5c{width:1029.359979px;}
._c2{width:1034.988579px;}
._7a{width:1042.703979px;}
._f0{width:1045.391979px;}
._88{width:1048.031979px;}
._102{width:1072.799979px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:49.625399px;}
.y25{bottom:49.625999px;}
.y22{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.ye2{bottom:90.000000px;}
.ye4{bottom:90.040815px;}
.ye5{bottom:90.076824px;}
.ye6{bottom:90.112833px;}
.ye7{bottom:90.148842px;}
.ye8{bottom:90.184851px;}
.yb8{bottom:90.797516px;}
.yc6{bottom:90.797539px;}
.y9f{bottom:90.797562px;}
.ycb{bottom:90.816000px;}
.yfa{bottom:91.115997px;}
.y284{bottom:91.135084px;}
.y2bc{bottom:91.139516px;}
.y45{bottom:94.800000px;}
.y1df{bottom:96.705473px;}
.y4{bottom:97.125005px;}
.ye9{bottom:99.184851px;}
.y170{bottom:101.541471px;}
.ydf{bottom:102.169189px;}
.y11f{bottom:103.527443px;}
.yca{bottom:105.060000px;}
.yf9{bottom:105.359997px;}
.y2be{bottom:105.367084px;}
.y283{bottom:105.379084px;}
.y2bb{bottom:105.383516px;}
.y74{bottom:107.672516px;}
.yb7{bottom:108.797516px;}
.yc5{bottom:108.797539px;}
.y9e{bottom:108.797562px;}
.y10f{bottom:109.687042px;}
.y20b{bottom:111.378473px;}
.y1de{bottom:114.849473px;}
.y24a{bottom:116.969543px;}
.y16f{bottom:117.444471px;}
.y44{bottom:118.655998px;}
.y2bd{bottom:119.611084px;}
.y282{bottom:119.623084px;}
.y2ba{bottom:119.627516px;}
.yde{bottom:120.169189px;}
.y11e{bottom:121.527443px;}
.y73{bottom:125.672516px;}
.yb6{bottom:126.797516px;}
.yc4{bottom:126.797539px;}
.y9d{bottom:126.797562px;}
.y10e{bottom:127.687042px;}
.y20a{bottom:129.522473px;}
.y249{bottom:131.213543px;}
.y43{bottom:132.899998px;}
.y1dd{bottom:132.993473px;}
.y16e{bottom:133.347471px;}
.y281{bottom:133.867084px;}
.y2b9{bottom:133.871516px;}
.ydd{bottom:138.169189px;}
.y21{bottom:139.264499px;}
.y11d{bottom:139.527443px;}
.y72{bottom:143.672516px;}
.yb5{bottom:144.797516px;}
.yc3{bottom:144.797539px;}
.y9c{bottom:144.797562px;}
.y248{bottom:145.457543px;}
.y10d{bottom:145.687042px;}
.y209{bottom:147.666473px;}
.y280{bottom:148.111084px;}
.y2b8{bottom:148.115516px;}
.y16d{bottom:149.250471px;}
.y1dc{bottom:151.137473px;}
.ydc{bottom:156.169189px;}
.y11c{bottom:157.527443px;}
.y247{bottom:159.701543px;}
.y16c{bottom:160.428471px;}
.y71{bottom:161.672516px;}
.y27f{bottom:162.355084px;}
.y2b7{bottom:162.359516px;}
.yb4{bottom:162.797516px;}
.yc2{bottom:162.797539px;}
.y9b{bottom:162.797562px;}
.y10c{bottom:163.687042px;}
.y208{bottom:165.810473px;}
.y1db{bottom:169.281473px;}
.y246{bottom:173.945543px;}
.ydb{bottom:174.169189px;}
.y11b{bottom:175.527443px;}
.y16b{bottom:176.331471px;}
.y27e{bottom:176.599084px;}
.y2b6{bottom:176.603516px;}
.y70{bottom:179.672516px;}
.yb3{bottom:180.797516px;}
.yc1{bottom:180.797539px;}
.y9a{bottom:180.797562px;}
.y10b{bottom:181.687042px;}
.y207{bottom:183.954473px;}
.y1da{bottom:187.425473px;}
.y245{bottom:188.189543px;}
.y27d{bottom:190.843084px;}
.y2b5{bottom:190.847516px;}
.yda{bottom:192.169189px;}
.y16a{bottom:192.234471px;}
.y11a{bottom:193.527443px;}
.y18{bottom:196.933500px;}
.y6f{bottom:197.672516px;}
.yb2{bottom:198.797516px;}
.yc0{bottom:198.797539px;}
.y99{bottom:198.797562px;}
.y10a{bottom:199.687042px;}
.y206{bottom:202.098473px;}
.y244{bottom:202.433543px;}
.y27c{bottom:205.087084px;}
.y2b4{bottom:205.091516px;}
.y1d9{bottom:205.569473px;}
.y169{bottom:208.137471px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yd9{bottom:210.169189px;}
.y119{bottom:211.527443px;}
.ye3{bottom:213.388802px;}
.y6e{bottom:215.672516px;}
.y243{bottom:216.677543px;}
.yb1{bottom:216.797516px;}
.ybf{bottom:216.797539px;}
.y98{bottom:216.797562px;}
.y109{bottom:217.687042px;}
.y27b{bottom:219.331084px;}
.y2b3{bottom:219.335516px;}
.y205{bottom:220.242473px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yea{bottom:222.568846px;}
.y1d8{bottom:223.713473px;}
.y168{bottom:224.040471px;}
.yd8{bottom:228.169189px;}
.y42{bottom:229.067093px;}
.y118{bottom:229.527443px;}
.y242{bottom:230.921543px;}
.y27a{bottom:233.575084px;}
.y2b2{bottom:233.579516px;}
.y6d{bottom:233.672516px;}
.y167{bottom:234.543471px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb0{bottom:234.797516px;}
.ybe{bottom:234.797539px;}
.y97{bottom:234.797562px;}
.y108{bottom:235.687042px;}
.y204{bottom:238.386473px;}
.y1d7{bottom:241.857473px;}
.y241{bottom:245.165543px;}
.yd7{bottom:246.169189px;}
.y117{bottom:247.527443px;}
.y279{bottom:247.819084px;}
.y2b1{bottom:247.823516px;}
.y166{bottom:250.446471px;}
.y6c{bottom:251.672516px;}
.yaf{bottom:252.797516px;}
.ybd{bottom:252.797539px;}
.y96{bottom:252.797562px;}
.y107{bottom:253.687042px;}
.y203{bottom:256.530473px;}
.y240{bottom:259.409543px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1d6{bottom:260.001473px;}
.y278{bottom:262.063084px;}
.y2b0{bottom:262.067516px;}
.yd6{bottom:264.169189px;}
.y116{bottom:265.527443px;}
.y41{bottom:265.817093px;}
.y165{bottom:266.349471px;}
.y6b{bottom:269.672516px;}
.yae{bottom:270.797516px;}
.ybc{bottom:270.797539px;}
.y95{bottom:270.797562px;}
.y106{bottom:271.687042px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y23f{bottom:273.653543px;}
.y202{bottom:274.674473px;}
.y277{bottom:276.307084px;}
.y2af{bottom:276.311516px;}
.y164{bottom:276.852471px;}
.y1d5{bottom:278.145473px;}
.yd5{bottom:282.169189px;}
.y115{bottom:283.527443px;}
.y40{bottom:283.817093px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yeb{bottom:286.960846px;}
.y6a{bottom:287.672516px;}
.y23e{bottom:287.897543px;}
.yad{bottom:288.797516px;}
.ybb{bottom:288.797539px;}
.y94{bottom:288.797562px;}
.y105{bottom:289.687042px;}
.y276{bottom:290.551084px;}
.y2ae{bottom:290.555516px;}
.y163{bottom:292.755471px;}
.y201{bottom:292.818473px;}
.yec{bottom:295.960846px;}
.y1d4{bottom:296.289473px;}
.yd4{bottom:300.169189px;}
.y23d{bottom:302.141543px;}
.y275{bottom:304.795084px;}
.y2ad{bottom:304.799516px;}
.y69{bottom:305.672516px;}
.yac{bottom:306.797516px;}
.y13b{bottom:306.797539px;}
.y93{bottom:306.797562px;}
.y104{bottom:307.687042px;}
.y162{bottom:308.658471px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y200{bottom:310.962473px;}
.y219{bottom:312.181500px;}
.y1d3{bottom:314.433473px;}
.y23c{bottom:316.385543px;}
.yd3{bottom:318.169189px;}
.y274{bottom:319.039084px;}
.y2ac{bottom:319.043516px;}
.y114{bottom:319.527443px;}
.y3f{bottom:320.567093px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y68{bottom:323.672516px;}
.y161{bottom:324.561471px;}
.yab{bottom:324.797516px;}
.yba{bottom:324.797539px;}
.y92{bottom:324.797562px;}
.y103{bottom:325.687042px;}
.y1ff{bottom:329.106473px;}
.y23b{bottom:330.629543px;}
.y1d2{bottom:332.577473px;}
.y273{bottom:333.283084px;}
.y2ab{bottom:333.287516px;}
.yd2{bottom:336.169189px;}
.y3e{bottom:338.567093px;}
.y160{bottom:340.464471px;}
.y67{bottom:341.672516px;}
.yaa{bottom:342.797516px;}
.y13a{bottom:342.797539px;}
.y91{bottom:342.797562px;}
.y102{bottom:343.687042px;}
.y218{bottom:344.401500px;}
.y23a{bottom:344.873543px;}
.y1fe{bottom:347.250473px;}
.y272{bottom:347.527084px;}
.y2aa{bottom:347.531516px;}
.yf{bottom:348.133500px;}
.y1d1{bottom:350.721473px;}
.y15f{bottom:350.967471px;}
.yd1{bottom:354.169189px;}
.y3d{bottom:356.567093px;}
.y239{bottom:359.117543px;}
.y66{bottom:359.672516px;}
.yed{bottom:360.352846px;}
.ya9{bottom:360.797516px;}
.yb9{bottom:360.797539px;}
.y90{bottom:360.797562px;}
.y101{bottom:361.687042px;}
.y271{bottom:361.771084px;}
.y2a9{bottom:361.775516px;}
.y217{bottom:362.629500px;}
.y1fd{bottom:365.394473px;}
.y15e{bottom:366.870471px;}
.y1d0{bottom:368.865473px;}
.yee{bottom:369.352846px;}
.y1b5{bottom:370.695473px;}
.yd0{bottom:372.169189px;}
.y238{bottom:373.361543px;}
.y113{bottom:373.527466px;}
.y3c{bottom:374.567093px;}
.y270{bottom:376.015084px;}
.y2a8{bottom:376.019516px;}
.y65{bottom:377.672516px;}
.ya8{bottom:378.797516px;}
.y8f{bottom:378.797562px;}
.y100{bottom:379.687042px;}
.y216{bottom:380.773500px;}
.y15d{bottom:382.773471px;}
.y1fc{bottom:383.538473px;}
.ye{bottom:386.785499px;}
.y1cf{bottom:387.009473px;}
.y237{bottom:387.605543px;}
.y1b4{bottom:389.073473px;}
.ycf{bottom:390.169189px;}
.y26f{bottom:390.259084px;}
.y2a7{bottom:390.263516px;}
.y112{bottom:391.527466px;}
.y3b{bottom:392.567093px;}
.y215{bottom:395.017500px;}
.y64{bottom:395.672516px;}
.ya7{bottom:396.797516px;}
.y139{bottom:396.797562px;}
.yff{bottom:397.687042px;}
.y15c{bottom:398.676471px;}
.y1fb{bottom:401.682473px;}
.y236{bottom:401.849543px;}
.y26e{bottom:404.503084px;}
.y2a6{bottom:404.507516px;}
.y1b3{bottom:404.976473px;}
.y1ce{bottom:405.153473px;}
.yd{bottom:408.044999px;}
.yce{bottom:408.169189px;}
.y3a{bottom:410.567093px;}
.y214{bottom:413.161500px;}
.y63{bottom:413.672516px;}
.y15b{bottom:414.579471px;}
.ya6{bottom:414.797516px;}
.y8e{bottom:414.797562px;}
.y1b2{bottom:415.479473px;}
.yfe{bottom:415.687042px;}
.y235{bottom:416.093543px;}
.y26d{bottom:418.747084px;}
.y2a5{bottom:418.751516px;}
.y1fa{bottom:419.826473px;}
.y1cd{bottom:423.297473px;}
.y1b1{bottom:425.982473px;}
.ycd{bottom:426.169189px;}
.y39{bottom:428.567093px;}
.y234{bottom:430.337543px;}
.y15a{bottom:430.482471px;}
.y213{bottom:431.305500px;}
.y62{bottom:431.672516px;}
.ya5{bottom:432.797516px;}
.y26c{bottom:432.991084px;}
.y2a4{bottom:432.995516px;}
.yfd{bottom:433.687042px;}
.y1f9{bottom:437.970473px;}
.y1cc{bottom:441.441473px;}
.ycc{bottom:444.169189px;}
.y1b0{bottom:444.279473px;}
.y233{bottom:444.581543px;}
.y158{bottom:446.376473px;}
.y38{bottom:446.567093px;}
.y26b{bottom:447.235084px;}
.y2a3{bottom:447.239516px;}
.y122{bottom:447.995502px;}
.y212{bottom:449.449500px;}
.y61{bottom:449.672516px;}
.yef{bottom:450.352846px;}
.ya4{bottom:450.797516px;}
.y8d{bottom:450.797562px;}
.yfc{bottom:451.687042px;}
.y18f{bottom:456.051473px;}
.y1f8{bottom:456.114473px;}
.y157{bottom:456.879473px;}
.y232{bottom:458.825543px;}
.yf0{bottom:459.352846px;}
.y1cb{bottom:459.585473px;}
.y26a{bottom:461.479084px;}
.y2a2{bottom:461.483516px;}
.y1af{bottom:462.576473px;}
.y37{bottom:464.567093px;}
.y156{bottom:467.382473px;}
.y211{bottom:467.593500px;}
.y60{bottom:467.672516px;}
.ya3{bottom:468.797516px;}
.yfb{bottom:469.687042px;}
.y18e{bottom:471.954473px;}
.y231{bottom:473.069543px;}
.y138{bottom:473.856734px;}
.y1f7{bottom:474.258473px;}
.y269{bottom:475.723084px;}
.y2a1{bottom:475.727516px;}
.y1ca{bottom:477.729473px;}
.y155{bottom:477.885473px;}
.y1ae{bottom:480.873473px;}
.y18d{bottom:482.457473px;}
.y36{bottom:482.567093px;}
.y5f{bottom:485.672516px;}
.ya2{bottom:486.797516px;}
.y230{bottom:487.313543px;}
.y159{bottom:488.379471px;}
.y154{bottom:488.388473px;}
.y268{bottom:489.967084px;}
.y2a0{bottom:489.971516px;}
.y137{bottom:492.084734px;}
.y1f6{bottom:492.402473px;}
.y210{bottom:495.601500px;}
.y1c9{bottom:495.873473px;}
.y18c{bottom:498.360473px;}
.y1ad{bottom:499.098473px;}
.y35{bottom:500.567093px;}
.y22f{bottom:501.557543px;}
.yc{bottom:502.864502px;}
.y5e{bottom:503.672516px;}
.y267{bottom:504.211084px;}
.y29f{bottom:504.215516px;}
.y153{bottom:504.291473px;}
.y8c{bottom:504.797516px;}
.y111{bottom:508.555072px;}
.ye1{bottom:508.735065px;}
.y136{bottom:510.228734px;}
.y1f5{bottom:510.546473px;}
.y1c8{bottom:514.017473px;}
.y18b{bottom:514.263473px;}
.y1ac{bottom:515.073473px;}
.y22e{bottom:515.801543px;}
.y266{bottom:518.455084px;}
.y29e{bottom:518.459516px;}
.y34{bottom:518.567093px;}
.y152{bottom:520.194473px;}
.yb{bottom:520.864502px;}
.y5d{bottom:521.672516px;}
.y8b{bottom:522.797516px;}
.y110{bottom:522.799072px;}
.ye0{bottom:522.979065px;}
.yc9{bottom:523.502516px;}
.yf1{bottom:523.744846px;}
.y135{bottom:528.372734px;}
.y1f4{bottom:528.690473px;}
.y22d{bottom:530.045543px;}
.y18a{bottom:530.166473px;}
.y1ab{bottom:530.976473px;}
.y1c7{bottom:532.161473px;}
.y265{bottom:532.699084px;}
.y29d{bottom:532.703516px;}
.yf2{bottom:532.744846px;}
.y151{bottom:536.097473px;}
.y33{bottom:536.567093px;}
.ya{bottom:538.864499px;}
.y5c{bottom:539.672516px;}
.y8a{bottom:540.797516px;}
.yc8{bottom:541.502516px;}
.y22c{bottom:544.289543px;}
.y189{bottom:546.069473px;}
.y134{bottom:546.516734px;}
.y1f3{bottom:546.834473px;}
.y1aa{bottom:546.879473px;}
.y264{bottom:546.943084px;}
.y29c{bottom:546.947516px;}
.y20f{bottom:547.175227px;}
.y1c6{bottom:550.305473px;}
.y150{bottom:552.000473px;}
.y32{bottom:554.567093px;}
.y9{bottom:556.864499px;}
.y5b{bottom:557.672516px;}
.y22b{bottom:558.533543px;}
.y89{bottom:558.797516px;}
.y263{bottom:561.187084px;}
.y29b{bottom:561.191516px;}
.y188{bottom:561.972473px;}
.y1a9{bottom:562.782473px;}
.y133{bottom:564.660734px;}
.y1f2{bottom:564.978473px;}
.y20e{bottom:565.176727px;}
.y14f{bottom:567.903473px;}
.y1c5{bottom:568.449473px;}
.y31{bottom:572.567093px;}
.y22a{bottom:572.777543px;}
.y1a8{bottom:573.285473px;}
.y262{bottom:575.431084px;}
.y29a{bottom:575.435516px;}
.y5a{bottom:575.672516px;}
.y88{bottom:576.797516px;}
.yc7{bottom:577.502516px;}
.y187{bottom:577.875473px;}
.y132{bottom:582.816734px;}
.y1f1{bottom:583.122473px;}
.y14e{bottom:583.806473px;}
.y1c4{bottom:586.593473px;}
.y229{bottom:587.021543px;}
.y1a7{bottom:589.188473px;}
.y261{bottom:589.675084px;}
.y299{bottom:589.679516px;}
.y30{bottom:590.567093px;}
.y59{bottom:593.672516px;}
.y186{bottom:593.778473px;}
.y87{bottom:594.797516px;}
.yf3{bottom:597.136846px;}
.y14d{bottom:599.709473px;}
.y131{bottom:600.960734px;}
.y228{bottom:601.265543px;}
.y1f0{bottom:601.266473px;}
.y260{bottom:603.919084px;}
.y298{bottom:603.923516px;}
.y1c3{bottom:604.737473px;}
.y1a4{bottom:604.866473px;}
.yf4{bottom:606.136846px;}
.y2f{bottom:608.567093px;}
.y185{bottom:609.681473px;}
.y58{bottom:611.672516px;}
.y86{bottom:612.797516px;}
.y1a6{bottom:615.360473px;}
.y1a3{bottom:615.369473px;}
.y227{bottom:615.509543px;}
.y14c{bottom:615.612473px;}
.y25f{bottom:618.163084px;}
.y297{bottom:618.167516px;}
.y130{bottom:619.104734px;}
.y1ef{bottom:619.410473px;}
.y1c2{bottom:622.881473px;}
.y20d{bottom:623.394473px;}
.y184{bottom:625.584473px;}
.y1a5{bottom:625.863473px;}
.y1a2{bottom:625.872473px;}
.y2e{bottom:626.567093px;}
.y57{bottom:629.672516px;}
.y226{bottom:629.753543px;}
.y85{bottom:630.797516px;}
.y14b{bottom:631.515473px;}
.y25e{bottom:632.407084px;}
.y296{bottom:632.411516px;}
.y12f{bottom:637.248734px;}
.y1ee{bottom:637.554473px;}
.y1c1{bottom:641.025473px;}
.y183{bottom:641.487473px;}
.y1a1{bottom:641.775473px;}
.y225{bottom:643.997543px;}
.y2d{bottom:644.567093px;}
.y8{bottom:645.510000px;}
.y25d{bottom:646.651084px;}
.y295{bottom:646.655516px;}
.y14a{bottom:647.418473px;}
.y56{bottom:647.672516px;}
.y84{bottom:648.797516px;}
.y12e{bottom:655.392734px;}
.y20c{bottom:655.614473px;}
.y1ed{bottom:655.698473px;}
.y181{bottom:657.390473px;}
.y1a0{bottom:657.678473px;}
.y1c0{bottom:659.169473px;}
.y25c{bottom:660.895084px;}
.y294{bottom:660.899516px;}
.y2c{bottom:662.567093px;}
.y149{bottom:663.321473px;}
.y55{bottom:665.672516px;}
.y7{bottom:666.771000px;}
.y83{bottom:666.797516px;}
.y180{bottom:667.893473px;}
.y19f{bottom:668.181473px;}
.y12d{bottom:673.548734px;}
.y1ec{bottom:673.842473px;}
.y25b{bottom:675.139084px;}
.y293{bottom:675.143516px;}
.y224{bottom:676.547562px;}
.y1bf{bottom:677.313473px;}
.y182{bottom:678.387473px;}
.y17f{bottom:678.396473px;}
.y148{bottom:679.224473px;}
.y2b{bottom:680.567093px;}
.y54{bottom:683.672516px;}
.y19e{bottom:684.084473px;}
.y82{bottom:684.797516px;}
.y25a{bottom:689.383084px;}
.y292{bottom:689.387516px;}
.y12c{bottom:691.692734px;}
.y1eb{bottom:691.986473px;}
.y17e{bottom:694.299473px;}
.y147{bottom:695.127473px;}
.y1be{bottom:695.457473px;}
.y19d{bottom:699.987473px;}
.y53{bottom:701.672516px;}
.y81{bottom:702.797516px;}
.y259{bottom:703.627084px;}
.y291{bottom:703.631516px;}
.y12b{bottom:709.836734px;}
.y1ea{bottom:710.130473px;}
.y17d{bottom:710.202473px;}
.y19c{bottom:710.490473px;}
.y146{bottom:711.030473px;}
.y1bd{bottom:713.601473px;}
.y258{bottom:717.871084px;}
.y290{bottom:717.875516px;}
.yf5{bottom:719.524846px;}
.y52{bottom:719.672516px;}
.y80{bottom:720.797516px;}
.y17c{bottom:726.105473px;}
.y6{bottom:726.298500px;}
.y19b{bottom:726.393473px;}
.y145{bottom:726.933473px;}
.y12a{bottom:727.980734px;}
.y1e9{bottom:728.274473px;}
.yf6{bottom:728.524846px;}
.y2a{bottom:729.059696px;}
.y1bc{bottom:731.757473px;}
.y223{bottom:732.095516px;}
.y257{bottom:732.115084px;}
.y28f{bottom:732.119516px;}
.y51{bottom:737.672516px;}
.y7f{bottom:738.797516px;}
.y17b{bottom:742.008473px;}
.y19a{bottom:742.296473px;}
.y144{bottom:742.836473px;}
.y29{bottom:743.303696px;}
.y1bb{bottom:746.001473px;}
.y129{bottom:746.124734px;}
.y222{bottom:746.339516px;}
.y256{bottom:746.359084px;}
.y28e{bottom:746.363516px;}
.y1e8{bottom:746.418473px;}
.y3{bottom:752.599495px;}
.y50{bottom:755.672516px;}
.y7e{bottom:756.797516px;}
.y17a{bottom:757.911473px;}
.y199{bottom:758.199473px;}
.y143{bottom:758.730473px;}
.y221{bottom:760.583516px;}
.y255{bottom:760.603084px;}
.y28d{bottom:760.607516px;}
.y128{bottom:764.280734px;}
.y1e7{bottom:764.562473px;}
.y142{bottom:769.233473px;}
.y4f{bottom:773.672516px;}
.y179{bottom:773.814473px;}
.y1ba{bottom:774.009473px;}
.y198{bottom:774.102473px;}
.y7d{bottom:774.797516px;}
.y220{bottom:774.827516px;}
.y254{bottom:774.847084px;}
.y28c{bottom:774.851516px;}
.y28{bottom:781.152191px;}
.y127{bottom:782.424734px;}
.y1e6{bottom:782.706473px;}
.y197{bottom:784.605473px;}
.y141{bottom:785.136473px;}
.y21f{bottom:789.071516px;}
.y253{bottom:789.091084px;}
.y28b{bottom:789.095516px;}
.y178{bottom:789.717473px;}
.y4e{bottom:791.672516px;}
.y7c{bottom:792.797516px;}
.y1b9{bottom:797.853473px;}
.y196{bottom:800.508473px;}
.y126{bottom:800.580734px;}
.y1e5{bottom:800.850473px;}
.y140{bottom:801.039473px;}
.y21e{bottom:803.315516px;}
.y252{bottom:803.335084px;}
.y28a{bottom:803.339516px;}
.y177{bottom:805.620473px;}
.y4d{bottom:809.672516px;}
.y7b{bottom:810.797516px;}
.y1b8{bottom:812.097473px;}
.y195{bottom:816.411473px;}
.y13f{bottom:816.933473px;}
.y21d{bottom:817.559516px;}
.y251{bottom:817.579084px;}
.y289{bottom:817.583516px;}
.y1e4{bottom:818.994473px;}
.y176{bottom:821.523473px;}
.y27{bottom:823.895529px;}
.y13e{bottom:827.436473px;}
.y4c{bottom:827.672516px;}
.y125{bottom:828.576734px;}
.y7a{bottom:828.797516px;}
.y21c{bottom:831.803516px;}
.y250{bottom:831.823084px;}
.y288{bottom:831.827516px;}
.y194{bottom:832.314473px;}
.y1e3{bottom:837.138473px;}
.y175{bottom:837.426473px;}
.yf7{bottom:841.912846px;}
.y13d{bottom:843.339473px;}
.y4b{bottom:845.672516px;}
.y24f{bottom:846.067084px;}
.y287{bottom:846.071516px;}
.y26{bottom:846.398529px;}
.y79{bottom:846.797516px;}
.y191{bottom:848.217473px;}
.yf8{bottom:850.912846px;}
.y124{bottom:852.420734px;}
.y174{bottom:853.329473px;}
.y190{bottom:858.720473px;}
.y1e2{bottom:859.134473px;}
.y21b{bottom:860.303516px;}
.y24e{bottom:860.311084px;}
.y286{bottom:860.315516px;}
.y1b7{bottom:863.669516px;}
.y4a{bottom:863.672516px;}
.y78{bottom:864.797516px;}
.y123{bottom:866.664734px;}
.y13c{bottom:869.097473px;}
.y193{bottom:869.214473px;}
.y173{bottom:869.223473px;}
.y21a{bottom:874.547516px;}
.y24d{bottom:874.555084px;}
.y285{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y192{bottom:879.717473px;}
.y172{bottom:879.726473px;}
.y1b6{bottom:881.671016px;}
.y77{bottom:882.797516px;}
.y1e1{bottom:882.978473px;}
.y24c{bottom:888.799084px;}
.y121{bottom:888.803516px;}
.y1e0{bottom:897.222473px;}
.y171{bottom:899.472473px;}
.y49{bottom:899.672516px;}
.y76{bottom:900.797516px;}
.y24b{bottom:903.043084px;}
.y120{bottom:903.047516px;}
.y24{bottom:925.867084px;}
.y75{bottom:939.670349px;}
.ya1{bottom:940.110892px;}
.y47{bottom:940.111075px;}
.y23{bottom:940.111084px;}
.ya0{bottom:940.626892px;}
.y46{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h7{height:32.130000px;}
.h12{height:32.289600px;}
.ha{height:33.840000px;}
.h19{height:34.596000px;}
.h1b{height:36.828000px;}
.h1c{height:37.116000px;}
.h18{height:37.980000px;}
.hb{height:42.048000px;}
.h6{height:45.900000px;}
.h11{height:46.128000px;}
.h3{height:48.195000px;}
.h1e{height:49.104000px;}
.h15{height:50.640000px;}
.h14{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h10{height:57.660000px;}
.hf{height:59.340000px;}
.h17{height:61.380000px;}
.he{height:64.866000px;}
.h13{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h1a{height:78.840000px;}
.h16{height:103.104000px;}
.h1d{height:107.616000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x8{left:77.598450px;}
.x9{left:78.746400px;}
.x1c{left:85.580409px;}
.xa{left:93.545402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x22{left:107.303401px;}
.x1f{left:132.873466px;}
.x16{left:175.508412px;}
.x17{left:184.508412px;}
.x4{left:203.484001px;}
.xc{left:253.238846px;}
.xe{left:274.621650px;}
.x1a{left:289.169430px;}
.xf{left:302.629650px;}
.x20{left:315.599402px;}
.x10{left:320.773650px;}
.x21{left:324.599402px;}
.x11{left:338.917650px;}
.x19{left:342.773418px;}
.x1b{left:351.791431px;}
.x12{left:357.061650px;}
.x13{left:375.289650px;}
.x14{left:389.533650px;}
.x1d{left:408.551397px;}
.xd{left:414.602840px;}
.x18{left:447.767407px;}
.x3{left:454.959000px;}
.x5{left:485.858414px;}
.x15{left:488.588242px;}
.x1e{left:495.633453px;}
.x7{left:521.631592px;}
.xb{left:554.020203px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:37.344000pt;}
.v3{vertical-align:50.645333pt;}
.ls6{letter-spacing:-4.096000pt;}
.lsf{letter-spacing:-2.986667pt;}
.ls20{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.493333pt;}
.ls1b{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.725333pt;}
.ls11{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.597333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.174933pt;}
.ls4{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.810626pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls13{letter-spacing:2.854400pt;}
.ls18{letter-spacing:4.313600pt;}
.ls19{letter-spacing:6.323186pt;}
.ls14{letter-spacing:6.660259pt;}
.ls1f{letter-spacing:7.214907pt;}
.ls1c{letter-spacing:9.860246pt;}
.ws43{word-spacing:-13.813333pt;}
.wse1{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1ac{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.773333pt;}
.wse6{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws18a{word-spacing:-10.026667pt;}
.ws1a8{word-spacing:-9.770667pt;}
.ws143{word-spacing:-9.600000pt;}
.ws158{word-spacing:-9.173333pt;}
.ws2{word-spacing:-8.362667pt;}
.ws12a{word-spacing:-8.192000pt;}
.ws101{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws104{word-spacing:-6.880000pt;}
.ws9b{word-spacing:-3.200000pt;}
.ws9c{word-spacing:-1.706667pt;}
.ws1d{word-spacing:-1.680000pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws74{word-spacing:-1.226667pt;}
.wsec{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.120000pt;}
.wsf{word-spacing:-1.066667pt;}
.ws29{word-spacing:-0.906667pt;}
.ws167{word-spacing:-0.896000pt;}
.wsc0{word-spacing:-0.853333pt;}
.ws180{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.746667pt;}
.ws1a5{word-spacing:-0.725333pt;}
.ws84{word-spacing:-0.693333pt;}
.ws16e{word-spacing:-0.597333pt;}
.wsbb{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.533333pt;}
.ws17c{word-spacing:-0.512000pt;}
.ws42{word-spacing:-0.480000pt;}
.ws18b{word-spacing:-0.469333pt;}
.ws16{word-spacing:-0.426667pt;}
.ws1a9{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.373333pt;}
.ws141{word-spacing:-0.341333pt;}
.wsa9{word-spacing:-0.320000pt;}
.ws140{word-spacing:-0.298667pt;}
.ws73{word-spacing:-0.266667pt;}
.ws135{word-spacing:-0.256000pt;}
.ws78{word-spacing:-0.213333pt;}
.ws189{word-spacing:-0.170667pt;}
.ws18{word-spacing:-0.160000pt;}
.ws1a2{word-spacing:-0.128000pt;}
.wse3{word-spacing:-0.106667pt;}
.ws147{word-spacing:-0.085333pt;}
.ws102{word-spacing:-0.064000pt;}
.ws89{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws14b{word-spacing:0.042667pt;}
.ws37{word-spacing:0.053333pt;}
.ws12b{word-spacing:0.085333pt;}
.ws83{word-spacing:0.106667pt;}
.ws12c{word-spacing:0.128000pt;}
.ws36{word-spacing:0.160000pt;}
.ws16b{word-spacing:0.170667pt;}
.ws2f{word-spacing:0.213333pt;}
.ws1ae{word-spacing:0.256000pt;}
.ws31{word-spacing:0.266667pt;}
.ws17d{word-spacing:0.298667pt;}
.wscf{word-spacing:0.320000pt;}
.ws1a6{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.426667pt;}
.ws1af{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.480000pt;}
.ws15f{word-spacing:0.512000pt;}
.ws32{word-spacing:0.533333pt;}
.ws162{word-spacing:0.554667pt;}
.ws87{word-spacing:0.586667pt;}
.ws155{word-spacing:0.597333pt;}
.ws166{word-spacing:0.640000pt;}
.ws157{word-spacing:0.682667pt;}
.ws6f{word-spacing:0.693333pt;}
.ws161{word-spacing:0.725333pt;}
.ws48{word-spacing:0.746667pt;}
.ws13a{word-spacing:0.768000pt;}
.ws85{word-spacing:0.800000pt;}
.ws156{word-spacing:0.810667pt;}
.ws59{word-spacing:0.853333pt;}
.ws192{word-spacing:0.896000pt;}
.ws41{word-spacing:0.906667pt;}
.wsc3{word-spacing:0.960000pt;}
.ws177{word-spacing:0.981333pt;}
.wse4{word-spacing:1.013333pt;}
.ws193{word-spacing:1.024000pt;}
.ws49{word-spacing:1.066667pt;}
.ws19f{word-spacing:1.109333pt;}
.ws38{word-spacing:1.120000pt;}
.wsc4{word-spacing:1.173333pt;}
.ws173{word-spacing:1.194667pt;}
.ws4d{word-spacing:1.226667pt;}
.ws17f{word-spacing:1.237333pt;}
.ws134{word-spacing:1.280000pt;}
.wsb3{word-spacing:1.333333pt;}
.ws187{word-spacing:1.365333pt;}
.ws26{word-spacing:1.386667pt;}
.ws151{word-spacing:1.408000pt;}
.ws3c{word-spacing:1.440000pt;}
.ws186{word-spacing:1.450667pt;}
.ws65{word-spacing:1.493333pt;}
.ws175{word-spacing:1.536000pt;}
.ws34{word-spacing:1.546667pt;}
.ws132{word-spacing:1.578667pt;}
.wsa8{word-spacing:1.600000pt;}
.ws15e{word-spacing:1.621333pt;}
.wsc8{word-spacing:1.653333pt;}
.ws19b{word-spacing:1.664000pt;}
.wsee{word-spacing:1.706667pt;}
.ws144{word-spacing:1.749333pt;}
.ws4c{word-spacing:1.760000pt;}
.ws13d{word-spacing:1.792000pt;}
.ws6a{word-spacing:1.813333pt;}
.ws16d{word-spacing:1.834667pt;}
.ws8a{word-spacing:1.866667pt;}
.ws1a4{word-spacing:1.877333pt;}
.ws7f{word-spacing:1.920000pt;}
.ws3a{word-spacing:1.973333pt;}
.ws15d{word-spacing:2.005333pt;}
.ws70{word-spacing:2.026667pt;}
.ws16f{word-spacing:2.048000pt;}
.ws35{word-spacing:2.080000pt;}
.ws160{word-spacing:2.090667pt;}
.ws12{word-spacing:2.133333pt;}
.ws130{word-spacing:2.176000pt;}
.wsc2{word-spacing:2.186667pt;}
.ws181{word-spacing:2.218667pt;}
.ws88{word-spacing:2.240000pt;}
.ws133{word-spacing:2.261333pt;}
.ws20{word-spacing:2.293333pt;}
.wse0{word-spacing:2.304000pt;}
.ws4a{word-spacing:2.346667pt;}
.ws153{word-spacing:2.389333pt;}
.ws39{word-spacing:2.400000pt;}
.ws1a3{word-spacing:2.432000pt;}
.wsfd{word-spacing:2.453333pt;}
.ws3f{word-spacing:2.506667pt;}
.ws1ad{word-spacing:2.517333pt;}
.ws8e{word-spacing:2.560000pt;}
.ws14d{word-spacing:2.602667pt;}
.ws191{word-spacing:2.645333pt;}
.wsac{word-spacing:2.666667pt;}
.ws7e{word-spacing:2.720000pt;}
.ws1ab{word-spacing:2.730667pt;}
.wsb5{word-spacing:2.773333pt;}
.ws16c{word-spacing:2.816000pt;}
.wsfb{word-spacing:2.826667pt;}
.ws4b{word-spacing:2.880000pt;}
.ws19d{word-spacing:2.901333pt;}
.ws79{word-spacing:2.933333pt;}
.ws149{word-spacing:2.944000pt;}
.ws7a{word-spacing:2.986667pt;}
.ws185{word-spacing:3.029333pt;}
.ws28{word-spacing:3.040000pt;}
.ws53{word-spacing:3.093333pt;}
.ws169{word-spacing:3.114667pt;}
.ws9{word-spacing:3.146667pt;}
.ws19a{word-spacing:3.157333pt;}
.wsbf{word-spacing:3.200000pt;}
.ws182{word-spacing:3.242667pt;}
.wsf7{word-spacing:3.253333pt;}
.ws46{word-spacing:3.306667pt;}
.ws139{word-spacing:3.328000pt;}
.wsaa{word-spacing:3.360000pt;}
.wsba{word-spacing:3.413333pt;}
.ws14c{word-spacing:3.456000pt;}
.ws57{word-spacing:3.466667pt;}
.ws168{word-spacing:3.498667pt;}
.wsaf{word-spacing:3.520000pt;}
.ws194{word-spacing:3.541333pt;}
.wse{word-spacing:3.573333pt;}
.ws16a{word-spacing:3.584000pt;}
.ws30{word-spacing:3.626667pt;}
.ws1b0{word-spacing:3.669333pt;}
.ws2a{word-spacing:3.680000pt;}
.ws2b{word-spacing:3.733333pt;}
.ws170{word-spacing:3.754667pt;}
.ws96{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws1f{word-spacing:3.893333pt;}
.ws15{word-spacing:3.946667pt;}
.ws13e{word-spacing:3.968000pt;}
.wsdd{word-spacing:4.000000pt;}
.ws14a{word-spacing:4.010667pt;}
.ws8c{word-spacing:4.053333pt;}
.ws197{word-spacing:4.096000pt;}
.ws5a{word-spacing:4.106667pt;}
.ws19c{word-spacing:4.138667pt;}
.wsed{word-spacing:4.160000pt;}
.ws82{word-spacing:4.213333pt;}
.ws131{word-spacing:4.224000pt;}
.ws6d{word-spacing:4.266667pt;}
.wsa4{word-spacing:4.320000pt;}
.ws1a1{word-spacing:4.352000pt;}
.ws64{word-spacing:4.373333pt;}
.ws13f{word-spacing:4.394667pt;}
.ws58{word-spacing:4.426667pt;}
.ws18e{word-spacing:4.437333pt;}
.wsa{word-spacing:4.480000pt;}
.ws174{word-spacing:4.522667pt;}
.ws90{word-spacing:4.533333pt;}
.ws47{word-spacing:4.586667pt;}
.ws45{word-spacing:4.640000pt;}
.wse5{word-spacing:4.650667pt;}
.ws10{word-spacing:4.693333pt;}
.ws17b{word-spacing:4.736000pt;}
.wsda{word-spacing:4.746667pt;}
.ws13{word-spacing:4.800000pt;}
.ws1aa{word-spacing:4.821333pt;}
.wsab{word-spacing:4.853333pt;}
.ws163{word-spacing:4.864000pt;}
.ws1e{word-spacing:4.906667pt;}
.ws195{word-spacing:4.949333pt;}
.ws91{word-spacing:4.960000pt;}
.ws1a7{word-spacing:4.992000pt;}
.ws99{word-spacing:5.013333pt;}
.ws178{word-spacing:5.034667pt;}
.wsad{word-spacing:5.066667pt;}
.ws1a0{word-spacing:5.077333pt;}
.ws14{word-spacing:5.120000pt;}
.ws152{word-spacing:5.162667pt;}
.ws55{word-spacing:5.173333pt;}
.ws148{word-spacing:5.205333pt;}
.ws11{word-spacing:5.226667pt;}
.wseb{word-spacing:5.280000pt;}
.ws2c{word-spacing:5.333333pt;}
.ws188{word-spacing:5.376000pt;}
.ws61{word-spacing:5.386667pt;}
.ws176{word-spacing:5.418667pt;}
.wsb4{word-spacing:5.440000pt;}
.ws146{word-spacing:5.461333pt;}
.wsc1{word-spacing:5.493333pt;}
.ws190{word-spacing:5.504000pt;}
.ws77{word-spacing:5.546667pt;}
.ws4f{word-spacing:5.600000pt;}
.wsc{word-spacing:5.653333pt;}
.ws9d{word-spacing:5.706667pt;}
.ws137{word-spacing:5.717333pt;}
.ws69{word-spacing:5.760000pt;}
.ws18d{word-spacing:5.802667pt;}
.wsa6{word-spacing:5.813333pt;}
.ws18f{word-spacing:5.845333pt;}
.ws56{word-spacing:5.866667pt;}
.ws3e{word-spacing:5.920000pt;}
.ws5b{word-spacing:5.973333pt;}
.wsdf{word-spacing:6.026667pt;}
.wsf9{word-spacing:6.080000pt;}
.ws159{word-spacing:6.101333pt;}
.ws98{word-spacing:6.133333pt;}
.ws12f{word-spacing:6.144000pt;}
.wsd0{word-spacing:6.186667pt;}
.ws6b{word-spacing:6.240000pt;}
.ws4e{word-spacing:6.293333pt;}
.wsb1{word-spacing:6.346667pt;}
.ws12d{word-spacing:6.357333pt;}
.ws5d{word-spacing:6.400000pt;}
.ws179{word-spacing:6.442667pt;}
.ws54{word-spacing:6.453333pt;}
.ws15b{word-spacing:6.485333pt;}
.ws3d{word-spacing:6.506667pt;}
.ws51{word-spacing:6.560000pt;}
.ws14f{word-spacing:6.656000pt;}
.ws19{word-spacing:6.666667pt;}
.ws95{word-spacing:6.720000pt;}
.ws15a{word-spacing:6.741333pt;}
.wsf8{word-spacing:6.773333pt;}
.ws145{word-spacing:6.784000pt;}
.wsf5{word-spacing:6.826667pt;}
.ws17{word-spacing:6.880000pt;}
.ws33{word-spacing:6.933333pt;}
.ws3b{word-spacing:6.986667pt;}
.ws196{word-spacing:6.997333pt;}
.ws75{word-spacing:7.040000pt;}
.ws142{word-spacing:7.082667pt;}
.ws17a{word-spacing:7.125333pt;}
.wsde{word-spacing:7.146667pt;}
.wsc5{word-spacing:7.200000pt;}
.ws138{word-spacing:7.210667pt;}
.wsa7{word-spacing:7.253333pt;}
.ws1b1{word-spacing:7.296000pt;}
.ws92{word-spacing:7.306667pt;}
.ws172{word-spacing:7.381333pt;}
.ws72{word-spacing:7.413333pt;}
.ws68{word-spacing:7.466667pt;}
.wsb8{word-spacing:7.520000pt;}
.ws165{word-spacing:7.552000pt;}
.ws93{word-spacing:7.573333pt;}
.ws150{word-spacing:7.594667pt;}
.ws199{word-spacing:7.637333pt;}
.wsd9{word-spacing:7.680000pt;}
.wsd{word-spacing:7.733333pt;}
.ws6e{word-spacing:7.786667pt;}
.ws22{word-spacing:7.840000pt;}
.wsb2{word-spacing:7.893333pt;}
.ws154{word-spacing:7.936000pt;}
.ws5c{word-spacing:7.946667pt;}
.ws52{word-spacing:8.000000pt;}
.ws136{word-spacing:8.064000pt;}
.wsf3{word-spacing:8.106667pt;}
.wsc9{word-spacing:8.160000pt;}
.ws171{word-spacing:8.192000pt;}
.wscc{word-spacing:8.266667pt;}
.ws12e{word-spacing:8.277333pt;}
.ws44{word-spacing:8.373333pt;}
.ws8d{word-spacing:8.426667pt;}
.wsce{word-spacing:8.480000pt;}
.ws183{word-spacing:8.490667pt;}
.ws71{word-spacing:8.586667pt;}
.ws13c{word-spacing:8.704000pt;}
.ws81{word-spacing:8.746667pt;}
.wsdc{word-spacing:8.800000pt;}
.wsf2{word-spacing:8.853333pt;}
.ws2e{word-spacing:8.906667pt;}
.ws5f{word-spacing:8.960000pt;}
.ws40{word-spacing:9.013333pt;}
.ws164{word-spacing:9.045333pt;}
.ws80{word-spacing:9.066667pt;}
.ws13b{word-spacing:9.088000pt;}
.ws5e{word-spacing:9.120000pt;}
.ws14e{word-spacing:9.130667pt;}
.wsf1{word-spacing:9.173333pt;}
.ws9e{word-spacing:9.226667pt;}
.wsef{word-spacing:9.386667pt;}
.ws17e{word-spacing:9.429333pt;}
.wsb0{word-spacing:9.440000pt;}
.wscb{word-spacing:9.493333pt;}
.wsbd{word-spacing:9.546667pt;}
.ws15c{word-spacing:9.600000pt;}
.ws9a{word-spacing:9.706667pt;}
.ws184{word-spacing:9.728000pt;}
.wse2{word-spacing:9.760000pt;}
.wsb7{word-spacing:9.813333pt;}
.ws24{word-spacing:9.866667pt;}
.ws18c{word-spacing:9.898667pt;}
.wsa1{word-spacing:9.920000pt;}
.ws97{word-spacing:9.973333pt;}
.ws7c{word-spacing:10.026667pt;}
.ws198{word-spacing:10.069333pt;}
.ws25{word-spacing:10.133333pt;}
.ws8b{word-spacing:10.240000pt;}
.ws23{word-spacing:10.346667pt;}
.wsc7{word-spacing:10.453333pt;}
.wsfa{word-spacing:10.506667pt;}
.ws8f{word-spacing:10.560000pt;}
.ws8{word-spacing:10.613333pt;}
.ws86{word-spacing:10.666667pt;}
.wsfe{word-spacing:10.720000pt;}
.wsf6{word-spacing:10.880000pt;}
.wsc6{word-spacing:10.933333pt;}
.wscd{word-spacing:11.093333pt;}
.wsdb{word-spacing:11.200000pt;}
.wsa5{word-spacing:11.253333pt;}
.wsca{word-spacing:11.360000pt;}
.wsb{word-spacing:11.466667pt;}
.wsa0{word-spacing:11.520000pt;}
.ws66{word-spacing:12.160000pt;}
.ws63{word-spacing:12.213333pt;}
.ws7b{word-spacing:12.266667pt;}
.wsb6{word-spacing:12.373333pt;}
.ws19e{word-spacing:12.842667pt;}
.ws76{word-spacing:12.853333pt;}
.wsb9{word-spacing:13.226667pt;}
.wsf0{word-spacing:13.440000pt;}
.ws94{word-spacing:13.493333pt;}
.wsfc{word-spacing:13.973333pt;}
.wsbe{word-spacing:14.026667pt;}
.ws67{word-spacing:14.080000pt;}
.wsbc{word-spacing:14.186667pt;}
.wsa2{word-spacing:14.560000pt;}
.ws9f{word-spacing:15.040000pt;}
.wsf4{word-spacing:15.413333pt;}
.ws7d{word-spacing:15.466667pt;}
.wsae{word-spacing:15.520000pt;}
.wsa3{word-spacing:16.266667pt;}
.ws106{word-spacing:22.656000pt;}
.ws100{word-spacing:38.623993pt;}
.ws125{word-spacing:43.904000pt;}
.ws117{word-spacing:46.208000pt;}
.ws10c{word-spacing:48.640000pt;}
.ws10d{word-spacing:50.986667pt;}
.ws112{word-spacing:53.333333pt;}
.ws10a{word-spacing:53.376000pt;}
.ws127{word-spacing:53.802667pt;}
.ws114{word-spacing:54.442667pt;}
.ws108{word-spacing:55.722667pt;}
.ws118{word-spacing:55.893333pt;}
.ws111{word-spacing:56.789333pt;}
.ws122{word-spacing:56.832000pt;}
.ws113{word-spacing:58.069333pt;}
.ws10b{word-spacing:58.112000pt;}
.ws126{word-spacing:58.794667pt;}
.ws11f{word-spacing:58.880000pt;}
.ws109{word-spacing:60.416000pt;}
.ws129{word-spacing:60.458667pt;}
.ws11e{word-spacing:61.269333pt;}
.ws10e{word-spacing:62.848000pt;}
.ws1b{word-spacing:64.938667pt;}
.ws121{word-spacing:65.152000pt;}
.ws110{word-spacing:65.194667pt;}
.ws11c{word-spacing:65.237333pt;}
.ws11b{word-spacing:65.322667pt;}
.ws119{word-spacing:67.669333pt;}
.ws116{word-spacing:68.224000pt;}
.wsd5{word-spacing:68.949333pt;}
.ws115{word-spacing:69.930667pt;}
.ws11a{word-spacing:72.320000pt;}
.wse7{word-spacing:74.282667pt;}
.ws10f{word-spacing:74.709333pt;}
.ws124{word-spacing:77.056000pt;}
.ws11d{word-spacing:81.834667pt;}
.wse8{word-spacing:83.754667pt;}
.wsea{word-spacing:88.490667pt;}
.wse9{word-spacing:90.837333pt;}
.wsd4{word-spacing:112.810667pt;}
.wsd6{word-spacing:132.949333pt;}
.ws107{word-spacing:136.320000pt;}
.ws105{word-spacing:152.569089pt;}
.wsd1{word-spacing:160.213333pt;}
.wsd2{word-spacing:169.002667pt;}
.wsd7{word-spacing:186.282667pt;}
.wsff{word-spacing:193.471995pt;}
.wsd3{word-spacing:240.725333pt;}
.wsd8{word-spacing:292.991982pt;}
.ws103{word-spacing:411.935974pt;}
.ws120{word-spacing:932.479982pt;}
.ws123{word-spacing:932.607982pt;}
.ws128{word-spacing:933.845315pt;}
._4{margin-left:-13.866667pt;}
._11{margin-left:-9.856616pt;}
._3e{margin-left:-7.552000pt;}
._e{margin-left:-6.325333pt;}
._13{margin-left:-5.055467pt;}
._3{margin-left:-3.893867pt;}
._2{margin-left:-2.528533pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.707200pt;}
._8{width:3.248000pt;}
._9{width:4.485333pt;}
._d{width:5.541867pt;}
._a{width:7.061333pt;}
._f{width:8.128000pt;}
._10{width:10.138667pt;}
._b{width:11.787200pt;}
._14{width:13.141333pt;}
._c{width:14.192533pt;}
._12{width:16.021334pt;}
._5{width:19.840000pt;}
._18{width:32.298649pt;}
._44{width:33.194667pt;}
._f4{width:47.445333pt;}
._6{width:50.005325pt;}
._df{width:54.570667pt;}
._dc{width:56.917333pt;}
._e1{width:59.306667pt;}
._28{width:62.412302pt;}
._f9{width:64.042667pt;}
._113{width:65.450667pt;}
._56{width:66.389333pt;}
._d0{width:67.840000pt;}
._a6{width:68.736000pt;}
._46{width:71.125333pt;}
._87{width:73.514667pt;}
._8f{width:75.861333pt;}
._27{width:77.233632pt;}
._af{width:78.250667pt;}
._43{width:81.407995pt;}
._30{width:84.096018pt;}
._1e{width:85.674649pt;}
._2d{width:87.637333pt;}
._2b{width:89.685333pt;}
._23{width:91.904000pt;}
._2a{width:94.421333pt;}
._32{width:96.768000pt;}
._2f{width:99.114667pt;}
._34{width:101.802667pt;}
._22{width:103.338667pt;}
._2c{width:105.984000pt;}
._31{width:107.007982pt;}
._2e{width:108.501333pt;}
._19{width:109.440000pt;}
._38{width:118.144000pt;}
._41{width:119.519993pt;}
._15{width:137.722667pt;}
._35{width:142.293333pt;}
._4a{width:146.986667pt;}
._40{width:156.864529pt;}
._24{width:162.389333pt;}
._29{width:163.626667pt;}
._3d{width:167.296000pt;}
._3a{width:168.490649pt;}
._37{width:172.373333pt;}
._1c{width:173.440000pt;}
._39{width:174.720000pt;}
._33{width:177.194667pt;}
._36{width:179.584000pt;}
._3c{width:185.045316pt;}
._16{width:190.133867pt;}
._17{width:192.480533pt;}
._1b{width:195.839982pt;}
._3b{width:196.949316pt;}
._47{width:224.298667pt;}
._10d{width:231.659182pt;}
._ed{width:238.091182pt;}
._49{width:245.632000pt;}
._3f{width:252.320000pt;}
._1a{width:253.824000pt;}
._1f{width:256.000000pt;}
._25{width:258.986667pt;}
._fb{width:264.703448pt;}
._4c{width:266.965333pt;}
._26{width:277.546667pt;}
._53{width:288.298667pt;}
._fa{width:291.668782pt;}
._e2{width:296.287982pt;}
._21{width:309.503982pt;}
._42{width:316.447994pt;}
._1d{width:317.824000pt;}
._107{width:328.928515pt;}
._b3{width:341.674648pt;}
._109{width:347.969048pt;}
._20{width:371.157333pt;}
._ec{width:372.416515pt;}
._de{width:388.192515pt;}
._ea{width:396.031982pt;}
._b8{width:402.357848pt;}
._ce{width:409.215982pt;}
._cd{width:411.562648pt;}
._fc{width:417.717848pt;}
._10c{width:418.997848pt;}
._104{width:428.256515pt;}
._e5{width:455.006346pt;}
._10f{width:456.362115pt;}
._e7{width:478.901315pt;}
._b4{width:492.458648pt;}
._cc{width:499.071982pt;}
._114{width:503.210115pt;}
._ee{width:509.248515pt;}
._89{width:513.279982pt;}
._91{width:516.223982pt;}
._ef{width:517.589315pt;}
._a7{width:523.627181pt;}
._b0{width:525.845315pt;}
._f3{width:527.308248pt;}
._10e{width:529.322115pt;}
._110{width:530.355680pt;}
._115{width:531.839467pt;}
._105{width:536.671982pt;}
._f1{width:539.115182pt;}
._116{width:543.317333pt;}
._75{width:546.752515pt;}
._111{width:560.008480pt;}
._118{width:567.978667pt;}
._112{width:573.450648pt;}
._108{width:589.354648pt;}
._dd{width:590.955715pt;}
._10b{width:597.204782pt;}
._52{width:602.689048pt;}
._cb{width:610.986648pt;}
._f5{width:612.308782pt;}
._fd{width:614.058648pt;}
._4f{width:622.070915pt;}
._f7{width:624.255448pt;}
._4d{width:626.625048pt;}
._106{width:629.728515pt;}
._f6{width:630.752515pt;}
._96{width:631.947182pt;}
._83{width:633.567999pt;}
._4e{width:634.549848pt;}
._eb{width:636.543982pt;}
._ca{width:638.688515pt;}
._117{width:641.450667pt;}
._c8{width:646.368515pt;}
._a1{width:648.703982pt;}
._9b{width:651.104515pt;}
._50{width:654.827715pt;}
._85{width:656.383999pt;}
._d9{width:657.919982pt;}
._101{width:663.616515pt;}
._d6{width:666.453315pt;}
._8a{width:667.349315pt;}
._e9{width:669.781315pt;}
._d7{width:671.572782pt;}
._4b{width:672.693848pt;}
._e0{width:676.010648pt;}
._9e{width:677.077315pt;}
._81{width:679.423982pt;}
._ac{width:683.903982pt;}
._da{width:686.335982pt;}
._d2{width:688.907182pt;}
._93{width:690.133315pt;}
._d3{width:693.600515pt;}
._7e{width:696.021315pt;}
._103{width:698.111982pt;}
._ae{width:699.018648pt;}
._57{width:700.725848pt;}
._d4{width:701.695982pt;}
._fe{width:702.890648pt;}
._99{width:704.085315pt;}
._5b{width:705.461848pt;}
._9d{width:706.474648pt;}
._ff{width:711.765315pt;}
._ba{width:713.557315pt;}
._b7{width:714.891182pt;}
._a3{width:715.861315pt;}
._61{width:717.909315pt;}
._b5{width:722.090648pt;}
._10a{width:723.253848pt;}
._48{width:724.362648pt;}
._9a{width:727.765315pt;}
._d1{width:732.683182pt;}
._e3{width:733.877848pt;}
._80{width:744.544515pt;}
._9c{width:747.093315pt;}
._60{width:748.043182pt;}
._e4{width:749.633048pt;}
._c9{width:750.549315pt;}
._58{width:751.669848pt;}
._100{width:752.938648pt;}
._c0{width:753.877315pt;}
._e6{width:755.168515pt;}
._55{width:756.448515pt;}
._be{width:757.461315pt;}
._c4{width:758.880515pt;}
._a4{width:760.917315pt;}
._db{width:762.197315pt;}
._c7{width:764.757315pt;}
._c1{width:766.933315pt;}
._76{width:769.535982pt;}
._5d{width:770.645315pt;}
._5f{width:772.064515pt;}
._59{width:775.349848pt;}
._6b{width:777.557315pt;}
._51{width:779.104515pt;}
._5a{width:780.128515pt;}
._6a{width:781.439982pt;}
._8d{width:783.445315pt;}
._6c{width:784.725315pt;}
._8e{width:785.877315pt;}
._bb{width:787.211182pt;}
._a5{width:788.479982pt;}
._6f{width:789.418648pt;}
._62{width:790.869315pt;}
._94{width:791.807982pt;}
._b9{width:793.898648pt;}
._ad{width:795.349315pt;}
._54{width:797.152515pt;}
._c6{width:798.847982pt;}
._97{width:800.085315pt;}
._a8{width:805.984515pt;}
._65{width:807.423982pt;}
._64{width:810.666648pt;}
._69{width:812.245315pt;}
._d8{width:813.653315pt;}
._7{width:817.664000pt;}
._a9{width:822.282648pt;}
._8c{width:823.765315pt;}
._79{width:824.959982pt;}
._bc{width:826.410648pt;}
._90{width:827.616515pt;}
._c5{width:829.206382pt;}
._bd{width:831.146648pt;}
._72{width:832.724782pt;}
._82{width:834.431982pt;}
._98{width:836.821315pt;}
._f8{width:837.845315pt;}
._6d{width:839.349848pt;}
._5e{width:842.239982pt;}
._67{width:843.946648pt;}
._77{width:845.397315pt;}
._78{width:847.743982pt;}
._68{width:848.639982pt;}
._71{width:851.029315pt;}
._7c{width:853.162115pt;}
._84{width:856.404782pt;}
._a2{width:858.154648pt;}
._95{width:860.501315pt;}
._63{width:862.805315pt;}
._92{width:864.042648pt;}
._66{width:864.938115pt;}
._7d{width:867.626648pt;}
._7b{width:869.973315pt;}
._ab{width:871.392515pt;}
._9f{width:872.319982pt;}
._c3{width:873.269315pt;}
._bf{width:874.751982pt;}
._70{width:877.098648pt;}
._aa{width:879.456515pt;}
._7f{width:881.834648pt;}
._45{width:884.181315pt;}
._b1{width:886.485315pt;}
._73{width:888.959982pt;}
._b6{width:892.043182pt;}
._8b{width:893.695982pt;}
._cf{width:894.676782pt;}
._a0{width:896.085315pt;}
._74{width:898.431982pt;}
._f2{width:900.960515pt;}
._b2{width:903.082648pt;}
._6e{width:905.514648pt;}
._d5{width:907.903982pt;}
._86{width:912.597315pt;}
._e8{width:914.090648pt;}
._5c{width:914.986648pt;}
._c2{width:919.989848pt;}
._7a{width:926.847982pt;}
._f0{width:929.237315pt;}
._88{width:931.583982pt;}
._102{width:953.599982pt;}
.fs8{font-size:29.866667pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:44.111465pt;}
.y25{bottom:44.112000pt;}
.y22{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.ye2{bottom:80.000000pt;}
.ye4{bottom:80.036280pt;}
.ye5{bottom:80.068288pt;}
.ye6{bottom:80.100296pt;}
.ye7{bottom:80.132304pt;}
.ye8{bottom:80.164312pt;}
.yb8{bottom:80.708903pt;}
.yc6{bottom:80.708923pt;}
.y9f{bottom:80.708944pt;}
.ycb{bottom:80.725333pt;}
.yfa{bottom:80.991997pt;}
.y284{bottom:81.008964pt;}
.y2bc{bottom:81.012903pt;}
.y45{bottom:84.266667pt;}
.y1df{bottom:85.960421pt;}
.y4{bottom:86.333337pt;}
.ye9{bottom:88.164312pt;}
.y170{bottom:90.259086pt;}
.ydf{bottom:90.817057pt;}
.y11f{bottom:92.024394pt;}
.yca{bottom:93.386667pt;}
.yf9{bottom:93.653330pt;}
.y2be{bottom:93.659630pt;}
.y283{bottom:93.670297pt;}
.y2bb{bottom:93.674236pt;}
.y74{bottom:95.708903pt;}
.yb7{bottom:96.708903pt;}
.yc5{bottom:96.708923pt;}
.y9e{bottom:96.708944pt;}
.y10f{bottom:97.499593pt;}
.y20b{bottom:99.003087pt;}
.y1de{bottom:102.088421pt;}
.y24a{bottom:103.972927pt;}
.y16f{bottom:104.395086pt;}
.y44{bottom:105.471998pt;}
.y2bd{bottom:106.320964pt;}
.y282{bottom:106.331630pt;}
.y2ba{bottom:106.335570pt;}
.yde{bottom:106.817057pt;}
.y11e{bottom:108.024394pt;}
.y73{bottom:111.708903pt;}
.yb6{bottom:112.708903pt;}
.yc4{bottom:112.708923pt;}
.y9d{bottom:112.708944pt;}
.y10e{bottom:113.499593pt;}
.y20a{bottom:115.131087pt;}
.y249{bottom:116.634261pt;}
.y43{bottom:118.133331pt;}
.y1dd{bottom:118.216421pt;}
.y16e{bottom:118.531086pt;}
.y281{bottom:118.992964pt;}
.y2b9{bottom:118.996903pt;}
.ydd{bottom:122.817057pt;}
.y21{bottom:123.790666pt;}
.y11d{bottom:124.024394pt;}
.y72{bottom:127.708903pt;}
.yb5{bottom:128.708903pt;}
.yc3{bottom:128.708923pt;}
.y9c{bottom:128.708944pt;}
.y248{bottom:129.295594pt;}
.y10d{bottom:129.499593pt;}
.y209{bottom:131.259087pt;}
.y280{bottom:131.654297pt;}
.y2b8{bottom:131.658236pt;}
.y16d{bottom:132.667086pt;}
.y1dc{bottom:134.344421pt;}
.ydc{bottom:138.817057pt;}
.y11c{bottom:140.024394pt;}
.y247{bottom:141.956927pt;}
.y16c{bottom:142.603086pt;}
.y71{bottom:143.708903pt;}
.y27f{bottom:144.315630pt;}
.y2b7{bottom:144.319570pt;}
.yb4{bottom:144.708903pt;}
.yc2{bottom:144.708923pt;}
.y9b{bottom:144.708944pt;}
.y10c{bottom:145.499593pt;}
.y208{bottom:147.387087pt;}
.y1db{bottom:150.472421pt;}
.y246{bottom:154.618261pt;}
.ydb{bottom:154.817057pt;}
.y11b{bottom:156.024394pt;}
.y16b{bottom:156.739086pt;}
.y27e{bottom:156.976964pt;}
.y2b6{bottom:156.980903pt;}
.y70{bottom:159.708903pt;}
.yb3{bottom:160.708903pt;}
.yc1{bottom:160.708923pt;}
.y9a{bottom:160.708944pt;}
.y10b{bottom:161.499593pt;}
.y207{bottom:163.515087pt;}
.y1da{bottom:166.600421pt;}
.y245{bottom:167.279594pt;}
.y27d{bottom:169.638297pt;}
.y2b5{bottom:169.642236pt;}
.yda{bottom:170.817057pt;}
.y16a{bottom:170.875086pt;}
.y11a{bottom:172.024394pt;}
.y18{bottom:175.052000pt;}
.y6f{bottom:175.708903pt;}
.yb2{bottom:176.708903pt;}
.yc0{bottom:176.708923pt;}
.y99{bottom:176.708944pt;}
.y10a{bottom:177.499593pt;}
.y206{bottom:179.643087pt;}
.y244{bottom:179.940927pt;}
.y27c{bottom:182.299630pt;}
.y2b4{bottom:182.303570pt;}
.y1d9{bottom:182.728421pt;}
.y169{bottom:185.011086pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yd9{bottom:186.817057pt;}
.y119{bottom:188.024394pt;}
.ye3{bottom:189.678935pt;}
.y6e{bottom:191.708903pt;}
.y243{bottom:192.602261pt;}
.yb1{bottom:192.708903pt;}
.ybf{bottom:192.708923pt;}
.y98{bottom:192.708944pt;}
.y109{bottom:193.499593pt;}
.y27b{bottom:194.960964pt;}
.y2b3{bottom:194.964903pt;}
.y205{bottom:195.771087pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yea{bottom:197.838975pt;}
.y1d8{bottom:198.856421pt;}
.y168{bottom:199.147086pt;}
.yd8{bottom:202.817057pt;}
.y42{bottom:203.615194pt;}
.y118{bottom:204.024394pt;}
.y242{bottom:205.263594pt;}
.y27a{bottom:207.622297pt;}
.y2b2{bottom:207.626236pt;}
.y6d{bottom:207.708903pt;}
.y167{bottom:208.483086pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb0{bottom:208.708903pt;}
.ybe{bottom:208.708923pt;}
.y97{bottom:208.708944pt;}
.y108{bottom:209.499593pt;}
.y204{bottom:211.899087pt;}
.y1d7{bottom:214.984421pt;}
.y241{bottom:217.924927pt;}
.yd7{bottom:218.817057pt;}
.y117{bottom:220.024394pt;}
.y279{bottom:220.283630pt;}
.y2b1{bottom:220.287570pt;}
.y166{bottom:222.619086pt;}
.y6c{bottom:223.708903pt;}
.yaf{bottom:224.708903pt;}
.ybd{bottom:224.708923pt;}
.y96{bottom:224.708944pt;}
.y107{bottom:225.499593pt;}
.y203{bottom:228.027087pt;}
.y240{bottom:230.586261pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1d6{bottom:231.112421pt;}
.y278{bottom:232.944964pt;}
.y2b0{bottom:232.948903pt;}
.yd6{bottom:234.817057pt;}
.y116{bottom:236.024394pt;}
.y41{bottom:236.281860pt;}
.y165{bottom:236.755086pt;}
.y6b{bottom:239.708903pt;}
.yae{bottom:240.708903pt;}
.ybc{bottom:240.708923pt;}
.y95{bottom:240.708944pt;}
.y106{bottom:241.499593pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y23f{bottom:243.247594pt;}
.y202{bottom:244.155087pt;}
.y277{bottom:245.606297pt;}
.y2af{bottom:245.610236pt;}
.y164{bottom:246.091086pt;}
.y1d5{bottom:247.240421pt;}
.yd5{bottom:250.817057pt;}
.y115{bottom:252.024394pt;}
.y40{bottom:252.281860pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yeb{bottom:255.076308pt;}
.y6a{bottom:255.708903pt;}
.y23e{bottom:255.908927pt;}
.yad{bottom:256.708903pt;}
.ybb{bottom:256.708923pt;}
.y94{bottom:256.708944pt;}
.y105{bottom:257.499593pt;}
.y276{bottom:258.267630pt;}
.y2ae{bottom:258.271570pt;}
.y163{bottom:260.227086pt;}
.y201{bottom:260.283087pt;}
.yec{bottom:263.076308pt;}
.y1d4{bottom:263.368421pt;}
.yd4{bottom:266.817057pt;}
.y23d{bottom:268.570261pt;}
.y275{bottom:270.928964pt;}
.y2ad{bottom:270.932903pt;}
.y69{bottom:271.708903pt;}
.yac{bottom:272.708903pt;}
.y13b{bottom:272.708923pt;}
.y93{bottom:272.708944pt;}
.y104{bottom:273.499593pt;}
.y162{bottom:274.363086pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y200{bottom:276.411087pt;}
.y219{bottom:277.494667pt;}
.y1d3{bottom:279.496421pt;}
.y23c{bottom:281.231594pt;}
.yd3{bottom:282.817057pt;}
.y274{bottom:283.590297pt;}
.y2ac{bottom:283.594236pt;}
.y114{bottom:284.024394pt;}
.y3f{bottom:284.948527pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y68{bottom:287.708903pt;}
.y161{bottom:288.499086pt;}
.yab{bottom:288.708903pt;}
.yba{bottom:288.708923pt;}
.y92{bottom:288.708944pt;}
.y103{bottom:289.499593pt;}
.y1ff{bottom:292.539087pt;}
.y23b{bottom:293.892927pt;}
.y1d2{bottom:295.624421pt;}
.y273{bottom:296.251630pt;}
.y2ab{bottom:296.255570pt;}
.yd2{bottom:298.817057pt;}
.y3e{bottom:300.948527pt;}
.y160{bottom:302.635086pt;}
.y67{bottom:303.708903pt;}
.yaa{bottom:304.708903pt;}
.y13a{bottom:304.708923pt;}
.y91{bottom:304.708944pt;}
.y102{bottom:305.499593pt;}
.y218{bottom:306.134667pt;}
.y23a{bottom:306.554261pt;}
.y1fe{bottom:308.667087pt;}
.y272{bottom:308.912964pt;}
.y2aa{bottom:308.916903pt;}
.yf{bottom:309.452000pt;}
.y1d1{bottom:311.752421pt;}
.y15f{bottom:311.971086pt;}
.yd1{bottom:314.817057pt;}
.y3d{bottom:316.948527pt;}
.y239{bottom:319.215594pt;}
.y66{bottom:319.708903pt;}
.yed{bottom:320.313641pt;}
.ya9{bottom:320.708903pt;}
.yb9{bottom:320.708923pt;}
.y90{bottom:320.708944pt;}
.y101{bottom:321.499593pt;}
.y271{bottom:321.574297pt;}
.y2a9{bottom:321.578236pt;}
.y217{bottom:322.337333pt;}
.y1fd{bottom:324.795087pt;}
.y15e{bottom:326.107086pt;}
.y1d0{bottom:327.880421pt;}
.yee{bottom:328.313641pt;}
.y1b5{bottom:329.507087pt;}
.yd0{bottom:330.817057pt;}
.y238{bottom:331.876927pt;}
.y113{bottom:332.024414pt;}
.y3c{bottom:332.948527pt;}
.y270{bottom:334.235630pt;}
.y2a8{bottom:334.239570pt;}
.y65{bottom:335.708903pt;}
.ya8{bottom:336.708903pt;}
.y8f{bottom:336.708944pt;}
.y100{bottom:337.499593pt;}
.y216{bottom:338.465333pt;}
.y15d{bottom:340.243086pt;}
.y1fc{bottom:340.923087pt;}
.ye{bottom:343.809333pt;}
.y1cf{bottom:344.008421pt;}
.y237{bottom:344.538261pt;}
.y1b4{bottom:345.843087pt;}
.ycf{bottom:346.817057pt;}
.y26f{bottom:346.896964pt;}
.y2a7{bottom:346.900903pt;}
.y112{bottom:348.024414pt;}
.y3b{bottom:348.948527pt;}
.y215{bottom:351.126667pt;}
.y64{bottom:351.708903pt;}
.ya7{bottom:352.708903pt;}
.y139{bottom:352.708944pt;}
.yff{bottom:353.499593pt;}
.y15c{bottom:354.379086pt;}
.y1fb{bottom:357.051087pt;}
.y236{bottom:357.199594pt;}
.y26e{bottom:359.558297pt;}
.y2a6{bottom:359.562236pt;}
.y1b3{bottom:359.979087pt;}
.y1ce{bottom:360.136421pt;}
.yd{bottom:362.706666pt;}
.yce{bottom:362.817057pt;}
.y3a{bottom:364.948527pt;}
.y214{bottom:367.254667pt;}
.y63{bottom:367.708903pt;}
.y15b{bottom:368.515086pt;}
.ya6{bottom:368.708903pt;}
.y8e{bottom:368.708944pt;}
.y1b2{bottom:369.315087pt;}
.yfe{bottom:369.499593pt;}
.y235{bottom:369.860927pt;}
.y26d{bottom:372.219630pt;}
.y2a5{bottom:372.223570pt;}
.y1fa{bottom:373.179087pt;}
.y1cd{bottom:376.264421pt;}
.y1b1{bottom:378.651087pt;}
.ycd{bottom:378.817057pt;}
.y39{bottom:380.948527pt;}
.y234{bottom:382.522261pt;}
.y15a{bottom:382.651086pt;}
.y213{bottom:383.382667pt;}
.y62{bottom:383.708903pt;}
.ya5{bottom:384.708903pt;}
.y26c{bottom:384.880964pt;}
.y2a4{bottom:384.884903pt;}
.yfd{bottom:385.499593pt;}
.y1f9{bottom:389.307087pt;}
.y1cc{bottom:392.392421pt;}
.ycc{bottom:394.817057pt;}
.y1b0{bottom:394.915087pt;}
.y233{bottom:395.183594pt;}
.y158{bottom:396.779087pt;}
.y38{bottom:396.948527pt;}
.y26b{bottom:397.542297pt;}
.y2a3{bottom:397.546236pt;}
.y122{bottom:398.218224pt;}
.y212{bottom:399.510667pt;}
.y61{bottom:399.708903pt;}
.yef{bottom:400.313641pt;}
.ya4{bottom:400.708903pt;}
.y8d{bottom:400.708944pt;}
.yfc{bottom:401.499593pt;}
.y18f{bottom:405.379087pt;}
.y1f8{bottom:405.435087pt;}
.y157{bottom:406.115087pt;}
.y232{bottom:407.844927pt;}
.yf0{bottom:408.313641pt;}
.y1cb{bottom:408.520421pt;}
.y26a{bottom:410.203630pt;}
.y2a2{bottom:410.207570pt;}
.y1af{bottom:411.179087pt;}
.y37{bottom:412.948527pt;}
.y156{bottom:415.451087pt;}
.y211{bottom:415.638667pt;}
.y60{bottom:415.708903pt;}
.ya3{bottom:416.708903pt;}
.yfb{bottom:417.499593pt;}
.y18e{bottom:419.515087pt;}
.y231{bottom:420.506261pt;}
.y138{bottom:421.205986pt;}
.y1f7{bottom:421.563087pt;}
.y269{bottom:422.864964pt;}
.y2a1{bottom:422.868903pt;}
.y1ca{bottom:424.648421pt;}
.y155{bottom:424.787087pt;}
.y1ae{bottom:427.443087pt;}
.y18d{bottom:428.851087pt;}
.y36{bottom:428.948527pt;}
.y5f{bottom:431.708903pt;}
.ya2{bottom:432.708903pt;}
.y230{bottom:433.167594pt;}
.y159{bottom:434.115086pt;}
.y154{bottom:434.123087pt;}
.y268{bottom:435.526297pt;}
.y2a0{bottom:435.530236pt;}
.y137{bottom:437.408652pt;}
.y1f6{bottom:437.691087pt;}
.y210{bottom:440.534667pt;}
.y1c9{bottom:440.776421pt;}
.y18c{bottom:442.987087pt;}
.y1ad{bottom:443.643087pt;}
.y35{bottom:444.948527pt;}
.y22f{bottom:445.828927pt;}
.yc{bottom:446.990669pt;}
.y5e{bottom:447.708903pt;}
.y267{bottom:448.187630pt;}
.y29f{bottom:448.191570pt;}
.y153{bottom:448.259087pt;}
.y8c{bottom:448.708903pt;}
.y111{bottom:452.048953pt;}
.ye1{bottom:452.208947pt;}
.y136{bottom:453.536652pt;}
.y1f5{bottom:453.819087pt;}
.y1c8{bottom:456.904421pt;}
.y18b{bottom:457.123087pt;}
.y1ac{bottom:457.843087pt;}
.y22e{bottom:458.490261pt;}
.y266{bottom:460.848964pt;}
.y29e{bottom:460.852903pt;}
.y34{bottom:460.948527pt;}
.y152{bottom:462.395087pt;}
.yb{bottom:462.990669pt;}
.y5d{bottom:463.708903pt;}
.y8b{bottom:464.708903pt;}
.y110{bottom:464.710286pt;}
.ye0{bottom:464.870280pt;}
.yc9{bottom:465.335570pt;}
.yf1{bottom:465.550975pt;}
.y135{bottom:469.664652pt;}
.y1f4{bottom:469.947087pt;}
.y22d{bottom:471.151594pt;}
.y18a{bottom:471.259087pt;}
.y1ab{bottom:471.979087pt;}
.y1c7{bottom:473.032421pt;}
.y265{bottom:473.510297pt;}
.y29d{bottom:473.514236pt;}
.yf2{bottom:473.550975pt;}
.y151{bottom:476.531087pt;}
.y33{bottom:476.948527pt;}
.ya{bottom:478.990666pt;}
.y5c{bottom:479.708903pt;}
.y8a{bottom:480.708903pt;}
.yc8{bottom:481.335570pt;}
.y22c{bottom:483.812927pt;}
.y189{bottom:485.395087pt;}
.y134{bottom:485.792652pt;}
.y1f3{bottom:486.075087pt;}
.y1aa{bottom:486.115087pt;}
.y264{bottom:486.171630pt;}
.y29c{bottom:486.175570pt;}
.y20f{bottom:486.377980pt;}
.y1c6{bottom:489.160421pt;}
.y150{bottom:490.667087pt;}
.y32{bottom:492.948527pt;}
.y9{bottom:494.990666pt;}
.y5b{bottom:495.708903pt;}
.y22b{bottom:496.474261pt;}
.y89{bottom:496.708903pt;}
.y263{bottom:498.832964pt;}
.y29b{bottom:498.836903pt;}
.y188{bottom:499.531087pt;}
.y1a9{bottom:500.251087pt;}
.y133{bottom:501.920652pt;}
.y1f2{bottom:502.203087pt;}
.y20e{bottom:502.379313pt;}
.y14f{bottom:504.803087pt;}
.y1c5{bottom:505.288421pt;}
.y31{bottom:508.948527pt;}
.y22a{bottom:509.135594pt;}
.y1a8{bottom:509.587087pt;}
.y262{bottom:511.494297pt;}
.y29a{bottom:511.498236pt;}
.y5a{bottom:511.708903pt;}
.y88{bottom:512.708903pt;}
.yc7{bottom:513.335570pt;}
.y187{bottom:513.667087pt;}
.y132{bottom:518.059319pt;}
.y1f1{bottom:518.331087pt;}
.y14e{bottom:518.939087pt;}
.y1c4{bottom:521.416421pt;}
.y229{bottom:521.796927pt;}
.y1a7{bottom:523.723087pt;}
.y261{bottom:524.155630pt;}
.y299{bottom:524.159570pt;}
.y30{bottom:524.948527pt;}
.y59{bottom:527.708903pt;}
.y186{bottom:527.803087pt;}
.y87{bottom:528.708903pt;}
.yf3{bottom:530.788308pt;}
.y14d{bottom:533.075087pt;}
.y131{bottom:534.187319pt;}
.y228{bottom:534.458261pt;}
.y1f0{bottom:534.459087pt;}
.y260{bottom:536.816964pt;}
.y298{bottom:536.820903pt;}
.y1c3{bottom:537.544421pt;}
.y1a4{bottom:537.659087pt;}
.yf4{bottom:538.788308pt;}
.y2f{bottom:540.948527pt;}
.y185{bottom:541.939087pt;}
.y58{bottom:543.708903pt;}
.y86{bottom:544.708903pt;}
.y1a6{bottom:546.987087pt;}
.y1a3{bottom:546.995087pt;}
.y227{bottom:547.119594pt;}
.y14c{bottom:547.211087pt;}
.y25f{bottom:549.478297pt;}
.y297{bottom:549.482236pt;}
.y130{bottom:550.315319pt;}
.y1ef{bottom:550.587087pt;}
.y1c2{bottom:553.672421pt;}
.y20d{bottom:554.128421pt;}
.y184{bottom:556.075087pt;}
.y1a5{bottom:556.323087pt;}
.y1a2{bottom:556.331087pt;}
.y2e{bottom:556.948527pt;}
.y57{bottom:559.708903pt;}
.y226{bottom:559.780927pt;}
.y85{bottom:560.708903pt;}
.y14b{bottom:561.347087pt;}
.y25e{bottom:562.139630pt;}
.y296{bottom:562.143570pt;}
.y12f{bottom:566.443319pt;}
.y1ee{bottom:566.715087pt;}
.y1c1{bottom:569.800421pt;}
.y183{bottom:570.211087pt;}
.y1a1{bottom:570.467087pt;}
.y225{bottom:572.442261pt;}
.y2d{bottom:572.948527pt;}
.y8{bottom:573.786667pt;}
.y25d{bottom:574.800964pt;}
.y295{bottom:574.804903pt;}
.y14a{bottom:575.483087pt;}
.y56{bottom:575.708903pt;}
.y84{bottom:576.708903pt;}
.y12e{bottom:582.571319pt;}
.y20c{bottom:582.768421pt;}
.y1ed{bottom:582.843087pt;}
.y181{bottom:584.347087pt;}
.y1a0{bottom:584.603087pt;}
.y1c0{bottom:585.928421pt;}
.y25c{bottom:587.462297pt;}
.y294{bottom:587.466236pt;}
.y2c{bottom:588.948527pt;}
.y149{bottom:589.619087pt;}
.y55{bottom:591.708903pt;}
.y7{bottom:592.685334pt;}
.y83{bottom:592.708903pt;}
.y180{bottom:593.683087pt;}
.y19f{bottom:593.939087pt;}
.y12d{bottom:598.709986pt;}
.y1ec{bottom:598.971087pt;}
.y25b{bottom:600.123630pt;}
.y293{bottom:600.127570pt;}
.y224{bottom:601.375610pt;}
.y1bf{bottom:602.056421pt;}
.y182{bottom:603.011087pt;}
.y17f{bottom:603.019087pt;}
.y148{bottom:603.755087pt;}
.y2b{bottom:604.948527pt;}
.y54{bottom:607.708903pt;}
.y19e{bottom:608.075087pt;}
.y82{bottom:608.708903pt;}
.y25a{bottom:612.784964pt;}
.y292{bottom:612.788903pt;}
.y12c{bottom:614.837986pt;}
.y1eb{bottom:615.099087pt;}
.y17e{bottom:617.155087pt;}
.y147{bottom:617.891087pt;}
.y1be{bottom:618.184421pt;}
.y19d{bottom:622.211087pt;}
.y53{bottom:623.708903pt;}
.y81{bottom:624.708903pt;}
.y259{bottom:625.446297pt;}
.y291{bottom:625.450236pt;}
.y12b{bottom:630.965986pt;}
.y1ea{bottom:631.227087pt;}
.y17d{bottom:631.291087pt;}
.y19c{bottom:631.547087pt;}
.y146{bottom:632.027087pt;}
.y1bd{bottom:634.312421pt;}
.y258{bottom:638.107630pt;}
.y290{bottom:638.111570pt;}
.yf5{bottom:639.577641pt;}
.y52{bottom:639.708903pt;}
.y80{bottom:640.708903pt;}
.y17c{bottom:645.427087pt;}
.y6{bottom:645.598667pt;}
.y19b{bottom:645.683087pt;}
.y145{bottom:646.163087pt;}
.y12a{bottom:647.093986pt;}
.y1e9{bottom:647.355087pt;}
.yf6{bottom:647.577641pt;}
.y2a{bottom:648.053063pt;}
.y1bc{bottom:650.451087pt;}
.y223{bottom:650.751570pt;}
.y257{bottom:650.768964pt;}
.y28f{bottom:650.772903pt;}
.y51{bottom:655.708903pt;}
.y7f{bottom:656.708903pt;}
.y17b{bottom:659.563087pt;}
.y19a{bottom:659.819087pt;}
.y144{bottom:660.299087pt;}
.y29{bottom:660.714396pt;}
.y1bb{bottom:663.112421pt;}
.y129{bottom:663.221986pt;}
.y222{bottom:663.412903pt;}
.y256{bottom:663.430297pt;}
.y28e{bottom:663.434236pt;}
.y1e8{bottom:663.483087pt;}
.y3{bottom:668.977329pt;}
.y50{bottom:671.708903pt;}
.y7e{bottom:672.708903pt;}
.y17a{bottom:673.699087pt;}
.y199{bottom:673.955087pt;}
.y143{bottom:674.427087pt;}
.y221{bottom:676.074236pt;}
.y255{bottom:676.091630pt;}
.y28d{bottom:676.095570pt;}
.y128{bottom:679.360652pt;}
.y1e7{bottom:679.611087pt;}
.y142{bottom:683.763087pt;}
.y4f{bottom:687.708903pt;}
.y179{bottom:687.835087pt;}
.y1ba{bottom:688.008421pt;}
.y198{bottom:688.091087pt;}
.y7d{bottom:688.708903pt;}
.y220{bottom:688.735570pt;}
.y254{bottom:688.752964pt;}
.y28c{bottom:688.756903pt;}
.y28{bottom:694.357503pt;}
.y127{bottom:695.488652pt;}
.y1e6{bottom:695.739087pt;}
.y197{bottom:697.427087pt;}
.y141{bottom:697.899087pt;}
.y21f{bottom:701.396903pt;}
.y253{bottom:701.414297pt;}
.y28b{bottom:701.418236pt;}
.y178{bottom:701.971087pt;}
.y4e{bottom:703.708903pt;}
.y7c{bottom:704.708903pt;}
.y1b9{bottom:709.203087pt;}
.y196{bottom:711.563087pt;}
.y126{bottom:711.627319pt;}
.y1e5{bottom:711.867087pt;}
.y140{bottom:712.035087pt;}
.y21e{bottom:714.058236pt;}
.y252{bottom:714.075630pt;}
.y28a{bottom:714.079570pt;}
.y177{bottom:716.107087pt;}
.y4d{bottom:719.708903pt;}
.y7b{bottom:720.708903pt;}
.y1b8{bottom:721.864421pt;}
.y195{bottom:725.699087pt;}
.y13f{bottom:726.163087pt;}
.y21d{bottom:726.719570pt;}
.y251{bottom:726.736964pt;}
.y289{bottom:726.740903pt;}
.y1e4{bottom:727.995087pt;}
.y176{bottom:730.243087pt;}
.y27{bottom:732.351581pt;}
.y13e{bottom:735.499087pt;}
.y4c{bottom:735.708903pt;}
.y125{bottom:736.512652pt;}
.y7a{bottom:736.708903pt;}
.y21c{bottom:739.380903pt;}
.y250{bottom:739.398297pt;}
.y288{bottom:739.402236pt;}
.y194{bottom:739.835087pt;}
.y1e3{bottom:744.123087pt;}
.y175{bottom:744.379087pt;}
.yf7{bottom:748.366975pt;}
.y13d{bottom:749.635087pt;}
.y4b{bottom:751.708903pt;}
.y24f{bottom:752.059630pt;}
.y287{bottom:752.063570pt;}
.y26{bottom:752.354248pt;}
.y79{bottom:752.708903pt;}
.y191{bottom:753.971087pt;}
.yf8{bottom:756.366975pt;}
.y124{bottom:757.707319pt;}
.y174{bottom:758.515087pt;}
.y190{bottom:763.307087pt;}
.y1e2{bottom:763.675087pt;}
.y21b{bottom:764.714236pt;}
.y24e{bottom:764.720964pt;}
.y286{bottom:764.724903pt;}
.y1b7{bottom:767.706236pt;}
.y4a{bottom:767.708903pt;}
.y78{bottom:768.708903pt;}
.y123{bottom:770.368652pt;}
.y13c{bottom:772.531087pt;}
.y193{bottom:772.635087pt;}
.y173{bottom:772.643087pt;}
.y21a{bottom:777.375570pt;}
.y24d{bottom:777.382297pt;}
.y285{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y192{bottom:781.971087pt;}
.y172{bottom:781.979087pt;}
.y1b6{bottom:783.707570pt;}
.y77{bottom:784.708903pt;}
.y1e1{bottom:784.869754pt;}
.y24c{bottom:790.043630pt;}
.y121{bottom:790.047570pt;}
.y1e0{bottom:797.531087pt;}
.y171{bottom:799.531087pt;}
.y49{bottom:799.708903pt;}
.y76{bottom:800.708903pt;}
.y24b{bottom:802.704964pt;}
.y120{bottom:802.708903pt;}
.y24{bottom:822.992964pt;}
.y75{bottom:835.262533pt;}
.ya1{bottom:835.654126pt;}
.y47{bottom:835.654289pt;}
.y23{bottom:835.654297pt;}
.ya0{bottom:836.112793pt;}
.y46{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h7{height:28.560000pt;}
.h12{height:28.701867pt;}
.ha{height:30.080000pt;}
.h19{height:30.752000pt;}
.h1b{height:32.736000pt;}
.h1c{height:32.992000pt;}
.h18{height:33.760000pt;}
.hb{height:37.376000pt;}
.h6{height:40.800000pt;}
.h11{height:41.002667pt;}
.h3{height:42.840000pt;}
.h1e{height:43.648000pt;}
.h15{height:45.013333pt;}
.h14{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h10{height:51.253333pt;}
.hf{height:52.746667pt;}
.h17{height:54.560000pt;}
.he{height:57.658667pt;}
.h13{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h1a{height:70.080000pt;}
.h16{height:91.648000pt;}
.h1d{height:95.658667pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x8{left:68.976400pt;}
.x9{left:69.996800pt;}
.x1c{left:76.071475pt;}
.xa{left:83.151469pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x22{left:95.380801pt;}
.x1f{left:118.109748pt;}
.x16{left:156.007477pt;}
.x17{left:164.007477pt;}
.x4{left:180.874667pt;}
.xc{left:225.101196pt;}
.xe{left:244.108133pt;}
.x1a{left:257.039493pt;}
.xf{left:269.004133pt;}
.x20{left:280.532802pt;}
.x10{left:285.132133pt;}
.x21{left:288.532802pt;}
.x11{left:301.260133pt;}
.x19{left:304.687483pt;}
.x1b{left:312.703495pt;}
.x12{left:317.388133pt;}
.x13{left:333.590800pt;}
.x14{left:346.252133pt;}
.x1d{left:363.156797pt;}
.xd{left:368.535858pt;}
.x18{left:398.015473pt;}
.x3{left:404.408000pt;}
.x5{left:431.874146pt;}
.x15{left:434.300659pt;}
.x1e{left:440.563070pt;}
.x7{left:463.672526pt;}
.xb{left:492.462402pt;}
}




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