
    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_46708b84afc90463c1fb494f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.036000;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_a8aff48a96716256fe271f14.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_f6d0b741b5baa46720e3a786.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982000;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_e8f3af070622e3b68a2653a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982000;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_5ab84601c0e24f5459a3c824.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_977377bcffcc1235d32e34dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_205ca7029019abd7b15e5e40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.674000;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_8caffcc4fc7a3a1b7bb36b58.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982000;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_115eca26189c5d426cc18c89.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_afa302741bd3a28345496016.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000500;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_4bf55287a97390881e1f2d7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000500;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_2fdcbbe53c9739c0ea5ab61c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_c154c8647186118dad1f950b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.022000;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_4aea0e478277850cf3e43aa7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.451000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_024054bdfc19f1ccb89272b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0be365a51918f11db3d8ceb1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_78e82d417e37008c62ce2e4d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0c070ad924acd5322a856b96.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.497000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a6e3b6daf19176b07c7d2dda.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.665000;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;}
.m3{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);}
.m4{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.216506,0.125000,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216506,0.125000,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216506,0.125000,-0.125000,0.216506,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);}
.v4{vertical-align:-58.459044px;}
.v6{vertical-align:-12.672000px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.700450px;}
.v2{vertical-align:21.690000px;}
.v1{vertical-align:23.748000px;}
.v7{vertical-align:25.842000px;}
.ls3{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000179px;}
.ls26{letter-spacing:0.002387px;}
.ls1e{letter-spacing:0.004877px;}
.ls46{letter-spacing:0.009270px;}
.ls42{letter-spacing:0.018118px;}
.ls30{letter-spacing:0.268992px;}
.ls31{letter-spacing:0.322790px;}
.lsc{letter-spacing:1.135736px;}
.ls16{letter-spacing:1.183552px;}
.ls35{letter-spacing:1.506355px;}
.ls2d{letter-spacing:1.560154px;}
.ls6{letter-spacing:2.259508px;}
.ls2b{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984915px;}
.ls41{letter-spacing:2.988532px;}
.ls0{letter-spacing:2.990915px;}
.ls1{letter-spacing:2.991113px;}
.ls8{letter-spacing:3.443059px;}
.ls39{letter-spacing:3.819686px;}
.ls34{letter-spacing:3.825038px;}
.ls32{letter-spacing:7.639373px;}
.ls2f{letter-spacing:7.698494px;}
.ls24{letter-spacing:9.952593px;}
.ls48{letter-spacing:10.705882px;}
.ls37{letter-spacing:12.266035px;}
.ls36{letter-spacing:12.319834px;}
.ls33{letter-spacing:12.540314px;}
.ls29{letter-spacing:13.270183px;}
.ls47{letter-spacing:13.722532px;}
.ls3b{letter-spacing:15.332544px;}
.ls1b{letter-spacing:15.960085px;}
.ls1a{letter-spacing:16.019861px;}
.ls1c{letter-spacing:16.031744px;}
.ls2e{letter-spacing:16.510606px;}
.ls27{letter-spacing:16.557841px;}
.ls28{letter-spacing:16.569722px;}
.ls13{letter-spacing:16.617617px;}
.ls1f{letter-spacing:16.838711px;}
.ls5{letter-spacing:17.252525px;}
.ls18{letter-spacing:17.699476px;}
.ls11{letter-spacing:17.753353px;}
.ls1d{letter-spacing:18.291252px;}
.ls20{letter-spacing:18.560241px;}
.ls3a{letter-spacing:18.834680px;}
.ls25{letter-spacing:19.958984px;}
.ls38{letter-spacing:19.959206px;}
.ls21{letter-spacing:20.335568px;}
.ls23{letter-spacing:20.496962px;}
.lse{letter-spacing:20.921460px;}
.lsd{letter-spacing:20.927344px;}
.ls40{letter-spacing:21.816532px;}
.ls17{letter-spacing:21.895705px;}
.ls45{letter-spacing:22.659718px;}
.ls3d{letter-spacing:23.025715px;}
.ls43{letter-spacing:23.531245px;}
.ls22{letter-spacing:23.778628px;}
.ls2c{letter-spacing:23.798525px;}
.lsa{letter-spacing:24.627547px;}
.lsb{letter-spacing:25.464406px;}
.ls10{letter-spacing:26.898900px;}
.lsf{letter-spacing:26.899020px;}
.ls9{letter-spacing:28.405238px;}
.ls44{letter-spacing:28.760411px;}
.ls4{letter-spacing:29.212205px;}
.ls19{letter-spacing:31.364117px;}
.ls3e{letter-spacing:51.402532px;}
.ls3c{letter-spacing:52.238246px;}
.ls12{letter-spacing:107.595600px;}
.ls14{letter-spacing:188.292300px;}
.ls15{letter-spacing:268.989000px;}
.ls2a{letter-spacing:268.990200px;}
.ls7{letter-spacing:545.291220px;}
.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;}
}
.wsf7{word-spacing:-44.604620px;}
.ws106{word-spacing:-43.217759px;}
.ws104{word-spacing:-43.157983px;}
.wsfd{word-spacing:-38.937826px;}
.wsf5{word-spacing:-36.343565px;}
.ws156{word-spacing:-36.071827px;}
.wsf9{word-spacing:-34.311194px;}
.ws11f{word-spacing:-30.629017px;}
.ws120{word-spacing:-29.015076px;}
.ws107{word-spacing:-28.955301px;}
.ws123{word-spacing:-22.320209px;}
.ws109{word-spacing:-18.016366px;}
.wsfe{word-spacing:-17.107700px;}
.wsf2{word-spacing:-16.605662px;}
.ws154{word-spacing:-15.396988px;}
.wsb8{word-spacing:-8.168512px;}
.wsfb{word-spacing:-7.412315px;}
.ws11e{word-spacing:-7.184951px;}
.ws173{word-spacing:-6.541867px;}
.wsc3{word-spacing:-4.411420px;}
.ws122{word-spacing:-3.777742px;}
.ws10{word-spacing:-3.292438px;}
.ws113{word-spacing:-3.281666px;}
.ws90{word-spacing:-3.227868px;}
.wsf3{word-spacing:-3.120272px;}
.ws128{word-spacing:-3.066475px;}
.ws49{word-spacing:-3.012677px;}
.wse0{word-spacing:-2.958879px;}
.ws14f{word-spacing:-2.905092px;}
.ws14e{word-spacing:-2.856674px;}
.wsd1{word-spacing:-2.851283px;}
.wsc2{word-spacing:-2.797486px;}
.wsdf{word-spacing:-2.743688px;}
.ws5{word-spacing:-2.711419px;}
.ws8d{word-spacing:-2.689890px;}
.wsc{word-spacing:-2.663001px;}
.ws9d{word-spacing:-2.528497px;}
.ws12f{word-spacing:-2.474699px;}
.ws5d{word-spacing:-2.367103px;}
.wsde{word-spacing:-2.313305px;}
.wsb5{word-spacing:-2.151912px;}
.ws60{word-spacing:-2.098114px;}
.ws91{word-spacing:-2.044316px;}
.wsd{word-spacing:-2.033564px;}
.wscc{word-spacing:-1.990519px;}
.ws16c{word-spacing:-1.979776px;}
.ws143{word-spacing:-1.936721px;}
.wsa4{word-spacing:-1.882923px;}
.ws129{word-spacing:-1.829125px;}
.ws17{word-spacing:-1.775327px;}
.ws55{word-spacing:-1.721530px;}
.ws44{word-spacing:-1.613934px;}
.ws5f{word-spacing:-1.452541px;}
.ws79{word-spacing:-1.344945px;}
.ws187{word-spacing:-1.248119px;}
.ws135{word-spacing:-1.237349px;}
.ws15d{word-spacing:-1.210455px;}
.ws170{word-spacing:-1.205081px;}
.ws146{word-spacing:-1.183552px;}
.ws16f{word-spacing:-1.162042px;}
.ws111{word-spacing:-1.147615px;}
.ws110{word-spacing:-1.129754px;}
.ws7d{word-spacing:-1.075956px;}
.ws131{word-spacing:-1.022158px;}
.ws87{word-spacing:-0.968360px;}
.wsf1{word-spacing:-0.914563px;}
.ws5a{word-spacing:-0.591776px;}
.wscd{word-spacing:-0.537978px;}
.ws121{word-spacing:-0.490084px;}
.wsa3{word-spacing:-0.430382px;}
.wsa2{word-spacing:-0.322787px;}
.wsbd{word-spacing:-0.268989px;}
.ws66{word-spacing:-0.215191px;}
.ws5e{word-spacing:-0.161393px;}
.ws35{word-spacing:-0.107596px;}
.ws16d{word-spacing:-0.086077px;}
.ws86{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.048418px;}
.ws11c{word-spacing:-0.041843px;}
.ws4f{word-spacing:0.000000px;}
.ws75{word-spacing:0.107596px;}
.ws6e{word-spacing:0.268989px;}
.ws174{word-spacing:0.344309px;}
.wsa1{word-spacing:0.430382px;}
.ws180{word-spacing:0.430386px;}
.ws17f{word-spacing:0.473425px;}
.wsb7{word-spacing:0.484180px;}
.ws10c{word-spacing:0.537978px;}
.wseb{word-spacing:0.591776px;}
.wse6{word-spacing:0.753169px;}
.wsa8{word-spacing:0.860765px;}
.ws2c{word-spacing:0.968360px;}
.ws14c{word-spacing:1.065323px;}
.ws11a{word-spacing:1.075956px;}
.ws14d{word-spacing:1.113619px;}
.wsc7{word-spacing:1.129754px;}
.ws14b{word-spacing:1.162037px;}
.wsd0{word-spacing:1.183552px;}
.wsb4{word-spacing:1.237349px;}
.ws3d{word-spacing:1.291147px;}
.ws181{word-spacing:1.291158px;}
.wsce{word-spacing:1.344945px;}
.ws139{word-spacing:1.398743px;}
.ws159{word-spacing:1.452546px;}
.ws74{word-spacing:1.560136px;}
.wsc6{word-spacing:1.721530px;}
.ws69{word-spacing:1.775327px;}
.wsbf{word-spacing:1.829125px;}
.ws21{word-spacing:1.882923px;}
.ws151{word-spacing:1.926097px;}
.ws152{word-spacing:1.936728px;}
.ws14{word-spacing:2.033564px;}
.ws5b{word-spacing:2.098114px;}
.ws2b{word-spacing:2.151912px;}
.ws18e{word-spacing:2.151930px;}
.ws11d{word-spacing:2.199826px;}
.ws45{word-spacing:2.205710px;}
.wsb1{word-spacing:2.259508px;}
.ws64{word-spacing:2.367103px;}
.ws42{word-spacing:2.420901px;}
.ws15f{word-spacing:2.614583px;}
.ws15e{word-spacing:2.625476px;}
.ws46{word-spacing:2.636092px;}
.ws189{word-spacing:2.668393px;}
.ws34{word-spacing:2.851283px;}
.ws67{word-spacing:2.905081px;}
.ws88{word-spacing:2.958879px;}
.ws4e{word-spacing:3.055741px;}
.wse8{word-spacing:3.066475px;}
.wse1{word-spacing:3.174070px;}
.ws25{word-spacing:3.227868px;}
.ws15{word-spacing:3.292438px;}
.ws13{word-spacing:3.340856px;}
.ws153{word-spacing:3.432452px;}
.ws157{word-spacing:3.437692px;}
.ws118{word-spacing:3.443059px;}
.ws117{word-spacing:3.455106px;}
.ws8f{word-spacing:3.604453px;}
.ws12d{word-spacing:3.712048px;}
.ws15a{word-spacing:3.776620px;}
.ws17b{word-spacing:3.787397px;}
.ws105{word-spacing:3.813760px;}
.ws0{word-spacing:3.819644px;}
.wse{word-spacing:3.825038px;}
.wsb0{word-spacing:3.873442px;}
.wsbe{word-spacing:3.981037px;}
.ws130{word-spacing:4.034835px;}
.wsc9{word-spacing:4.088633px;}
.ws177{word-spacing:4.088667px;}
.ws2{word-spacing:4.201595px;}
.wse2{word-spacing:4.204016px;}
.ws1e{word-spacing:4.411420px;}
.ws62{word-spacing:4.465217px;}
.ws89{word-spacing:4.519015px;}
.ws184{word-spacing:4.562092px;}
.ws5c{word-spacing:4.572813px;}
.ws13c{word-spacing:4.626611px;}
.ws61{word-spacing:4.680409px;}
.ws175{word-spacing:4.777285px;}
.ws6c{word-spacing:4.788004px;}
.ws85{word-spacing:4.841802px;}
.ws3b{word-spacing:4.895600px;}
.ws182{word-spacing:4.906400px;}
.ws145{word-spacing:4.949398px;}
.ws18c{word-spacing:4.992478px;}
.ws141{word-spacing:5.003195px;}
.ws102{word-spacing:5.056993px;}
.wsc0{word-spacing:5.110791px;}
.ws18d{word-spacing:5.121593px;}
.ws18f{word-spacing:5.164632px;}
.ws138{word-spacing:5.218387px;}
.ws29{word-spacing:5.272184px;}
.ws100{word-spacing:5.325982px;}
.ws54{word-spacing:5.379780px;}
.ws33{word-spacing:5.433578px;}
.ws124{word-spacing:5.487376px;}
.ws7e{word-spacing:5.541173px;}
.wsef{word-spacing:5.594971px;}
.ws176{word-spacing:5.681095px;}
.ws142{word-spacing:5.756365px;}
.ws132{word-spacing:5.863960px;}
.ws12{word-spacing:5.907020px;}
.ws7c{word-spacing:5.917758px;}
.ws126{word-spacing:5.971556px;}
.ws9a{word-spacing:6.025354px;}
.ws17a{word-spacing:6.025404px;}
.ws188{word-spacing:6.068443px;}
.ws2a{word-spacing:6.079151px;}
.ws147{word-spacing:6.132949px;}
.ws53{word-spacing:6.186747px;}
.ws32{word-spacing:6.240545px;}
.ws164{word-spacing:6.283636px;}
.ws77{word-spacing:6.348140px;}
.wsca{word-spacing:6.401938px;}
.ws6{word-spacing:6.439621px;}
.wsa5{word-spacing:6.455736px;}
.ws3c{word-spacing:6.509534px;}
.ws7f{word-spacing:6.563332px;}
.ws178{word-spacing:6.584906px;}
.wsbb{word-spacing:6.617129px;}
.ws116{word-spacing:6.623213px;}
.ws103{word-spacing:6.670927px;}
.ws68{word-spacing:6.724725px;}
.ws84{word-spacing:6.832321px;}
.ws11{word-spacing:6.875384px;}
.ws115{word-spacing:6.886118px;}
.ws47{word-spacing:6.939916px;}
.wse7{word-spacing:6.993714px;}
.wsea{word-spacing:7.047512px;}
.ws185{word-spacing:7.058330px;}
.wsee{word-spacing:7.101310px;}
.ws162{word-spacing:7.144408px;}
.ws70{word-spacing:7.155107px;}
.ws163{word-spacing:7.187446px;}
.wsec{word-spacing:7.208905px;}
.ws17d{word-spacing:7.230485px;}
.ws8e{word-spacing:7.262703px;}
.wsf4{word-spacing:7.477894px;}
.wsf6{word-spacing:7.531692px;}
.wsa6{word-spacing:7.585490px;}
.ws16b{word-spacing:7.617832px;}
.ws10f{word-spacing:7.639288px;}
.ws7{word-spacing:7.650076px;}
.ws186{word-spacing:7.660871px;}
.wsdd{word-spacing:7.693085px;}
.ws12a{word-spacing:7.746883px;}
.ws71{word-spacing:7.800681px;}
.wsad{word-spacing:7.854479px;}
.wsaf{word-spacing:7.908277px;}
.ws50{word-spacing:7.962074px;}
.wsfc{word-spacing:8.015872px;}
.ws183{word-spacing:8.048218px;}
.ws12b{word-spacing:8.069670px;}
.ws155{word-spacing:8.084606px;}
.ws83{word-spacing:8.123468px;}
.ws15b{word-spacing:8.134258px;}
.ws133{word-spacing:8.231063px;}
.wsba{word-spacing:8.284861px;}
.wsff{word-spacing:8.392457px;}
.ws160{word-spacing:8.478604px;}
.ws24{word-spacing:8.500052px;}
.wsf8{word-spacing:8.607648px;}
.ws8a{word-spacing:8.661446px;}
.ws78{word-spacing:8.769041px;}
.ws99{word-spacing:8.822839px;}
.ws95{word-spacing:8.930435px;}
.ws52{word-spacing:9.038030px;}
.ws4b{word-spacing:9.091828px;}
.ws172{word-spacing:9.124183px;}
.ws1{word-spacing:9.167179px;}
.ws1a{word-spacing:9.199424px;}
.ws165{word-spacing:9.210260px;}
.ws38{word-spacing:9.253222px;}
.ws16a{word-spacing:9.339376px;}
.ws18{word-spacing:9.360817px;}
.wse5{word-spacing:9.468413px;}
.ws14a{word-spacing:9.489967px;}
.ws15c{word-spacing:9.511672px;}
.ws140{word-spacing:9.522211px;}
.ws18a{word-spacing:9.726724px;}
.wscb{word-spacing:9.737402px;}
.ws16{word-spacing:9.791200px;}
.ws20{word-spacing:9.844997px;}
.ws19{word-spacing:9.952593px;}
.wsdb{word-spacing:10.060189px;}
.wsf0{word-spacing:10.113986px;}
.ws12c{word-spacing:10.167784px;}
.wsb6{word-spacing:10.221582px;}
.wsb{word-spacing:10.361495px;}
.ws6b{word-spacing:10.490571px;}
.ws17c{word-spacing:10.587496px;}
.ws48{word-spacing:10.598167px;}
.ws179{word-spacing:10.716611px;}
.wsb3{word-spacing:10.759560px;}
.wscf{word-spacing:10.867156px;}
.ws1f{word-spacing:11.028549px;}
.ws3a{word-spacing:11.082347px;}
.ws150{word-spacing:11.087768px;}
.ws11b{word-spacing:11.189942px;}
.ws6f{word-spacing:11.243740px;}
.wse4{word-spacing:11.351336px;}
.wsae{word-spacing:11.405134px;}
.wsda{word-spacing:11.727920px;}
.ws36{word-spacing:11.781718px;}
.ws9{word-spacing:11.814041px;}
.ws2e{word-spacing:11.889314px;}
.ws7b{word-spacing:11.943112px;}
.wsac{word-spacing:12.050707px;}
.ws167{word-spacing:12.050808px;}
.ws158{word-spacing:12.056132px;}
.wsd6{word-spacing:12.104505px;}
.ws149{word-spacing:12.158303px;}
.ws3f{word-spacing:12.212101px;}
.ws1c{word-spacing:12.319696px;}
.wsbc{word-spacing:12.373494px;}
.ws17e{word-spacing:12.438155px;}
.ws80{word-spacing:12.481090px;}
.ws39{word-spacing:12.534887px;}
.wse9{word-spacing:12.642483px;}
.ws37{word-spacing:12.696281px;}
.ws92{word-spacing:12.803876px;}
.ws13a{word-spacing:12.911472px;}
.ws18b{word-spacing:12.997657px;}
.ws125{word-spacing:13.019068px;}
.ws4c{word-spacing:13.126663px;}
.ws6a{word-spacing:13.234259px;}
.wsab{word-spacing:13.341854px;}
.ws59{word-spacing:13.395652px;}
.wsc8{word-spacing:13.503248px;}
.ws9b{word-spacing:13.610843px;}
.ws27{word-spacing:13.664641px;}
.ws148{word-spacing:13.718439px;}
.ws10b{word-spacing:13.793777px;}
.wsdc{word-spacing:13.879832px;}
.ws16e{word-spacing:13.901468px;}
.ws127{word-spacing:13.933630px;}
.ws12e{word-spacing:13.987428px;}
.ws161{word-spacing:14.073622px;}
.ws4{word-spacing:14.138114px;}
.ws6d{word-spacing:14.202619px;}
.ws28{word-spacing:14.256417px;}
.wsd8{word-spacing:14.310215px;}
.ws93{word-spacing:14.364013px;}
.wsfa{word-spacing:14.417810px;}
.wsa9{word-spacing:14.525406px;}
.ws136{word-spacing:14.848193px;}
.ws101{word-spacing:14.901991px;}
.ws4d{word-spacing:14.955788px;}
.ws57{word-spacing:15.063384px;}
.ws1b{word-spacing:15.117182px;}
.ws166{word-spacing:15.192626px;}
.ws26{word-spacing:15.332373px;}
.ws73{word-spacing:15.439969px;}
.wsed{word-spacing:15.493766px;}
.ws168{word-spacing:15.579973px;}
.ws22{word-spacing:15.601362px;}
.wsc5{word-spacing:15.655160px;}
.wsd9{word-spacing:15.708958px;}
.ws31{word-spacing:15.762755px;}
.wsd5{word-spacing:15.924149px;}
.wse3{word-spacing:15.977947px;}
.ws97{word-spacing:16.031744px;}
.ws9c{word-spacing:16.085542px;}
.wsaa{word-spacing:16.139340px;}
.wsf{word-spacing:16.655861px;}
.ws10d{word-spacing:16.677318px;}
.ws114{word-spacing:16.787166px;}
.ws8c{word-spacing:16.838711px;}
.ws81{word-spacing:16.946307px;}
.ws58{word-spacing:17.053903px;}
.ws2f{word-spacing:17.107700px;}
.wsc4{word-spacing:17.269094px;}
.ws3e{word-spacing:17.376689px;}
.ws9f{word-spacing:17.430487px;}
.ws7a{word-spacing:17.484285px;}
.ws1d{word-spacing:17.538083px;}
.ws96{word-spacing:17.645678px;}
.ws43{word-spacing:18.022263px;}
.ws119{word-spacing:18.129859px;}
.ws56{word-spacing:18.345050px;}
.wsd3{word-spacing:18.398848px;}
.ws8b{word-spacing:18.452645px;}
.ws30{word-spacing:18.506443px;}
.ws63{word-spacing:18.614039px;}
.ws4a{word-spacing:18.936826px;}
.ws112{word-spacing:18.944362px;}
.ws23{word-spacing:18.990623px;}
.ws82{word-spacing:19.044421px;}
.wsc1{word-spacing:19.205815px;}
.ws8{word-spacing:19.222025px;}
.ws51{word-spacing:19.259612px;}
.wsa{word-spacing:19.415698px;}
.ws169{word-spacing:19.625602px;}
.wsa7{word-spacing:19.797590px;}
.wsa0{word-spacing:19.958984px;}
.wsd2{word-spacing:20.066579px;}
.ws40{word-spacing:20.227973px;}
.ws76{word-spacing:20.443164px;}
.ws13b{word-spacing:20.496962px;}
.wsb2{word-spacing:20.550760px;}
.ws9e{word-spacing:20.658355px;}
.ws137{word-spacing:20.873546px;}
.ws10e{word-spacing:21.572918px;}
.ws72{word-spacing:21.626716px;}
.ws2d{word-spacing:21.841907px;}
.ws171{word-spacing:21.863609px;}
.wsd4{word-spacing:22.164694px;}
.ws65{word-spacing:22.218491px;}
.ws94{word-spacing:22.541278px;}
.ws13f{word-spacing:23.402043px;}
.ws13d{word-spacing:25.661551px;}
.ws144{word-spacing:27.329282px;}
.wsd7{word-spacing:28.082452px;}
.ws13e{word-spacing:32.332478px;}
.ws98{word-spacing:34.430592px;}
.ws41{word-spacing:39.864170px;}
.ws134{word-spacing:121.761619px;}
.ws108{word-spacing:175.187177px;}
.wsb9{word-spacing:212.666372px;}
.ws10a{word-spacing:255.885077px;}
._b{margin-left:-2812.513996px;}
._6{margin-left:-12.008233px;}
._5{margin-left:-8.827808px;}
._a{margin-left:-7.155107px;}
._2{margin-left:-5.638044px;}
._0{margin-left:-3.658250px;}
._1{margin-left:-2.259508px;}
._4{margin-left:-1.070107px;}
._8{width:1.791473px;}
._17{width:2.983396px;}
._9{width:4.314127px;}
._7{width:5.519675px;}
._18{width:6.816213px;}
._1c{width:14.364013px;}
._1f{width:16.785054px;}
._11{width:20.335568px;}
._19{width:23.186852px;}
._c{width:24.585595px;}
._14{width:25.715348px;}
._d{width:26.898900px;}
._13{width:29.373599px;}
._10{width:30.718544px;}
._16{width:32.870456px;}
._e{width:34.753379px;}
._15{width:36.152122px;}
._12{width:38.088842px;}
._f{width:39.272394px;}
._1d{width:42.823049px;}
._1e{width:79.449256px;}
._3{width:88.455171px;}
._1b{width:131.950196px;}
._1a{width:142.136770px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:28.394400px;}
.fs7{font-size:29.400900px;}
.fs8{font-size:29.400901px;}
.fsf{font-size:32.036400px;}
.fs14{font-size:32.278800px;}
.fs12{font-size:34.073280px;}
.fs6{font-size:35.701093px;}
.fs15{font-size:35.865600px;}
.fse{font-size:37.658400px;}
.fs10{font-size:38.443680px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:43.038600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:48.418200px;}
.fs0{font-size:53.797800px;}
.fs13{font-size:53.798400px;}
.fs2{font-size:59.177400px;}
.fsd{font-size:59.211488px;}
.fsa{font-size:59.775600px;}
.fsc{font-size:83.593054px;}
.fsb{font-size:92.881473px;}
.fs1{font-size:129.115200px;}
.y0{bottom:0.000000px;}
.yd5{bottom:2.567383px;}
.y18f{bottom:7.809173px;}
.y1b4{bottom:8.915081px;}
.yd4{bottom:11.492656px;}
.y1b2{bottom:11.746374px;}
.yda{bottom:13.592720px;}
.y18e{bottom:18.759114px;}
.yd9{bottom:22.517993px;}
.y1b0{bottom:24.193087px;}
.y1b3{bottom:24.318574px;}
.y1b1{bottom:26.365576px;}
.y190{bottom:60.374378px;}
.yde{bottom:65.569311px;}
.ydd{bottom:74.494584px;}
.yd8{bottom:81.319793px;}
.yd7{bottom:86.569954px;}
.y1b5{bottom:87.982795px;}
.y191{bottom:94.394736px;}
.yd6{bottom:95.495227px;}
.y196{bottom:95.803953px;}
.y58{bottom:113.332500px;}
.y10e{bottom:113.334000px;}
.yd3{bottom:123.321078px;}
.y1b6{bottom:125.577868px;}
.y1fa{bottom:127.455000px;}
.y192{bottom:128.415095px;}
.yd1{bottom:128.571239px;}
.y57{bottom:132.162000px;}
.y10d{bottom:132.163500px;}
.yd2{bottom:132.246352px;}
.yd0{bottom:137.496512px;}
.y31{bottom:137.811000px;}
.y1f9{bottom:141.577500px;}
.y10c{bottom:144.165000px;}
.y56{bottom:150.991500px;}
.y1f8{bottom:155.698500px;}
.y30{bottom:156.640500px;}
.ycf{bottom:158.497155px;}
.ydc{bottom:158.917442px;}
.y193{bottom:162.435453px;}
.y10b{bottom:162.994500px;}
.y1b7{bottom:163.172942px;}
.y1bb{bottom:163.992863px;}
.y1bc{bottom:166.017073px;}
.y55{bottom:169.821000px;}
.ydb{bottom:170.047508px;}
.y8a{bottom:171.255000px;}
.y1a0{bottom:172.194000px;}
.y2f{bottom:175.470000px;}
.y10a{bottom:181.824000px;}
.y1f7{bottom:183.943500px;}
.y54{bottom:188.650500px;}
.y89{bottom:190.084500px;}
.y19f{bottom:191.023500px;}
.y2e{bottom:194.299500px;}
.y194{bottom:196.455812px;}
.y1f6{bottom:198.066000px;}
.y109{bottom:200.653500px;}
.y1b8{bottom:200.768016px;}
.y53{bottom:207.480000px;}
.y135{bottom:208.899000px;}
.y88{bottom:208.914000px;}
.y19e{bottom:209.853000px;}
.y1f5{bottom:212.187000px;}
.y2d{bottom:213.129000px;}
.y108{bottom:219.483000px;}
.y52{bottom:226.309500px;}
.y134{bottom:227.728500px;}
.y87{bottom:227.743500px;}
.y19d{bottom:228.682500px;}
.y198{bottom:230.289056px;}
.y195{bottom:230.476170px;}
.y2c{bottom:231.958500px;}
.y107{bottom:238.312500px;}
.y1b9{bottom:238.363089px;}
.y1f4{bottom:240.432000px;}
.y1c1{bottom:244.554312px;}
.y51{bottom:245.139000px;}
.yb2{bottom:245.700000px;}
.y133{bottom:246.558000px;}
.y86{bottom:246.573000px;}
.y19c{bottom:247.512000px;}
.y197{bottom:248.384616px;}
.y2b{bottom:250.788000px;}
.y1f3{bottom:254.554500px;}
.y1c0{bottom:254.969289px;}
.y106{bottom:257.142000px;}
.y1cb{bottom:257.695500px;}
.ydf{bottom:261.553500px;}
.y50{bottom:263.968500px;}
.yb1{bottom:264.529500px;}
.y1bf{bottom:265.384267px;}
.y132{bottom:265.387500px;}
.y85{bottom:265.402500px;}
.y19b{bottom:266.341500px;}
.y1f2{bottom:268.675500px;}
.y2a{bottom:269.617500px;}
.y1be{bottom:275.799244px;}
.y105{bottom:275.868000px;}
.y1ba{bottom:275.958163px;}
.y15a{bottom:282.798000px;}
.yb0{bottom:283.359000px;}
.y131{bottom:284.217000px;}
.y84{bottom:284.232000px;}
.y4f{bottom:284.815500px;}
.y19a{bottom:285.171000px;}
.y29{bottom:288.447000px;}
.yce{bottom:291.779471px;}
.y1bd{bottom:291.837643px;}
.y104{bottom:294.697500px;}
.y1f1{bottom:296.920500px;}
.y1ca{bottom:297.880500px;}
.y159{bottom:301.627500px;}
.yaf{bottom:302.188500px;}
.y130{bottom:303.046500px;}
.y83{bottom:303.061500px;}
.y4e{bottom:303.645000px;}
.y28{bottom:307.276500px;}
.y1f0{bottom:311.041500px;}
.y103{bottom:313.527000px;}
.y1c9{bottom:316.710000px;}
.y158{bottom:320.457000px;}
.yae{bottom:321.018000px;}
.y82{bottom:321.891000px;}
.y4d{bottom:322.474500px;}
.y12f{bottom:323.293500px;}
.y1ef{bottom:325.164000px;}
.y27{bottom:326.106000px;}
.y199{bottom:328.140000px;}
.y1c8{bottom:335.539500px;}
.y102{bottom:337.140000px;}
.y157{bottom:339.286500px;}
.yad{bottom:339.847500px;}
.y81{bottom:340.720500px;}
.y4c{bottom:341.304000px;}
.y12e{bottom:342.123000px;}
.y26{bottom:344.776500px;}
.y18d{bottom:350.287500px;}
.y1ee{bottom:353.409000px;}
.y1c7{bottom:354.369000px;}
.y156{bottom:358.116000px;}
.yac{bottom:358.677000px;}
.y4b{bottom:360.132000px;}
.y12d{bottom:360.952500px;}
.y80{bottom:360.984000px;}
.y17c{bottom:363.106500px;}
.y25{bottom:363.606000px;}
.y101{bottom:365.802000px;}
.y1ed{bottom:367.530000px;}
.y1c6{bottom:373.198500px;}
.yab{bottom:377.506500px;}
.y4a{bottom:378.961500px;}
.y12c{bottom:379.782000px;}
.y7f{bottom:379.813500px;}
.y1ec{bottom:381.652500px;}
.y17b{bottom:381.936000px;}
.y24{bottom:382.435500px;}
.y100{bottom:384.631500px;}
.y155{bottom:390.868500px;}
.y1c5{bottom:392.028000px;}
.yaa{bottom:396.336000px;}
.y12b{bottom:398.611500px;}
.y7e{bottom:398.643000px;}
.y49{bottom:399.808500px;}
.y17a{bottom:400.765500px;}
.y23{bottom:401.265000px;}
.yff{bottom:403.461000px;}
.y1eb{bottom:404.850000px;}
.y154{bottom:409.698000px;}
.y1c4{bottom:410.857500px;}
.ya9{bottom:415.165500px;}
.y12a{bottom:417.441000px;}
.y7d{bottom:417.472500px;}
.y48{bottom:418.638000px;}
.y179{bottom:419.595000px;}
.y22{bottom:420.094500px;}
.yfe{bottom:422.187000px;}
.y153{bottom:428.527500px;}
.y1c3{bottom:429.687000px;}
.ya8{bottom:433.995000px;}
.y1ea{bottom:434.007000px;}
.y129{bottom:436.270500px;}
.y7c{bottom:436.302000px;}
.y47{bottom:437.467500px;}
.y178{bottom:438.424500px;}
.y21{bottom:438.924000px;}
.yfd{bottom:441.016500px;}
.y152{bottom:447.357000px;}
.ya7{bottom:452.824500px;}
.y1e9{bottom:452.836500px;}
.y128{bottom:455.100000px;}
.y7b{bottom:455.131500px;}
.y46{bottom:456.297000px;}
.y177{bottom:457.254000px;}
.y20{bottom:457.753500px;}
.yfc{bottom:459.846000px;}
.y225{bottom:464.140500px;}
.y151{bottom:466.186500px;}
.y1c2{bottom:469.632000px;}
.y1e8{bottom:471.666000px;}
.ya6{bottom:472.213500px;}
.y127{bottom:473.929500px;}
.y7a{bottom:473.961000px;}
.y45{bottom:475.126500px;}
.y176{bottom:476.083500px;}
.y1f{bottom:476.583000px;}
.y224{bottom:478.263000px;}
.yfb{bottom:478.675500px;}
.y150{bottom:485.016000px;}
.y1e7{bottom:490.473000px;}
.ya5{bottom:491.043000px;}
.y1af{bottom:491.779500px;}
.y223{bottom:492.385500px;}
.y126{bottom:492.759000px;}
.y79{bottom:492.790500px;}
.y44{bottom:493.956000px;}
.y175{bottom:494.913000px;}
.y1e{bottom:495.412500px;}
.yfa{bottom:497.505000px;}
.ycd{bottom:502.974000px;}
.y14f{bottom:503.845500px;}
.y1e6{bottom:506.164500px;}
.y222{bottom:506.506500px;}
.ya4{bottom:509.872500px;}
.y125{bottom:511.588500px;}
.y78{bottom:511.620000px;}
.y43{bottom:512.785500px;}
.y1d{bottom:514.242000px;}
.yf9{bottom:516.334500px;}
.y174{bottom:518.733000px;}
.y221{bottom:520.629000px;}
.ycc{bottom:521.803500px;}
.y1e5{bottom:521.856000px;}
.y14e{bottom:522.675000px;}
.ya3{bottom:528.702000px;}
.y77{bottom:530.449500px;}
.y42{bottom:531.615000px;}
.y124{bottom:531.837000px;}
.y1c{bottom:533.071500px;}
.y220{bottom:534.751500px;}
.yf8{bottom:535.164000px;}
.y1e4{bottom:537.546000px;}
.y173{bottom:537.562500px;}
.ycb{bottom:540.633000px;}
.ya2{bottom:547.531500px;}
.y21f{bottom:548.874000px;}
.y76{bottom:549.279000px;}
.y123{bottom:550.666500px;}
.y1b{bottom:551.901000px;}
.y41{bottom:552.460500px;}
.y1e3{bottom:553.215000px;}
.yf7{bottom:553.993500px;}
.y14d{bottom:555.427500px;}
.y172{bottom:556.392000px;}
.yca{bottom:559.462500px;}
.y21e{bottom:562.995000px;}
.ya1{bottom:566.361000px;}
.y75{bottom:568.108500px;}
.y1e2{bottom:568.906500px;}
.y122{bottom:569.494500px;}
.y40{bottom:571.290000px;}
.yf6{bottom:572.823000px;}
.y14c{bottom:574.257000px;}
.y171{bottom:575.221500px;}
.y1a{bottom:575.458500px;}
.y21d{bottom:577.117500px;}
.yc9{bottom:578.292000px;}
.y1e1{bottom:584.596500px;}
.ya0{bottom:585.751500px;}
.y74{bottom:586.936500px;}
.y121{bottom:588.324000px;}
.y3f{bottom:590.119500px;}
.y21c{bottom:591.240000px;}
.yf5{bottom:591.652500px;}
.y14b{bottom:593.086500px;}
.y170{bottom:594.051000px;}
.yc8{bottom:597.121500px;}
.y9f{bottom:604.581000px;}
.y21b{bottom:605.361000px;}
.y73{bottom:605.766000px;}
.y120{bottom:607.153500px;}
.y19{bottom:607.986000px;}
.y3e{bottom:608.949000px;}
.y1e0{bottom:610.251000px;}
.yf4{bottom:610.378500px;}
.y14a{bottom:611.916000px;}
.yc7{bottom:615.951000px;}
.y21a{bottom:619.483500px;}
.y9e{bottom:623.410500px;}
.y16f{bottom:623.635500px;}
.y18{bottom:623.677500px;}
.y11f{bottom:625.983000px;}
.y72{bottom:626.029500px;}
.y3d{bottom:627.778500px;}
.yf3{bottom:629.208000px;}
.y1df{bottom:631.680000px;}
.y219{bottom:633.606000px;}
.yc6{bottom:634.780500px;}
.y17{bottom:639.210000px;}
.y9d{bottom:642.240000px;}
.y71{bottom:644.859000px;}
.y11e{bottom:646.231500px;}
.y3c{bottom:646.608000px;}
.y218{bottom:647.728500px;}
.yf2{bottom:648.037500px;}
.y1de{bottom:653.110500px;}
.yc5{bottom:653.610000px;}
.y16{bottom:654.901500px;}
.y18c{bottom:657.109500px;}
.y9c{bottom:661.069500px;}
.y217{bottom:661.849500px;}
.y70{bottom:663.688500px;}
.y11d{bottom:665.061000px;}
.y3b{bottom:665.437500px;}
.yf1{bottom:666.867000px;}
.y15{bottom:670.591500px;}
.yc4{bottom:672.439500px;}
.y1dd{bottom:673.284000px;}
.y18b{bottom:675.939000px;}
.y216{bottom:675.972000px;}
.y9b{bottom:679.899000px;}
.y6f{bottom:682.518000px;}
.y11c{bottom:683.890500px;}
.y3a{bottom:684.267000px;}
.yf0{bottom:685.696500px;}
.y16e{bottom:686.209500px;}
.y14{bottom:686.283000px;}
.y215{bottom:690.094500px;}
.yc3{bottom:691.269000px;}
.y18a{bottom:694.768500px;}
.y9a{bottom:698.728500px;}
.y6e{bottom:701.347500px;}
.y13{bottom:701.974500px;}
.y11b{bottom:702.720000px;}
.y39{bottom:703.096500px;}
.y214{bottom:704.215500px;}
.yef{bottom:704.526000px;}
.y149{bottom:709.090500px;}
.yc2{bottom:710.098500px;}
.y189{bottom:713.598000px;}
.y1dc{bottom:714.630000px;}
.y99{bottom:717.558000px;}
.y12{bottom:717.666000px;}
.y213{bottom:718.338000px;}
.y6d{bottom:720.177000px;}
.y11a{bottom:721.549500px;}
.yee{bottom:723.252000px;}
.y16d{bottom:723.585000px;}
.y38{bottom:723.942000px;}
.yc1{bottom:728.928000px;}
.y1db{bottom:730.320000px;}
.y188{bottom:732.427500px;}
.y212{bottom:732.460500px;}
.y11{bottom:733.357500px;}
.y98{bottom:736.387500px;}
.y6c{bottom:739.006500px;}
.y119{bottom:740.379000px;}
.yed{bottom:742.081500px;}
.y16c{bottom:742.414500px;}
.y37{bottom:742.771500px;}
.y1da{bottom:746.011500px;}
.y148{bottom:746.466000px;}
.y211{bottom:746.583000px;}
.yc0{bottom:747.757500px;}
.y10{bottom:749.047500px;}
.y187{bottom:751.257000px;}
.y97{bottom:755.217000px;}
.y6b{bottom:757.836000px;}
.y118{bottom:759.208500px;}
.y210{bottom:760.704000px;}
.yec{bottom:760.911000px;}
.y16b{bottom:761.244000px;}
.y36{bottom:761.601000px;}
.y1d9{bottom:761.703000px;}
.yf{bottom:764.739000px;}
.y147{bottom:765.295500px;}
.ybf{bottom:766.587000px;}
.y186{bottom:770.086500px;}
.y96{bottom:774.046500px;}
.y20f{bottom:774.826500px;}
.y6a{bottom:776.665500px;}
.y1d8{bottom:777.394500px;}
.yeb{bottom:779.740500px;}
.y16a{bottom:780.073500px;}
.ye{bottom:780.430500px;}
.y146{bottom:784.125000px;}
.ybe{bottom:785.154000px;}
.y185{bottom:788.916000px;}
.y20e{bottom:788.949000px;}
.y95{bottom:792.876000px;}
.y1d7{bottom:793.086000px;}
.y69{bottom:795.495000px;}
.yd{bottom:796.122000px;}
.yea{bottom:798.570000px;}
.y169{bottom:798.903000px;}
.y35{bottom:799.260000px;}
.y145{bottom:802.954500px;}
.y20d{bottom:803.071500px;}
.ybd{bottom:803.983500px;}
.y184{bottom:807.745500px;}
.y1d6{bottom:808.776000px;}
.yc{bottom:811.813500px;}
.y117{bottom:814.368000px;}
.y68{bottom:815.758500px;}
.y20c{bottom:817.192500px;}
.ye9{bottom:817.399500px;}
.y168{bottom:817.732500px;}
.y34{bottom:818.089500px;}
.y94{bottom:820.063500px;}
.ybc{bottom:822.813000px;}
.y1ae{bottom:825.442500px;}
.yb{bottom:827.503500px;}
.y183{bottom:828.948000px;}
.y1d5{bottom:829.330500px;}
.y20b{bottom:831.315000px;}
.y144{bottom:834.147000px;}
.y67{bottom:834.588000px;}
.ye8{bottom:836.229000px;}
.y167{bottom:836.560500px;}
.y33{bottom:836.919000px;}
.ybb{bottom:841.642500px;}
.ya{bottom:843.195000px;}
.y1ad{bottom:844.272000px;}
.y20a{bottom:845.437500px;}
.y182{bottom:847.777500px;}
.y143{bottom:852.976500px;}
.y66{bottom:853.417500px;}
.y93{bottom:854.290500px;}
.ye7{bottom:855.058500px;}
.y166{bottom:855.390000px;}
.y32{bottom:855.748500px;}
.y1d4{bottom:858.489000px;}
.y9{bottom:858.886500px;}
.y209{bottom:859.558500px;}
.y1ac{bottom:863.101500px;}
.yba{bottom:865.096500px;}
.y181{bottom:866.605500px;}
.y142{bottom:871.806000px;}
.y65{bottom:872.247000px;}
.y92{bottom:873.120000px;}
.y208{bottom:873.681000px;}
.ye6{bottom:873.888000px;}
.y165{bottom:874.219500px;}
.y8{bottom:874.578000px;}
.y1d3{bottom:877.318500px;}
.y1ab{bottom:881.931000px;}
.y207{bottom:887.803500px;}
.y141{bottom:890.635500px;}
.y64{bottom:891.076500px;}
.y91{bottom:891.949500px;}
.ye5{bottom:892.614000px;}
.yb9{bottom:892.773000px;}
.y164{bottom:893.049000px;}
.y1d2{bottom:896.148000px;}
.y111{bottom:896.869248px;}
.y180{bottom:898.852500px;}
.y1aa{bottom:900.760500px;}
.y206{bottom:901.926000px;}
.y140{bottom:909.465000px;}
.y63{bottom:909.906000px;}
.y90{bottom:910.779000px;}
.ye4{bottom:911.443500px;}
.yb8{bottom:911.602500px;}
.y163{bottom:911.878500px;}
.y1d1{bottom:914.977500px;}
.y205{bottom:916.047000px;}
.y1a9{bottom:919.590000px;}
.y7{bottom:928.138500px;}
.y13f{bottom:928.294500px;}
.y62{bottom:928.735500px;}
.y8f{bottom:929.608500px;}
.y204{bottom:930.169500px;}
.ye3{bottom:930.273000px;}
.yb7{bottom:930.432000px;}
.y162{bottom:930.708000px;}
.y1d0{bottom:933.807000px;}
.y1a8{bottom:938.419500px;}
.y112{bottom:939.012086px;}
.y203{bottom:944.292000px;}
.y13e{bottom:947.124000px;}
.y61{bottom:947.565000px;}
.y6{bottom:948.294000px;}
.y8e{bottom:948.438000px;}
.y17f{bottom:948.999000px;}
.ye2{bottom:949.102500px;}
.yb6{bottom:949.261500px;}
.y161{bottom:949.537500px;}
.y1cf{bottom:952.636500px;}
.y116{bottom:953.115053px;}
.y1a7{bottom:957.249000px;}
.y202{bottom:958.413000px;}
.y13d{bottom:965.953500px;}
.y60{bottom:966.394500px;}
.y113{bottom:966.608142px;}
.y8d{bottom:967.267500px;}
.y17e{bottom:967.828500px;}
.ye1{bottom:967.932000px;}
.yb5{bottom:968.091000px;}
.y160{bottom:968.367000px;}
.y5{bottom:968.691000px;}
.y1ce{bottom:971.466000px;}
.y201{bottom:972.535500px;}
.y1a6{bottom:977.317500px;}
.y13c{bottom:984.783000px;}
.y5f{bottom:985.224000px;}
.y8c{bottom:986.097000px;}
.y17d{bottom:986.658000px;}
.ye0{bottom:986.761500px;}
.yb4{bottom:986.920500px;}
.y15f{bottom:987.196500px;}
.y4{bottom:989.653500px;}
.y1cd{bottom:990.295500px;}
.y1a5{bottom:996.147000px;}
.y200{bottom:1000.780500px;}
.y13b{bottom:1003.612500px;}
.y8b{bottom:1004.926500px;}
.y5e{bottom:1005.487500px;}
.yb3{bottom:1005.750000px;}
.y15e{bottom:1006.026000px;}
.y1cc{bottom:1013.988000px;}
.y1ff{bottom:1014.901500px;}
.y1a4{bottom:1014.976500px;}
.y13a{bottom:1022.442000px;}
.y5d{bottom:1024.317000px;}
.y15d{bottom:1024.855500px;}
.y1fe{bottom:1029.024000px;}
.y1a3{bottom:1033.806000px;}
.y114{bottom:1034.464956px;}
.y10f{bottom:1034.511571px;}
.y3{bottom:1037.398500px;}
.y139{bottom:1041.271500px;}
.y5c{bottom:1043.146500px;}
.y15c{bottom:1043.685000px;}
.y115{bottom:1046.461511px;}
.y1a2{bottom:1052.635500px;}
.y1fd{bottom:1057.267500px;}
.y138{bottom:1060.101000px;}
.y5b{bottom:1061.976000px;}
.y15b{bottom:1062.514500px;}
.y1fc{bottom:1071.390000px;}
.y1a1{bottom:1071.465000px;}
.y110{bottom:1076.654409px;}
.y137{bottom:1080.016500px;}
.y5a{bottom:1080.805500px;}
.y2{bottom:1081.335000px;}
.y1fb{bottom:1085.512500px;}
.y136{bottom:1098.846000px;}
.y59{bottom:1099.635000px;}
.y1{bottom:1145.314500px;}
.h9{height:21.404659px;}
.hb{height:21.419015px;}
.h8{height:25.991372px;}
.h18{height:26.378398px;}
.h15{height:29.761816px;}
.h19{height:31.654077px;}
.h1f{height:32.709336px;}
.h1e{height:34.430880px;}
.h16{height:35.714179px;}
.ha{height:36.105109px;}
.h6{height:36.797832px;}
.h1a{height:38.734560px;}
.h1b{height:40.348800px;}
.hd{height:40.886328px;}
.h13{height:42.500452px;}
.h1{height:43.038240px;}
.h11{height:44.831700px;}
.h12{height:46.146763px;}
.h1d{height:46.704624px;}
.h10{height:47.369190px;}
.hc{height:49.473619px;}
.h1c{height:49.692624px;}
.h5{height:55.355702px;}
.h3{height:57.413702px;}
.h4{height:57.419702px;}
.hf{height:63.530721px;}
.he{height:81.271289px;}
.h2{height:103.292160px;}
.h7{height:181.143712px;}
.h14{height:276.794496px;}
.h17{height:306.659520px;}
.h0{height:1188.000000px;}
.w1{width:347.390738px;}
.w3{width:357.769440px;}
.w2{width:369.059328px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:9.901114px;}
.x3a{left:13.635701px;}
.x3b{left:21.579478px;}
.x33{left:25.471441px;}
.x32{left:30.339472px;}
.x37{left:49.508827px;}
.x1a{left:58.489711px;}
.x2e{left:68.560500px;}
.x9{left:73.446000px;}
.x2c{left:75.112500px;}
.x2d{left:76.308000px;}
.x2b{left:80.917500px;}
.x36{left:82.861500px;}
.x8{left:88.390500px;}
.x25{left:93.328500px;}
.x3d{left:99.981000px;}
.x3c{left:101.630797px;}
.x30{left:103.333500px;}
.x34{left:106.511519px;}
.x38{left:110.863591px;}
.x13{left:111.951115px;}
.x14{left:113.854298px;}
.x11{left:121.844387px;}
.x10{left:133.690062px;}
.x1e{left:150.777000px;}
.x31{left:151.856791px;}
.x1d{left:155.158294px;}
.x20{left:158.679614px;}
.x4{left:159.904500px;}
.x1b{left:161.646499px;}
.x1c{left:163.320656px;}
.x2{left:164.509500px;}
.x1f{left:175.019129px;}
.x1{left:176.394000px;}
.xe{left:185.407500px;}
.x2f{left:188.280000px;}
.x24{left:205.189690px;}
.x15{left:209.464644px;}
.xa{left:210.994500px;}
.x3e{left:214.807500px;}
.x16{left:219.882931px;}
.x3{left:227.983500px;}
.xf{left:229.726982px;}
.x23{left:232.383693px;}
.x18{left:247.265800px;}
.x19{left:257.684088px;}
.x5{left:261.975000px;}
.x6{left:270.867000px;}
.x39{left:282.943900px;}
.x17{left:303.885502px;}
.x7{left:309.154500px;}
.x22{left:317.016066px;}
.x21{left:340.880012px;}
.x2a{left:463.080000px;}
.x29{left:464.275500px;}
.xc{left:467.967000px;}
.x27{left:469.633500px;}
.x28{left:470.829000px;}
.x26{left:475.438500px;}
.x41{left:478.929000px;}
.xb{left:482.910000px;}
.x35{left:495.946500px;}
.x44{left:497.517000px;}
.xd{left:535.284000px;}
.x42{left:580.872000px;}
.x3f{left:593.848500px;}
.x43{left:618.024000px;}
.x40{left:624.237000px;}
@media print{
.v4{vertical-align:-51.963595pt;}
.v6{vertical-align:-11.264000pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.067067pt;}
.v2{vertical-align:19.280000pt;}
.v1{vertical-align:21.109333pt;}
.v7{vertical-align:22.970667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000159pt;}
.ls26{letter-spacing:0.002122pt;}
.ls1e{letter-spacing:0.004335pt;}
.ls46{letter-spacing:0.008240pt;}
.ls42{letter-spacing:0.016105pt;}
.ls30{letter-spacing:0.239104pt;}
.ls31{letter-spacing:0.286925pt;}
.lsc{letter-spacing:1.009543pt;}
.ls16{letter-spacing:1.052046pt;}
.ls35{letter-spacing:1.338982pt;}
.ls2d{letter-spacing:1.386803pt;}
.ls6{letter-spacing:2.008451pt;}
.ls2b{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653258pt;}
.ls41{letter-spacing:2.656473pt;}
.ls0{letter-spacing:2.658591pt;}
.ls1{letter-spacing:2.658767pt;}
.ls8{letter-spacing:3.060497pt;}
.ls39{letter-spacing:3.395277pt;}
.ls34{letter-spacing:3.400034pt;}
.ls32{letter-spacing:6.790554pt;}
.ls2f{letter-spacing:6.843106pt;}
.ls24{letter-spacing:8.846749pt;}
.ls48{letter-spacing:9.516339pt;}
.ls37{letter-spacing:10.903142pt;}
.ls36{letter-spacing:10.950963pt;}
.ls33{letter-spacing:11.146946pt;}
.ls29{letter-spacing:11.795718pt;}
.ls47{letter-spacing:12.197806pt;}
.ls3b{letter-spacing:13.628928pt;}
.ls1b{letter-spacing:14.186742pt;}
.ls1a{letter-spacing:14.239876pt;}
.ls1c{letter-spacing:14.250439pt;}
.ls2e{letter-spacing:14.676094pt;}
.ls27{letter-spacing:14.718081pt;}
.ls28{letter-spacing:14.728642pt;}
.ls13{letter-spacing:14.771215pt;}
.ls1f{letter-spacing:14.967743pt;}
.ls5{letter-spacing:15.335578pt;}
.ls18{letter-spacing:15.732868pt;}
.ls11{letter-spacing:15.780758pt;}
.ls1d{letter-spacing:16.258891pt;}
.ls20{letter-spacing:16.497992pt;}
.ls3a{letter-spacing:16.741938pt;}
.ls25{letter-spacing:17.741319pt;}
.ls38{letter-spacing:17.741517pt;}
.ls21{letter-spacing:18.076061pt;}
.ls23{letter-spacing:18.219522pt;}
.lse{letter-spacing:18.596853pt;}
.lsd{letter-spacing:18.602084pt;}
.ls40{letter-spacing:19.392473pt;}
.ls17{letter-spacing:19.462849pt;}
.ls45{letter-spacing:20.141971pt;}
.ls3d{letter-spacing:20.467302pt;}
.ls43{letter-spacing:20.916662pt;}
.ls22{letter-spacing:21.136558pt;}
.ls2c{letter-spacing:21.154245pt;}
.lsa{letter-spacing:21.891153pt;}
.lsb{letter-spacing:22.635027pt;}
.ls10{letter-spacing:23.910133pt;}
.lsf{letter-spacing:23.910240pt;}
.ls9{letter-spacing:25.249101pt;}
.ls44{letter-spacing:25.564810pt;}
.ls4{letter-spacing:25.966405pt;}
.ls19{letter-spacing:27.879215pt;}
.ls3e{letter-spacing:45.691139pt;}
.ls3c{letter-spacing:46.433997pt;}
.ls12{letter-spacing:95.640533pt;}
.ls14{letter-spacing:167.370933pt;}
.ls15{letter-spacing:239.101333pt;}
.ls2a{letter-spacing:239.102400pt;}
.ls7{letter-spacing:484.703307pt;}
.wsf7{word-spacing:-39.648551pt;}
.ws106{word-spacing:-38.415786pt;}
.ws104{word-spacing:-38.362652pt;}
.wsfd{word-spacing:-34.611401pt;}
.wsf5{word-spacing:-32.305391pt;}
.ws156{word-spacing:-32.063846pt;}
.wsf9{word-spacing:-30.498839pt;}
.ws11f{word-spacing:-27.225793pt;}
.ws120{word-spacing:-25.791179pt;}
.ws107{word-spacing:-25.738045pt;}
.ws123{word-spacing:-19.840186pt;}
.ws109{word-spacing:-16.014547pt;}
.wsfe{word-spacing:-15.206845pt;}
.wsf2{word-spacing:-14.760588pt;}
.ws154{word-spacing:-13.686211pt;}
.wsb8{word-spacing:-7.260899pt;}
.wsfb{word-spacing:-6.588724pt;}
.ws11e{word-spacing:-6.386623pt;}
.ws173{word-spacing:-5.814993pt;}
.wsc3{word-spacing:-3.921262pt;}
.ws122{word-spacing:-3.357993pt;}
.ws10{word-spacing:-2.926611pt;}
.ws113{word-spacing:-2.917036pt;}
.ws90{word-spacing:-2.869216pt;}
.wsf3{word-spacing:-2.773575pt;}
.ws128{word-spacing:-2.725755pt;}
.ws49{word-spacing:-2.677935pt;}
.wse0{word-spacing:-2.630115pt;}
.ws14f{word-spacing:-2.582304pt;}
.ws14e{word-spacing:-2.539266pt;}
.wsd1{word-spacing:-2.534474pt;}
.wsc2{word-spacing:-2.486654pt;}
.wsdf{word-spacing:-2.438834pt;}
.ws5{word-spacing:-2.410150pt;}
.ws8d{word-spacing:-2.391013pt;}
.wsc{word-spacing:-2.367112pt;}
.ws9d{word-spacing:-2.247553pt;}
.ws12f{word-spacing:-2.199732pt;}
.ws5d{word-spacing:-2.104092pt;}
.wsde{word-spacing:-2.056271pt;}
.wsb5{word-spacing:-1.912811pt;}
.ws60{word-spacing:-1.864990pt;}
.ws91{word-spacing:-1.817170pt;}
.wsd{word-spacing:-1.807613pt;}
.wscc{word-spacing:-1.769350pt;}
.ws16c{word-spacing:-1.759801pt;}
.ws143{word-spacing:-1.721530pt;}
.wsa4{word-spacing:-1.673709pt;}
.ws129{word-spacing:-1.625889pt;}
.ws17{word-spacing:-1.578069pt;}
.ws55{word-spacing:-1.530249pt;}
.ws44{word-spacing:-1.434608pt;}
.ws5f{word-spacing:-1.291147pt;}
.ws79{word-spacing:-1.195507pt;}
.ws187{word-spacing:-1.109439pt;}
.ws135{word-spacing:-1.099866pt;}
.ws15d{word-spacing:-1.075960pt;}
.ws170{word-spacing:-1.071183pt;}
.ws146{word-spacing:-1.052046pt;}
.ws16f{word-spacing:-1.032926pt;}
.ws111{word-spacing:-1.020102pt;}
.ws110{word-spacing:-1.004226pt;}
.ws7d{word-spacing:-0.956405pt;}
.ws131{word-spacing:-0.908585pt;}
.ws87{word-spacing:-0.860765pt;}
.wsf1{word-spacing:-0.812945pt;}
.ws5a{word-spacing:-0.526023pt;}
.wscd{word-spacing:-0.478203pt;}
.ws121{word-spacing:-0.435630pt;}
.wsa3{word-spacing:-0.382562pt;}
.wsa2{word-spacing:-0.286922pt;}
.wsbd{word-spacing:-0.239101pt;}
.ws66{word-spacing:-0.191281pt;}
.ws5e{word-spacing:-0.143461pt;}
.ws35{word-spacing:-0.095641pt;}
.ws16d{word-spacing:-0.076513pt;}
.ws86{word-spacing:-0.047820pt;}
.ws3{word-spacing:-0.043038pt;}
.ws11c{word-spacing:-0.037194pt;}
.ws4f{word-spacing:0.000000pt;}
.ws75{word-spacing:0.095641pt;}
.ws6e{word-spacing:0.239101pt;}
.ws174{word-spacing:0.306052pt;}
.wsa1{word-spacing:0.382562pt;}
.ws180{word-spacing:0.382565pt;}
.ws17f{word-spacing:0.420822pt;}
.wsb7{word-spacing:0.430382pt;}
.ws10c{word-spacing:0.478203pt;}
.wseb{word-spacing:0.526023pt;}
.wse6{word-spacing:0.669484pt;}
.wsa8{word-spacing:0.765124pt;}
.ws2c{word-spacing:0.860765pt;}
.ws14c{word-spacing:0.946954pt;}
.ws11a{word-spacing:0.956405pt;}
.ws14d{word-spacing:0.989883pt;}
.wsc7{word-spacing:1.004226pt;}
.ws14b{word-spacing:1.032922pt;}
.wsd0{word-spacing:1.052046pt;}
.wsb4{word-spacing:1.099866pt;}
.ws3d{word-spacing:1.147686pt;}
.ws181{word-spacing:1.147696pt;}
.wsce{word-spacing:1.195507pt;}
.ws139{word-spacing:1.243327pt;}
.ws159{word-spacing:1.291152pt;}
.ws74{word-spacing:1.386788pt;}
.wsc6{word-spacing:1.530249pt;}
.ws69{word-spacing:1.578069pt;}
.wsbf{word-spacing:1.625889pt;}
.ws21{word-spacing:1.673709pt;}
.ws151{word-spacing:1.712086pt;}
.ws152{word-spacing:1.721536pt;}
.ws14{word-spacing:1.807613pt;}
.ws5b{word-spacing:1.864990pt;}
.ws2b{word-spacing:1.912811pt;}
.ws18e{word-spacing:1.912827pt;}
.ws11d{word-spacing:1.955401pt;}
.ws45{word-spacing:1.960631pt;}
.wsb1{word-spacing:2.008451pt;}
.ws64{word-spacing:2.104092pt;}
.ws42{word-spacing:2.151912pt;}
.ws15f{word-spacing:2.324074pt;}
.ws15e{word-spacing:2.333757pt;}
.ws46{word-spacing:2.343193pt;}
.ws189{word-spacing:2.371905pt;}
.ws34{word-spacing:2.534474pt;}
.ws67{word-spacing:2.582294pt;}
.ws88{word-spacing:2.630115pt;}
.ws4e{word-spacing:2.716214pt;}
.wse8{word-spacing:2.725755pt;}
.wse1{word-spacing:2.821396pt;}
.ws25{word-spacing:2.869216pt;}
.ws15{word-spacing:2.926611pt;}
.ws13{word-spacing:2.969650pt;}
.ws153{word-spacing:3.051069pt;}
.ws157{word-spacing:3.055726pt;}
.ws118{word-spacing:3.060497pt;}
.ws117{word-spacing:3.071205pt;}
.ws8f{word-spacing:3.203958pt;}
.ws12d{word-spacing:3.299598pt;}
.ws15a{word-spacing:3.356995pt;}
.ws17b{word-spacing:3.366575pt;}
.ws105{word-spacing:3.390009pt;}
.ws0{word-spacing:3.395239pt;}
.wse{word-spacing:3.400034pt;}
.wsb0{word-spacing:3.443059pt;}
.wsbe{word-spacing:3.538700pt;}
.ws130{word-spacing:3.586520pt;}
.wsc9{word-spacing:3.634340pt;}
.ws177{word-spacing:3.634371pt;}
.ws2{word-spacing:3.734751pt;}
.wse2{word-spacing:3.736903pt;}
.ws1e{word-spacing:3.921262pt;}
.ws62{word-spacing:3.969082pt;}
.ws89{word-spacing:4.016902pt;}
.ws184{word-spacing:4.055193pt;}
.ws5c{word-spacing:4.064723pt;}
.ws13c{word-spacing:4.112543pt;}
.ws61{word-spacing:4.160363pt;}
.ws175{word-spacing:4.246475pt;}
.ws6c{word-spacing:4.256004pt;}
.ws85{word-spacing:4.303824pt;}
.ws3b{word-spacing:4.351644pt;}
.ws182{word-spacing:4.361245pt;}
.ws145{word-spacing:4.399465pt;}
.ws18c{word-spacing:4.437758pt;}
.ws141{word-spacing:4.447285pt;}
.ws102{word-spacing:4.495105pt;}
.wsc0{word-spacing:4.542925pt;}
.ws18d{word-spacing:4.552527pt;}
.ws18f{word-spacing:4.590784pt;}
.ws138{word-spacing:4.638566pt;}
.ws29{word-spacing:4.686386pt;}
.ws100{word-spacing:4.734206pt;}
.ws54{word-spacing:4.782027pt;}
.ws33{word-spacing:4.829847pt;}
.ws124{word-spacing:4.877667pt;}
.ws7e{word-spacing:4.925487pt;}
.wsef{word-spacing:4.973308pt;}
.ws176{word-spacing:5.049862pt;}
.ws142{word-spacing:5.116769pt;}
.ws132{word-spacing:5.212409pt;}
.ws12{word-spacing:5.250685pt;}
.ws7c{word-spacing:5.260229pt;}
.ws126{word-spacing:5.308050pt;}
.ws9a{word-spacing:5.355870pt;}
.ws17a{word-spacing:5.355915pt;}
.ws188{word-spacing:5.394171pt;}
.ws2a{word-spacing:5.403690pt;}
.ws147{word-spacing:5.451510pt;}
.ws53{word-spacing:5.499331pt;}
.ws32{word-spacing:5.547151pt;}
.ws164{word-spacing:5.585454pt;}
.ws77{word-spacing:5.642791pt;}
.wsca{word-spacing:5.690612pt;}
.ws6{word-spacing:5.724107pt;}
.wsa5{word-spacing:5.738432pt;}
.ws3c{word-spacing:5.786252pt;}
.ws7f{word-spacing:5.834073pt;}
.ws178{word-spacing:5.853250pt;}
.wsbb{word-spacing:5.881893pt;}
.ws116{word-spacing:5.887300pt;}
.ws103{word-spacing:5.929713pt;}
.ws68{word-spacing:5.977533pt;}
.ws84{word-spacing:6.073174pt;}
.ws11{word-spacing:6.111453pt;}
.ws115{word-spacing:6.120994pt;}
.ws47{word-spacing:6.168814pt;}
.wse7{word-spacing:6.216635pt;}
.wsea{word-spacing:6.264455pt;}
.ws185{word-spacing:6.274071pt;}
.wsee{word-spacing:6.312275pt;}
.ws162{word-spacing:6.350585pt;}
.ws70{word-spacing:6.360095pt;}
.ws163{word-spacing:6.388841pt;}
.wsec{word-spacing:6.407916pt;}
.ws17d{word-spacing:6.427098pt;}
.ws8e{word-spacing:6.455736pt;}
.wsf4{word-spacing:6.647017pt;}
.wsf6{word-spacing:6.694837pt;}
.wsa6{word-spacing:6.742658pt;}
.ws16b{word-spacing:6.771406pt;}
.ws10f{word-spacing:6.790478pt;}
.ws7{word-spacing:6.800067pt;}
.ws186{word-spacing:6.809663pt;}
.wsdd{word-spacing:6.838298pt;}
.ws12a{word-spacing:6.886118pt;}
.ws71{word-spacing:6.933939pt;}
.wsad{word-spacing:6.981759pt;}
.wsaf{word-spacing:7.029579pt;}
.ws50{word-spacing:7.077399pt;}
.wsfc{word-spacing:7.125220pt;}
.ws183{word-spacing:7.153972pt;}
.ws12b{word-spacing:7.173040pt;}
.ws155{word-spacing:7.186317pt;}
.ws83{word-spacing:7.220860pt;}
.ws15b{word-spacing:7.230451pt;}
.ws133{word-spacing:7.316501pt;}
.wsba{word-spacing:7.364321pt;}
.wsff{word-spacing:7.459962pt;}
.ws160{word-spacing:7.536537pt;}
.ws24{word-spacing:7.555602pt;}
.wsf8{word-spacing:7.651243pt;}
.ws8a{word-spacing:7.699063pt;}
.ws78{word-spacing:7.794703pt;}
.ws99{word-spacing:7.842524pt;}
.ws95{word-spacing:7.938164pt;}
.ws52{word-spacing:8.033805pt;}
.ws4b{word-spacing:8.081625pt;}
.ws172{word-spacing:8.110385pt;}
.ws1{word-spacing:8.148604pt;}
.ws1a{word-spacing:8.177266pt;}
.ws165{word-spacing:8.186898pt;}
.ws38{word-spacing:8.225086pt;}
.ws16a{word-spacing:8.301668pt;}
.ws18{word-spacing:8.320726pt;}
.wse5{word-spacing:8.416367pt;}
.ws14a{word-spacing:8.435526pt;}
.ws15c{word-spacing:8.454819pt;}
.ws140{word-spacing:8.464187pt;}
.ws18a{word-spacing:8.645977pt;}
.wscb{word-spacing:8.655468pt;}
.ws16{word-spacing:8.703289pt;}
.ws20{word-spacing:8.751109pt;}
.ws19{word-spacing:8.846749pt;}
.wsdb{word-spacing:8.942390pt;}
.wsf0{word-spacing:8.990210pt;}
.ws12c{word-spacing:9.038030pt;}
.wsb6{word-spacing:9.085851pt;}
.wsb{word-spacing:9.210218pt;}
.ws6b{word-spacing:9.324952pt;}
.ws17c{word-spacing:9.411107pt;}
.ws48{word-spacing:9.420593pt;}
.ws179{word-spacing:9.525877pt;}
.wsb3{word-spacing:9.564053pt;}
.wscf{word-spacing:9.659694pt;}
.ws1f{word-spacing:9.803155pt;}
.ws3a{word-spacing:9.850975pt;}
.ws150{word-spacing:9.855794pt;}
.ws11b{word-spacing:9.946615pt;}
.ws6f{word-spacing:9.994436pt;}
.wse4{word-spacing:10.090076pt;}
.wsae{word-spacing:10.137897pt;}
.wsda{word-spacing:10.424818pt;}
.ws36{word-spacing:10.472638pt;}
.ws9{word-spacing:10.501370pt;}
.ws2e{word-spacing:10.568279pt;}
.ws7b{word-spacing:10.616099pt;}
.wsac{word-spacing:10.711740pt;}
.ws167{word-spacing:10.711829pt;}
.ws158{word-spacing:10.716562pt;}
.wsd6{word-spacing:10.759560pt;}
.ws149{word-spacing:10.807380pt;}
.ws3f{word-spacing:10.855201pt;}
.ws1c{word-spacing:10.950841pt;}
.wsbc{word-spacing:10.998661pt;}
.ws17e{word-spacing:11.056138pt;}
.ws80{word-spacing:11.094302pt;}
.ws39{word-spacing:11.142122pt;}
.wse9{word-spacing:11.237763pt;}
.ws37{word-spacing:11.285583pt;}
.ws92{word-spacing:11.381223pt;}
.ws13a{word-spacing:11.476864pt;}
.ws18b{word-spacing:11.553473pt;}
.ws125{word-spacing:11.572505pt;}
.ws4c{word-spacing:11.668145pt;}
.ws6a{word-spacing:11.763786pt;}
.wsab{word-spacing:11.859426pt;}
.ws59{word-spacing:11.907246pt;}
.wsc8{word-spacing:12.002887pt;}
.ws9b{word-spacing:12.098527pt;}
.ws27{word-spacing:12.146348pt;}
.ws148{word-spacing:12.194168pt;}
.ws10b{word-spacing:12.261135pt;}
.wsdc{word-spacing:12.337629pt;}
.ws16e{word-spacing:12.356860pt;}
.ws127{word-spacing:12.385449pt;}
.ws12e{word-spacing:12.433269pt;}
.ws161{word-spacing:12.509886pt;}
.ws4{word-spacing:12.567213pt;}
.ws6d{word-spacing:12.624550pt;}
.ws28{word-spacing:12.672371pt;}
.wsd8{word-spacing:12.720191pt;}
.ws93{word-spacing:12.768011pt;}
.wsfa{word-spacing:12.815831pt;}
.wsa9{word-spacing:12.911472pt;}
.ws136{word-spacing:13.198394pt;}
.ws101{word-spacing:13.246214pt;}
.ws4d{word-spacing:13.294034pt;}
.ws57{word-spacing:13.389675pt;}
.ws1b{word-spacing:13.437495pt;}
.ws166{word-spacing:13.504556pt;}
.ws26{word-spacing:13.628776pt;}
.ws73{word-spacing:13.724417pt;}
.wsed{word-spacing:13.772237pt;}
.ws168{word-spacing:13.848865pt;}
.ws22{word-spacing:13.867877pt;}
.wsc5{word-spacing:13.915698pt;}
.wsd9{word-spacing:13.963518pt;}
.ws31{word-spacing:14.011338pt;}
.wsd5{word-spacing:14.154799pt;}
.wse3{word-spacing:14.202619pt;}
.ws97{word-spacing:14.250439pt;}
.ws9c{word-spacing:14.298260pt;}
.wsaa{word-spacing:14.346080pt;}
.wsf{word-spacing:14.805210pt;}
.ws10d{word-spacing:14.824283pt;}
.ws114{word-spacing:14.921926pt;}
.ws8c{word-spacing:14.967743pt;}
.ws81{word-spacing:15.063384pt;}
.ws58{word-spacing:15.159025pt;}
.ws2f{word-spacing:15.206845pt;}
.wsc4{word-spacing:15.350306pt;}
.ws3e{word-spacing:15.445946pt;}
.ws9f{word-spacing:15.493766pt;}
.ws7a{word-spacing:15.541587pt;}
.ws1d{word-spacing:15.589407pt;}
.ws96{word-spacing:15.685047pt;}
.ws43{word-spacing:16.019789pt;}
.ws119{word-spacing:16.115430pt;}
.ws56{word-spacing:16.306711pt;}
.wsd3{word-spacing:16.354531pt;}
.ws8b{word-spacing:16.402351pt;}
.ws30{word-spacing:16.450172pt;}
.ws63{word-spacing:16.545812pt;}
.ws4a{word-spacing:16.832734pt;}
.ws112{word-spacing:16.839433pt;}
.ws23{word-spacing:16.880554pt;}
.ws82{word-spacing:16.928374pt;}
.wsc1{word-spacing:17.071835pt;}
.ws8{word-spacing:17.086245pt;}
.ws51{word-spacing:17.119655pt;}
.wsa{word-spacing:17.258398pt;}
.ws169{word-spacing:17.444979pt;}
.wsa7{word-spacing:17.597858pt;}
.wsa0{word-spacing:17.741319pt;}
.wsd2{word-spacing:17.836959pt;}
.ws40{word-spacing:17.980420pt;}
.ws76{word-spacing:18.171701pt;}
.ws13b{word-spacing:18.219522pt;}
.wsb2{word-spacing:18.267342pt;}
.ws9e{word-spacing:18.362982pt;}
.ws137{word-spacing:18.554263pt;}
.ws10e{word-spacing:19.175927pt;}
.ws72{word-spacing:19.223747pt;}
.ws2d{word-spacing:19.415028pt;}
.ws171{word-spacing:19.434319pt;}
.wsd4{word-spacing:19.701950pt;}
.ws65{word-spacing:19.749770pt;}
.ws94{word-spacing:20.036692pt;}
.ws13f{word-spacing:20.801816pt;}
.ws13d{word-spacing:22.810267pt;}
.ws144{word-spacing:24.292695pt;}
.wsd7{word-spacing:24.962179pt;}
.ws13e{word-spacing:28.739980pt;}
.ws98{word-spacing:30.604971pt;}
.ws41{word-spacing:35.434818pt;}
.ws134{word-spacing:108.232550pt;}
.ws108{word-spacing:155.721935pt;}
.wsb9{word-spacing:189.036775pt;}
.ws10a{word-spacing:227.453402pt;}
._b{margin-left:-2500.012441pt;}
._6{margin-left:-10.673985pt;}
._5{margin-left:-7.846941pt;}
._a{margin-left:-6.360095pt;}
._2{margin-left:-5.011595pt;}
._0{margin-left:-3.251778pt;}
._1{margin-left:-2.008451pt;}
._4{margin-left:-0.951206pt;}
._8{width:1.592421pt;}
._17{width:2.651908pt;}
._9{width:3.834779pt;}
._7{width:4.906378pt;}
._18{width:6.058856pt;}
._1c{width:12.768011pt;}
._1f{width:14.920048pt;}
._11{width:18.076061pt;}
._19{width:20.610535pt;}
._c{width:21.853862pt;}
._14{width:22.858087pt;}
._d{width:23.910133pt;}
._13{width:26.109866pt;}
._10{width:27.305372pt;}
._16{width:29.218183pt;}
._e{width:30.891892pt;}
._15{width:32.135219pt;}
._12{width:33.856749pt;}
._f{width:34.908795pt;}
._1d{width:38.064932pt;}
._1e{width:70.621561pt;}
._3{width:78.626819pt;}
._1b{width:117.289063pt;}
._1a{width:126.343795pt;}
.fs11{font-size:25.239467pt;}
.fs7{font-size:26.134133pt;}
.fs8{font-size:26.134134pt;}
.fsf{font-size:28.476800pt;}
.fs14{font-size:28.692267pt;}
.fs12{font-size:30.287360pt;}
.fs6{font-size:31.734305pt;}
.fs15{font-size:31.880533pt;}
.fse{font-size:33.474133pt;}
.fs10{font-size:34.172160pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:38.256533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:43.038400pt;}
.fs0{font-size:47.820267pt;}
.fs13{font-size:47.820800pt;}
.fs2{font-size:52.602133pt;}
.fsd{font-size:52.632433pt;}
.fsa{font-size:53.133867pt;}
.fsc{font-size:74.304937pt;}
.fsb{font-size:82.561309pt;}
.fs1{font-size:114.769067pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.282118pt;}
.y18f{bottom:6.941487pt;}
.y1b4{bottom:7.924516pt;}
.yd4{bottom:10.215694pt;}
.y1b2{bottom:10.441222pt;}
.yda{bottom:12.082418pt;}
.y18e{bottom:16.674768pt;}
.yd9{bottom:20.015994pt;}
.y1b0{bottom:21.504966pt;}
.y1b3{bottom:21.616510pt;}
.y1b1{bottom:23.436067pt;}
.y190{bottom:53.666114pt;}
.yde{bottom:58.283832pt;}
.ydd{bottom:66.217408pt;}
.yd8{bottom:72.284260pt;}
.yd7{bottom:76.951070pt;}
.y1b5{bottom:78.206929pt;}
.y191{bottom:83.906432pt;}
.yd6{bottom:84.884646pt;}
.y196{bottom:85.159069pt;}
.y58{bottom:100.740000pt;}
.y10e{bottom:100.741333pt;}
.yd3{bottom:109.618736pt;}
.y1b6{bottom:111.624772pt;}
.y1fa{bottom:113.293333pt;}
.y192{bottom:114.146751pt;}
.yd1{bottom:114.285546pt;}
.y57{bottom:117.477333pt;}
.y10d{bottom:117.478667pt;}
.yd2{bottom:117.552312pt;}
.yd0{bottom:122.219122pt;}
.y31{bottom:122.498667pt;}
.y1f9{bottom:125.846667pt;}
.y10c{bottom:128.146667pt;}
.y56{bottom:134.214667pt;}
.y1f8{bottom:138.398667pt;}
.y30{bottom:139.236000pt;}
.ycf{bottom:140.886360pt;}
.ydc{bottom:141.259949pt;}
.y193{bottom:144.387070pt;}
.y10b{bottom:144.884000pt;}
.y1b7{bottom:145.042615pt;}
.y1bb{bottom:145.771433pt;}
.y1bc{bottom:147.570731pt;}
.y55{bottom:150.952000pt;}
.ydb{bottom:151.153341pt;}
.y8a{bottom:152.226667pt;}
.y1a0{bottom:153.061333pt;}
.y2f{bottom:155.973333pt;}
.y10a{bottom:161.621333pt;}
.y1f7{bottom:163.505333pt;}
.y54{bottom:167.689333pt;}
.y89{bottom:168.964000pt;}
.y19f{bottom:169.798667pt;}
.y2e{bottom:172.710667pt;}
.y194{bottom:174.627388pt;}
.y1f6{bottom:176.058667pt;}
.y109{bottom:178.358667pt;}
.y1b8{bottom:178.460458pt;}
.y53{bottom:184.426667pt;}
.y135{bottom:185.688000pt;}
.y88{bottom:185.701333pt;}
.y19e{bottom:186.536000pt;}
.y1f5{bottom:188.610667pt;}
.y2d{bottom:189.448000pt;}
.y108{bottom:195.096000pt;}
.y52{bottom:201.164000pt;}
.y134{bottom:202.425333pt;}
.y87{bottom:202.438667pt;}
.y19d{bottom:203.273333pt;}
.y198{bottom:204.701383pt;}
.y195{bottom:204.867707pt;}
.y2c{bottom:206.185333pt;}
.y107{bottom:211.833333pt;}
.y1b9{bottom:211.878302pt;}
.y1f4{bottom:213.717333pt;}
.y1c1{bottom:217.381611pt;}
.y51{bottom:217.901333pt;}
.yb2{bottom:218.400000pt;}
.y133{bottom:219.162667pt;}
.y86{bottom:219.176000pt;}
.y19c{bottom:220.010667pt;}
.y197{bottom:220.786326pt;}
.y2b{bottom:222.922667pt;}
.y1f3{bottom:226.270667pt;}
.y1c0{bottom:226.639368pt;}
.y106{bottom:228.570667pt;}
.y1cb{bottom:229.062667pt;}
.ydf{bottom:232.492000pt;}
.y50{bottom:234.638667pt;}
.yb1{bottom:235.137333pt;}
.y1bf{bottom:235.897126pt;}
.y132{bottom:235.900000pt;}
.y85{bottom:235.913333pt;}
.y19b{bottom:236.748000pt;}
.y1f2{bottom:238.822667pt;}
.y2a{bottom:239.660000pt;}
.y1be{bottom:245.154883pt;}
.y105{bottom:245.216000pt;}
.y1ba{bottom:245.296145pt;}
.y15a{bottom:251.376000pt;}
.yb0{bottom:251.874667pt;}
.y131{bottom:252.637333pt;}
.y84{bottom:252.650667pt;}
.y4f{bottom:253.169333pt;}
.y19a{bottom:253.485333pt;}
.y29{bottom:256.397333pt;}
.yce{bottom:259.359530pt;}
.y1bd{bottom:259.411238pt;}
.y104{bottom:261.953333pt;}
.y1f1{bottom:263.929333pt;}
.y1ca{bottom:264.782667pt;}
.y159{bottom:268.113333pt;}
.yaf{bottom:268.612000pt;}
.y130{bottom:269.374667pt;}
.y83{bottom:269.388000pt;}
.y4e{bottom:269.906667pt;}
.y28{bottom:273.134667pt;}
.y1f0{bottom:276.481333pt;}
.y103{bottom:278.690667pt;}
.y1c9{bottom:281.520000pt;}
.y158{bottom:284.850667pt;}
.yae{bottom:285.349333pt;}
.y82{bottom:286.125333pt;}
.y4d{bottom:286.644000pt;}
.y12f{bottom:287.372000pt;}
.y1ef{bottom:289.034667pt;}
.y27{bottom:289.872000pt;}
.y199{bottom:291.680000pt;}
.y1c8{bottom:298.257333pt;}
.y102{bottom:299.680000pt;}
.y157{bottom:301.588000pt;}
.yad{bottom:302.086667pt;}
.y81{bottom:302.862667pt;}
.y4c{bottom:303.381333pt;}
.y12e{bottom:304.109333pt;}
.y26{bottom:306.468000pt;}
.y18d{bottom:311.366667pt;}
.y1ee{bottom:314.141333pt;}
.y1c7{bottom:314.994667pt;}
.y156{bottom:318.325333pt;}
.yac{bottom:318.824000pt;}
.y4b{bottom:320.117333pt;}
.y12d{bottom:320.846667pt;}
.y80{bottom:320.874667pt;}
.y17c{bottom:322.761333pt;}
.y25{bottom:323.205333pt;}
.y101{bottom:325.157333pt;}
.y1ed{bottom:326.693333pt;}
.y1c6{bottom:331.732000pt;}
.yab{bottom:335.561333pt;}
.y4a{bottom:336.854667pt;}
.y12c{bottom:337.584000pt;}
.y7f{bottom:337.612000pt;}
.y1ec{bottom:339.246667pt;}
.y17b{bottom:339.498667pt;}
.y24{bottom:339.942667pt;}
.y100{bottom:341.894667pt;}
.y155{bottom:347.438667pt;}
.y1c5{bottom:348.469333pt;}
.yaa{bottom:352.298667pt;}
.y12b{bottom:354.321333pt;}
.y7e{bottom:354.349333pt;}
.y49{bottom:355.385333pt;}
.y17a{bottom:356.236000pt;}
.y23{bottom:356.680000pt;}
.yff{bottom:358.632000pt;}
.y1eb{bottom:359.866667pt;}
.y154{bottom:364.176000pt;}
.y1c4{bottom:365.206667pt;}
.ya9{bottom:369.036000pt;}
.y12a{bottom:371.058667pt;}
.y7d{bottom:371.086667pt;}
.y48{bottom:372.122667pt;}
.y179{bottom:372.973333pt;}
.y22{bottom:373.417333pt;}
.yfe{bottom:375.277333pt;}
.y153{bottom:380.913333pt;}
.y1c3{bottom:381.944000pt;}
.ya8{bottom:385.773333pt;}
.y1ea{bottom:385.784000pt;}
.y129{bottom:387.796000pt;}
.y7c{bottom:387.824000pt;}
.y47{bottom:388.860000pt;}
.y178{bottom:389.710667pt;}
.y21{bottom:390.154667pt;}
.yfd{bottom:392.014667pt;}
.y152{bottom:397.650667pt;}
.ya7{bottom:402.510667pt;}
.y1e9{bottom:402.521333pt;}
.y128{bottom:404.533333pt;}
.y7b{bottom:404.561333pt;}
.y46{bottom:405.597333pt;}
.y177{bottom:406.448000pt;}
.y20{bottom:406.892000pt;}
.yfc{bottom:408.752000pt;}
.y225{bottom:412.569333pt;}
.y151{bottom:414.388000pt;}
.y1c2{bottom:417.450667pt;}
.y1e8{bottom:419.258667pt;}
.ya6{bottom:419.745333pt;}
.y127{bottom:421.270667pt;}
.y7a{bottom:421.298667pt;}
.y45{bottom:422.334667pt;}
.y176{bottom:423.185333pt;}
.y1f{bottom:423.629333pt;}
.y224{bottom:425.122667pt;}
.yfb{bottom:425.489333pt;}
.y150{bottom:431.125333pt;}
.y1e7{bottom:435.976000pt;}
.ya5{bottom:436.482667pt;}
.y1af{bottom:437.137333pt;}
.y223{bottom:437.676000pt;}
.y126{bottom:438.008000pt;}
.y79{bottom:438.036000pt;}
.y44{bottom:439.072000pt;}
.y175{bottom:439.922667pt;}
.y1e{bottom:440.366667pt;}
.yfa{bottom:442.226667pt;}
.ycd{bottom:447.088000pt;}
.y14f{bottom:447.862667pt;}
.y1e6{bottom:449.924000pt;}
.y222{bottom:450.228000pt;}
.ya4{bottom:453.220000pt;}
.y125{bottom:454.745333pt;}
.y78{bottom:454.773333pt;}
.y43{bottom:455.809333pt;}
.y1d{bottom:457.104000pt;}
.yf9{bottom:458.964000pt;}
.y174{bottom:461.096000pt;}
.y221{bottom:462.781333pt;}
.ycc{bottom:463.825333pt;}
.y1e5{bottom:463.872000pt;}
.y14e{bottom:464.600000pt;}
.ya3{bottom:469.957333pt;}
.y77{bottom:471.510667pt;}
.y42{bottom:472.546667pt;}
.y124{bottom:472.744000pt;}
.y1c{bottom:473.841333pt;}
.y220{bottom:475.334667pt;}
.yf8{bottom:475.701333pt;}
.y1e4{bottom:477.818667pt;}
.y173{bottom:477.833333pt;}
.ycb{bottom:480.562667pt;}
.ya2{bottom:486.694667pt;}
.y21f{bottom:487.888000pt;}
.y76{bottom:488.248000pt;}
.y123{bottom:489.481333pt;}
.y1b{bottom:490.578667pt;}
.y41{bottom:491.076000pt;}
.y1e3{bottom:491.746667pt;}
.yf7{bottom:492.438667pt;}
.y14d{bottom:493.713333pt;}
.y172{bottom:494.570667pt;}
.yca{bottom:497.300000pt;}
.y21e{bottom:500.440000pt;}
.ya1{bottom:503.432000pt;}
.y75{bottom:504.985333pt;}
.y1e2{bottom:505.694667pt;}
.y122{bottom:506.217333pt;}
.y40{bottom:507.813333pt;}
.yf6{bottom:509.176000pt;}
.y14c{bottom:510.450667pt;}
.y171{bottom:511.308000pt;}
.y1a{bottom:511.518667pt;}
.y21d{bottom:512.993333pt;}
.yc9{bottom:514.037333pt;}
.y1e1{bottom:519.641333pt;}
.ya0{bottom:520.668000pt;}
.y74{bottom:521.721333pt;}
.y121{bottom:522.954667pt;}
.y3f{bottom:524.550667pt;}
.y21c{bottom:525.546667pt;}
.yf5{bottom:525.913333pt;}
.y14b{bottom:527.188000pt;}
.y170{bottom:528.045333pt;}
.yc8{bottom:530.774667pt;}
.y9f{bottom:537.405333pt;}
.y21b{bottom:538.098667pt;}
.y73{bottom:538.458667pt;}
.y120{bottom:539.692000pt;}
.y19{bottom:540.432000pt;}
.y3e{bottom:541.288000pt;}
.y1e0{bottom:542.445333pt;}
.yf4{bottom:542.558667pt;}
.y14a{bottom:543.925333pt;}
.yc7{bottom:547.512000pt;}
.y21a{bottom:550.652000pt;}
.y9e{bottom:554.142667pt;}
.y16f{bottom:554.342667pt;}
.y18{bottom:554.380000pt;}
.y11f{bottom:556.429333pt;}
.y72{bottom:556.470667pt;}
.y3d{bottom:558.025333pt;}
.yf3{bottom:559.296000pt;}
.y1df{bottom:561.493333pt;}
.y219{bottom:563.205333pt;}
.yc6{bottom:564.249333pt;}
.y17{bottom:568.186667pt;}
.y9d{bottom:570.880000pt;}
.y71{bottom:573.208000pt;}
.y11e{bottom:574.428000pt;}
.y3c{bottom:574.762667pt;}
.y218{bottom:575.758667pt;}
.yf2{bottom:576.033333pt;}
.y1de{bottom:580.542667pt;}
.yc5{bottom:580.986667pt;}
.y16{bottom:582.134667pt;}
.y18c{bottom:584.097333pt;}
.y9c{bottom:587.617333pt;}
.y217{bottom:588.310667pt;}
.y70{bottom:589.945333pt;}
.y11d{bottom:591.165333pt;}
.y3b{bottom:591.500000pt;}
.yf1{bottom:592.770667pt;}
.y15{bottom:596.081333pt;}
.yc4{bottom:597.724000pt;}
.y1dd{bottom:598.474667pt;}
.y18b{bottom:600.834667pt;}
.y216{bottom:600.864000pt;}
.y9b{bottom:604.354667pt;}
.y6f{bottom:606.682667pt;}
.y11c{bottom:607.902667pt;}
.y3a{bottom:608.237333pt;}
.yf0{bottom:609.508000pt;}
.y16e{bottom:609.964000pt;}
.y14{bottom:610.029333pt;}
.y215{bottom:613.417333pt;}
.yc3{bottom:614.461333pt;}
.y18a{bottom:617.572000pt;}
.y9a{bottom:621.092000pt;}
.y6e{bottom:623.420000pt;}
.y13{bottom:623.977333pt;}
.y11b{bottom:624.640000pt;}
.y39{bottom:624.974667pt;}
.y214{bottom:625.969333pt;}
.yef{bottom:626.245333pt;}
.y149{bottom:630.302667pt;}
.yc2{bottom:631.198667pt;}
.y189{bottom:634.309333pt;}
.y1dc{bottom:635.226667pt;}
.y99{bottom:637.829333pt;}
.y12{bottom:637.925333pt;}
.y213{bottom:638.522667pt;}
.y6d{bottom:640.157333pt;}
.y11a{bottom:641.377333pt;}
.yee{bottom:642.890667pt;}
.y16d{bottom:643.186667pt;}
.y38{bottom:643.504000pt;}
.yc1{bottom:647.936000pt;}
.y1db{bottom:649.173333pt;}
.y188{bottom:651.046667pt;}
.y212{bottom:651.076000pt;}
.y11{bottom:651.873333pt;}
.y98{bottom:654.566667pt;}
.y6c{bottom:656.894667pt;}
.y119{bottom:658.114667pt;}
.yed{bottom:659.628000pt;}
.y16c{bottom:659.924000pt;}
.y37{bottom:660.241333pt;}
.y1da{bottom:663.121333pt;}
.y148{bottom:663.525333pt;}
.y211{bottom:663.629333pt;}
.yc0{bottom:664.673333pt;}
.y10{bottom:665.820000pt;}
.y187{bottom:667.784000pt;}
.y97{bottom:671.304000pt;}
.y6b{bottom:673.632000pt;}
.y118{bottom:674.852000pt;}
.y210{bottom:676.181333pt;}
.yec{bottom:676.365333pt;}
.y16b{bottom:676.661333pt;}
.y36{bottom:676.978667pt;}
.y1d9{bottom:677.069333pt;}
.yf{bottom:679.768000pt;}
.y147{bottom:680.262667pt;}
.ybf{bottom:681.410667pt;}
.y186{bottom:684.521333pt;}
.y96{bottom:688.041333pt;}
.y20f{bottom:688.734667pt;}
.y6a{bottom:690.369333pt;}
.y1d8{bottom:691.017333pt;}
.yeb{bottom:693.102667pt;}
.y16a{bottom:693.398667pt;}
.ye{bottom:693.716000pt;}
.y146{bottom:697.000000pt;}
.ybe{bottom:697.914667pt;}
.y185{bottom:701.258667pt;}
.y20e{bottom:701.288000pt;}
.y95{bottom:704.778667pt;}
.y1d7{bottom:704.965333pt;}
.y69{bottom:707.106667pt;}
.yd{bottom:707.664000pt;}
.yea{bottom:709.840000pt;}
.y169{bottom:710.136000pt;}
.y35{bottom:710.453333pt;}
.y145{bottom:713.737333pt;}
.y20d{bottom:713.841333pt;}
.ybd{bottom:714.652000pt;}
.y184{bottom:717.996000pt;}
.y1d6{bottom:718.912000pt;}
.yc{bottom:721.612000pt;}
.y117{bottom:723.882667pt;}
.y68{bottom:725.118667pt;}
.y20c{bottom:726.393333pt;}
.ye9{bottom:726.577333pt;}
.y168{bottom:726.873333pt;}
.y34{bottom:727.190667pt;}
.y94{bottom:728.945333pt;}
.ybc{bottom:731.389333pt;}
.y1ae{bottom:733.726667pt;}
.yb{bottom:735.558667pt;}
.y183{bottom:736.842667pt;}
.y1d5{bottom:737.182667pt;}
.y20b{bottom:738.946667pt;}
.y144{bottom:741.464000pt;}
.y67{bottom:741.856000pt;}
.ye8{bottom:743.314667pt;}
.y167{bottom:743.609333pt;}
.y33{bottom:743.928000pt;}
.ybb{bottom:748.126667pt;}
.ya{bottom:749.506667pt;}
.y1ad{bottom:750.464000pt;}
.y20a{bottom:751.500000pt;}
.y182{bottom:753.580000pt;}
.y143{bottom:758.201333pt;}
.y66{bottom:758.593333pt;}
.y93{bottom:759.369333pt;}
.ye7{bottom:760.052000pt;}
.y166{bottom:760.346667pt;}
.y32{bottom:760.665333pt;}
.y1d4{bottom:763.101333pt;}
.y9{bottom:763.454667pt;}
.y209{bottom:764.052000pt;}
.y1ac{bottom:767.201333pt;}
.yba{bottom:768.974667pt;}
.y181{bottom:770.316000pt;}
.y142{bottom:774.938667pt;}
.y65{bottom:775.330667pt;}
.y92{bottom:776.106667pt;}
.y208{bottom:776.605333pt;}
.ye6{bottom:776.789333pt;}
.y165{bottom:777.084000pt;}
.y8{bottom:777.402667pt;}
.y1d3{bottom:779.838667pt;}
.y1ab{bottom:783.938667pt;}
.y207{bottom:789.158667pt;}
.y141{bottom:791.676000pt;}
.y64{bottom:792.068000pt;}
.y91{bottom:792.844000pt;}
.ye5{bottom:793.434667pt;}
.yb9{bottom:793.576000pt;}
.y164{bottom:793.821333pt;}
.y1d2{bottom:796.576000pt;}
.y111{bottom:797.217110pt;}
.y180{bottom:798.980000pt;}
.y1aa{bottom:800.676000pt;}
.y206{bottom:801.712000pt;}
.y140{bottom:808.413333pt;}
.y63{bottom:808.805333pt;}
.y90{bottom:809.581333pt;}
.ye4{bottom:810.172000pt;}
.yb8{bottom:810.313333pt;}
.y163{bottom:810.558667pt;}
.y1d1{bottom:813.313333pt;}
.y205{bottom:814.264000pt;}
.y1a9{bottom:817.413333pt;}
.y7{bottom:825.012000pt;}
.y13f{bottom:825.150667pt;}
.y62{bottom:825.542667pt;}
.y8f{bottom:826.318667pt;}
.y204{bottom:826.817333pt;}
.ye3{bottom:826.909333pt;}
.yb7{bottom:827.050667pt;}
.y162{bottom:827.296000pt;}
.y1d0{bottom:830.050667pt;}
.y1a8{bottom:834.150667pt;}
.y112{bottom:834.677409pt;}
.y203{bottom:839.370667pt;}
.y13e{bottom:841.888000pt;}
.y61{bottom:842.280000pt;}
.y6{bottom:842.928000pt;}
.y8e{bottom:843.056000pt;}
.y17f{bottom:843.554667pt;}
.ye2{bottom:843.646667pt;}
.yb6{bottom:843.788000pt;}
.y161{bottom:844.033333pt;}
.y1cf{bottom:846.788000pt;}
.y116{bottom:847.213381pt;}
.y1a7{bottom:850.888000pt;}
.y202{bottom:851.922667pt;}
.y13d{bottom:858.625333pt;}
.y60{bottom:859.017333pt;}
.y113{bottom:859.207237pt;}
.y8d{bottom:859.793333pt;}
.y17e{bottom:860.292000pt;}
.ye1{bottom:860.384000pt;}
.yb5{bottom:860.525333pt;}
.y160{bottom:860.770667pt;}
.y5{bottom:861.058667pt;}
.y1ce{bottom:863.525333pt;}
.y201{bottom:864.476000pt;}
.y1a6{bottom:868.726667pt;}
.y13c{bottom:875.362667pt;}
.y5f{bottom:875.754667pt;}
.y8c{bottom:876.530667pt;}
.y17d{bottom:877.029333pt;}
.ye0{bottom:877.121333pt;}
.yb4{bottom:877.262667pt;}
.y15f{bottom:877.508000pt;}
.y4{bottom:879.692000pt;}
.y1cd{bottom:880.262667pt;}
.y1a5{bottom:885.464000pt;}
.y200{bottom:889.582667pt;}
.y13b{bottom:892.100000pt;}
.y8b{bottom:893.268000pt;}
.y5e{bottom:893.766667pt;}
.yb3{bottom:894.000000pt;}
.y15e{bottom:894.245333pt;}
.y1cc{bottom:901.322667pt;}
.y1ff{bottom:902.134667pt;}
.y1a4{bottom:902.201333pt;}
.y13a{bottom:908.837333pt;}
.y5d{bottom:910.504000pt;}
.y15d{bottom:910.982667pt;}
.y1fe{bottom:914.688000pt;}
.y1a3{bottom:918.938667pt;}
.y114{bottom:919.524406pt;}
.y10f{bottom:919.565841pt;}
.y3{bottom:922.132000pt;}
.y139{bottom:925.574667pt;}
.y5c{bottom:927.241333pt;}
.y15c{bottom:927.720000pt;}
.y115{bottom:930.188009pt;}
.y1a2{bottom:935.676000pt;}
.y1fd{bottom:939.793333pt;}
.y138{bottom:942.312000pt;}
.y5b{bottom:943.978667pt;}
.y15b{bottom:944.457333pt;}
.y1fc{bottom:952.346667pt;}
.y1a1{bottom:952.413333pt;}
.y110{bottom:957.026141pt;}
.y137{bottom:960.014667pt;}
.y5a{bottom:960.716000pt;}
.y2{bottom:961.186667pt;}
.y1fb{bottom:964.900000pt;}
.y136{bottom:976.752000pt;}
.y59{bottom:977.453333pt;}
.y1{bottom:1018.057333pt;}
.h9{height:19.026364pt;}
.hb{height:19.039124pt;}
.h8{height:23.103441pt;}
.h18{height:23.447465pt;}
.h15{height:26.454947pt;}
.h19{height:28.136957pt;}
.h1f{height:29.074965pt;}
.h1e{height:30.605227pt;}
.h16{height:31.745937pt;}
.ha{height:32.093430pt;}
.h6{height:32.709184pt;}
.h1a{height:34.430720pt;}
.h1b{height:35.865600pt;}
.hd{height:36.343403pt;}
.h13{height:37.778179pt;}
.h1{height:38.256213pt;}
.h11{height:39.850400pt;}
.h12{height:41.019345pt;}
.h1d{height:41.515221pt;}
.h10{height:42.105947pt;}
.hc{height:43.976550pt;}
.h1c{height:44.171221pt;}
.h5{height:49.205069pt;}
.h3{height:51.034402pt;}
.h4{height:51.039735pt;}
.hf{height:56.471752pt;}
.he{height:72.241146pt;}
.h2{height:91.815253pt;}
.h7{height:161.016633pt;}
.h14{height:246.039552pt;}
.h17{height:272.586240pt;}
.h0{height:1056.000000pt;}
.w1{width:308.791767pt;}
.w3{width:318.017280pt;}
.w2{width:328.052736pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:8.800990pt;}
.x3a{left:12.120623pt;}
.x3b{left:19.181758pt;}
.x33{left:22.641281pt;}
.x32{left:26.968419pt;}
.x37{left:44.007847pt;}
.x1a{left:51.990854pt;}
.x2e{left:60.942667pt;}
.x9{left:65.285333pt;}
.x2c{left:66.766667pt;}
.x2d{left:67.829333pt;}
.x2b{left:71.926667pt;}
.x36{left:73.654667pt;}
.x8{left:78.569333pt;}
.x25{left:82.958667pt;}
.x3d{left:88.872000pt;}
.x3c{left:90.338486pt;}
.x30{left:91.852000pt;}
.x34{left:94.676906pt;}
.x38{left:98.545414pt;}
.x13{left:99.512102pt;}
.x14{left:101.203821pt;}
.x11{left:108.306121pt;}
.x10{left:118.835610pt;}
.x1e{left:134.024000pt;}
.x31{left:134.983814pt;}
.x1d{left:137.918484pt;}
.x20{left:141.048546pt;}
.x4{left:142.137333pt;}
.x1b{left:143.685776pt;}
.x1c{left:145.173916pt;}
.x2{left:146.230667pt;}
.x1f{left:155.572559pt;}
.x1{left:156.794667pt;}
.xe{left:164.806667pt;}
.x2f{left:167.360000pt;}
.x24{left:182.390836pt;}
.x15{left:186.190794pt;}
.xa{left:187.550667pt;}
.x3e{left:190.940000pt;}
.x16{left:195.451494pt;}
.x3{left:202.652000pt;}
.xf{left:204.201762pt;}
.x23{left:206.563282pt;}
.x18{left:219.791823pt;}
.x19{left:229.052523pt;}
.x5{left:232.866667pt;}
.x6{left:240.770667pt;}
.x39{left:251.505689pt;}
.x17{left:270.120446pt;}
.x7{left:274.804000pt;}
.x22{left:281.792059pt;}
.x21{left:303.004455pt;}
.x2a{left:411.626667pt;}
.x29{left:412.689333pt;}
.xc{left:415.970667pt;}
.x27{left:417.452000pt;}
.x28{left:418.514667pt;}
.x26{left:422.612000pt;}
.x41{left:425.714667pt;}
.xb{left:429.253333pt;}
.x35{left:440.841333pt;}
.x44{left:442.237333pt;}
.xd{left:475.808000pt;}
.x42{left:516.330667pt;}
.x3f{left:527.865333pt;}
.x43{left:549.354667pt;}
.x40{left:554.877333pt;}
}




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