
    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_abde9b9ac7579d9135dd35c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dfee85e99ce2826601db0115.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_eae606c2d4f15f8aed9ba395.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_37855f83df752f4369ef5d2e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d6b8fa5c518ca27572599cfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_e48a796209afb676424c0ff0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01c9793738bbb6ba69bfc91b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.390000;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_6d374c278d8aad412281b529.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e6bb964c8187c1c1bdf9965f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52c07533b3a74efb60c97a43.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917000;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_6bb40051b1c43b89d6d85eb1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a89730e9ed4b35c849f5ab67.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_fdfe50be8392b8dee86aff0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_402dbe0279be4159f2c45d22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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_265128f810d0e1a174fe828a.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;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_dfb69982013ac71ca0e2d719.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_324c4af1fcbc739b3ae9b42e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.539000;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_1ad2d9fec6ea3e390e004be4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.542000;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_c4f27fb1822c42b4756bf4f2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-62.766000px;}
.va{vertical-align:-44.832000px;}
.vc{vertical-align:-17.928000px;}
.v5{vertical-align:-10.764000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.988000px;}
.v2{vertical-align:15.948000px;}
.v4{vertical-align:21.690000px;}
.v8{vertical-align:24.684000px;}
.ve{vertical-align:30.054000px;}
.vd{vertical-align:39.024000px;}
.v6{vertical-align:41.346000px;}
.vb{vertical-align:44.838000px;}
.v7{vertical-align:56.784000px;}
.ls14{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000793px;}
.ls8d{letter-spacing:0.002400px;}
.ls64{letter-spacing:0.002638px;}
.ls8e{letter-spacing:0.004372px;}
.ls6e{letter-spacing:0.005397px;}
.ls7a{letter-spacing:0.005477px;}
.ls80{letter-spacing:0.005807px;}
.ls34{letter-spacing:0.006786px;}
.ls9f{letter-spacing:0.008885px;}
.lsa0{letter-spacing:0.012266px;}
.ls8a{letter-spacing:0.014885px;}
.ls85{letter-spacing:0.018346px;}
.ls31{letter-spacing:0.022167px;}
.lsa4{letter-spacing:0.023528px;}
.ls2d{letter-spacing:0.024863px;}
.ls82{letter-spacing:0.025777px;}
.ls8b{letter-spacing:0.030040px;}
.lsa1{letter-spacing:0.059776px;}
.ls36{letter-spacing:0.239102px;}
.ls51{letter-spacing:1.506341px;}
.lse{letter-spacing:1.613941px;}
.ls99{letter-spacing:1.673717px;}
.ls72{letter-spacing:2.050297px;}
.ls45{letter-spacing:2.092146px;}
.ls77{letter-spacing:2.137915px;}
.ls11{letter-spacing:2.151922px;}
.ls68{letter-spacing:2.154463px;}
.ls78{letter-spacing:2.171150px;}
.ls65{letter-spacing:2.426882px;}
.ls6d{letter-spacing:2.980401px;}
.ls8c{letter-spacing:2.983140px;}
.ls69{letter-spacing:2.985089px;}
.ls21{letter-spacing:2.986851px;}
.ls3a{letter-spacing:2.986982px;}
.ls58{letter-spacing:2.988615px;}
.ls7{letter-spacing:2.988780px;}
.ls3f{letter-spacing:2.989140px;}
.ls37{letter-spacing:2.990525px;}
.ls2f{letter-spacing:3.048556px;}
.ls2c{letter-spacing:3.466985px;}
.ls8f{letter-spacing:3.994868px;}
.ls86{letter-spacing:4.000868px;}
.ls9d{letter-spacing:4.275333px;}
.ls98{letter-spacing:4.281333px;}
.ls4c{letter-spacing:4.662497px;}
.ls56{letter-spacing:4.669378px;}
.ls4d{letter-spacing:4.722272px;}
.ls43{letter-spacing:4.841824px;}
.ls5c{letter-spacing:4.901599px;}
.ls47{letter-spacing:4.961375px;}
.ls74{letter-spacing:5.402908px;}
.ls6a{letter-spacing:5.408908px;}
.lsa2{letter-spacing:5.915096px;}
.ls7e{letter-spacing:6.395989px;}
.ls79{letter-spacing:6.431388px;}
.ls76{letter-spacing:6.450018px;}
.ls12{letter-spacing:6.455765px;}
.ls3c{letter-spacing:6.508612px;}
.ls59{letter-spacing:6.515540px;}
.ls39{letter-spacing:6.533236px;}
.ls1f{letter-spacing:7.471950px;}
.ls81{letter-spacing:8.249033px;}
.ls44{letter-spacing:8.308808px;}
.ls46{letter-spacing:8.727238px;}
.ls5e{letter-spacing:9.922750px;}
.ls9e{letter-spacing:9.949448px;}
.ls3e{letter-spacing:9.982525px;}
.ls3d{letter-spacing:12.952982px;}
.ls5d{letter-spacing:13.255416px;}
.lsf{letter-spacing:13.270183px;}
.ls16{letter-spacing:13.329959px;}
.ls1e{letter-spacing:13.867939px;}
.ls89{letter-spacing:13.960868px;}
.ls84{letter-spacing:13.966868px;}
.ls87{letter-spacing:15.183002px;}
.lsa8{letter-spacing:15.541656px;}
.lsa7{letter-spacing:15.601432px;}
.ls3{letter-spacing:16.557841px;}
.ls23{letter-spacing:16.602538px;}
.ls2{letter-spacing:16.617617px;}
.ls6c{letter-spacing:16.627364px;}
.ls22{letter-spacing:16.632405px;}
.ls38{letter-spacing:17.215373px;}
.ls2e{letter-spacing:17.275148px;}
.lsa5{letter-spacing:17.514251px;}
.ls6{letter-spacing:17.574026px;}
.ls5{letter-spacing:17.633802px;}
.ls90{letter-spacing:17.722868px;}
.ls5a{letter-spacing:17.753353px;}
.ls15{letter-spacing:18.313295px;}
.ls67{letter-spacing:18.692908px;}
.ls1d{letter-spacing:18.709763px;}
.ls19{letter-spacing:18.769538px;}
.ls49{letter-spacing:18.829314px;}
.ls32{letter-spacing:19.244525px;}
.ls5b{letter-spacing:19.307519px;}
.ls70{letter-spacing:19.579031px;}
.ls66{letter-spacing:19.582401px;}
.ls3b{letter-spacing:19.592525px;}
.ls57{letter-spacing:19.596615px;}
.ls10{letter-spacing:19.725948px;}
.ls9{letter-spacing:19.785724px;}
.lsa6{letter-spacing:19.845499px;}
.ls18{letter-spacing:19.905275px;}
.ls71{letter-spacing:19.965050px;}
.ls6b{letter-spacing:20.024826px;}
.ls2b{letter-spacing:20.084602px;}
.ls33{letter-spacing:20.282525px;}
.ls93{letter-spacing:20.562806px;}
.lsa{letter-spacing:20.622582px;}
.lsa3{letter-spacing:20.682358px;}
.lsd{letter-spacing:20.861684px;}
.ls91{letter-spacing:20.921460px;}
.ls88{letter-spacing:21.004868px;}
.ls4b{letter-spacing:21.037757px;}
.ls7f{letter-spacing:21.280114px;}
.lsc{letter-spacing:21.399665px;}
.ls28{letter-spacing:21.638767px;}
.ls20{letter-spacing:21.686177px;}
.ls63{letter-spacing:21.877870px;}
.ls8{letter-spacing:22.057196px;}
.ls1b{letter-spacing:22.296299px;}
.ls83{letter-spacing:22.714728px;}
.ls96{letter-spacing:22.774504px;}
.ls7b{letter-spacing:22.834279px;}
.ls25{letter-spacing:22.953830px;}
.ls24{letter-spacing:23.013606px;}
.ls1{letter-spacing:23.073382px;}
.ls30{letter-spacing:23.611362px;}
.ls92{letter-spacing:23.756128px;}
.ls5f{letter-spacing:23.790689px;}
.ls4{letter-spacing:24.029791px;}
.ls4a{letter-spacing:24.149342px;}
.ls1c{letter-spacing:24.507996px;}
.ls29{letter-spacing:24.627547px;}
.ls2a{letter-spacing:24.926425px;}
.ls35{letter-spacing:25.352525px;}
.lsb{letter-spacing:25.643732px;}
.ls26{letter-spacing:26.002386px;}
.ls42{letter-spacing:26.062162px;}
.ls97{letter-spacing:26.839244px;}
.ls41{letter-spacing:26.899200px;}
.ls4e{letter-spacing:26.958796px;}
.ls48{letter-spacing:27.078347px;}
.ls7d{letter-spacing:27.138122px;}
.ls61{letter-spacing:27.616327px;}
.ls50{letter-spacing:28.512961px;}
.ls1a{letter-spacing:28.752064px;}
.ls54{letter-spacing:28.811839px;}
.ls27{letter-spacing:29.768249px;}
.ls9b{letter-spacing:29.828024px;}
.ls40{letter-spacing:29.882915px;}
.ls0{letter-spacing:29.887800px;}
.ls62{letter-spacing:30.246454px;}
.ls94{letter-spacing:30.903985px;}
.ls52{letter-spacing:32.547536px;}
.ls4f{letter-spacing:33.175458px;}
.ls60{letter-spacing:33.952541px;}
.ls95{letter-spacing:34.908950px;}
.ls55{letter-spacing:35.865360px;}
.ls9a{letter-spacing:36.283789px;}
.ls53{letter-spacing:37.180423px;}
.ls7c{letter-spacing:45.668558px;}
.ls9c{letter-spacing:49.041333px;}
.ls75{letter-spacing:162.915269px;}
.ls13{letter-spacing:582.154568px;}
.ls17{letter-spacing:601.570851px;}
.ls6f{letter-spacing:794.140401px;}
.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;}
}
.wsc9{word-spacing:-105.444158px;}
.wsc6{word-spacing:-92.951058px;}
.ws9a{word-spacing:-59.775600px;}
.wsc3{word-spacing:-46.505417px;}
.wse1{word-spacing:-43.157983px;}
.wscd{word-spacing:-39.810550px;}
.ws15{word-spacing:-38.937826px;}
.wse4{word-spacing:-37.527122px;}
.ws13{word-spacing:-33.223278px;}
.wsc2{word-spacing:-31.633157px;}
.ws9b{word-spacing:-29.015076px;}
.wsa9{word-spacing:-28.955301px;}
.wsde{word-spacing:-26.540366px;}
.ws26{word-spacing:-24.158616px;}
.ws6a{word-spacing:-23.455945px;}
.wsc5{word-spacing:-17.478385px;}
.ws2f{word-spacing:-16.605662px;}
.ws20{word-spacing:-15.924220px;}
.wsed{word-spacing:-15.278643px;}
.wscb{word-spacing:-12.815889px;}
.ws1b{word-spacing:-12.576786px;}
.wsc8{word-spacing:-11.201947px;}
.ws5b{word-spacing:-10.544416px;}
.wsc1{word-spacing:-9.621108px;}
.wsbe{word-spacing:-6.682912px;}
.wsa5{word-spacing:-6.623136px;}
.wscc{word-spacing:-6.083923px;}
.wsf0{word-spacing:-5.355894px;}
.ws16{word-spacing:-3.335478px;}
.ws48{word-spacing:-3.096376px;}
.wsdf{word-spacing:-2.917049px;}
.ws5{word-spacing:-2.737722px;}
.ws8{word-spacing:-2.558396px;}
.ws8a{word-spacing:-2.498620px;}
.ws69{word-spacing:-2.414934px;}
.ws79{word-spacing:-2.379069px;}
.wsd6{word-spacing:-2.319293px;}
.ws90{word-spacing:-2.259518px;}
.wsb7{word-spacing:-2.139966px;}
.ws32{word-spacing:-2.020415px;}
.ws92{word-spacing:-1.900864px;}
.ws4{word-spacing:-1.841088px;}
.ws8f{word-spacing:-1.781313px;}
.wsf3{word-spacing:-1.721537px;}
.ws2a{word-spacing:-1.661762px;}
.wsd7{word-spacing:-1.637851px;}
.ws4a{word-spacing:-1.303108px;}
.wsbd{word-spacing:-1.243332px;}
.ws50{word-spacing:-1.183557px;}
.wsf5{word-spacing:-1.064006px;}
.ws6f{word-spacing:-0.824903px;}
.ws18{word-spacing:-0.585801px;}
.wsb8{word-spacing:-0.466250px;}
.ws4b{word-spacing:-0.346698px;}
.ws94{word-spacing:-0.286923px;}
.wsb9{word-spacing:-0.107596px;}
.wsd4{word-spacing:-0.059776px;}
.wsdd{word-spacing:-0.047820px;}
.wsdc{word-spacing:-0.021471px;}
.ws14{word-spacing:0.000000px;}
.ws71{word-spacing:0.011955px;}
.ws40{word-spacing:0.071731px;}
.ws31{word-spacing:0.131506px;}
.ws86{word-spacing:0.191282px;}
.wscf{word-spacing:0.370609px;}
.wsdb{word-spacing:0.430384px;}
.wsb0{word-spacing:0.490160px;}
.ws4f{word-spacing:0.669487px;}
.ws46{word-spacing:0.729262px;}
.ws8d{word-spacing:0.968365px;}
.ws3c{word-spacing:1.087916px;}
.wsa8{word-spacing:1.147692px;}
.ws2c{word-spacing:1.207467px;}
.ws76{word-spacing:1.267243px;}
.ws7d{word-spacing:1.506345px;}
.ws33{word-spacing:1.566121px;}
.ws8e{word-spacing:1.625896px;}
.ws70{word-spacing:1.685672px;}
.wsd8{word-spacing:1.697627px;}
.ws3f{word-spacing:1.745448px;}
.ws61{word-spacing:1.805223px;}
.ws5e{word-spacing:1.924774px;}
.wsb3{word-spacing:2.163877px;}
.ws47{word-spacing:2.223652px;}
.ws6b{word-spacing:2.283428px;}
.ws87{word-spacing:2.343204px;}
.wsd3{word-spacing:2.462755px;}
.ws2b{word-spacing:2.582306px;}
.ws19{word-spacing:2.642082px;}
.ws2d{word-spacing:2.761633px;}
.ws60{word-spacing:2.821408px;}
.ws8b{word-spacing:2.881184px;}
.ws7a{word-spacing:3.000735px;}
.ws80{word-spacing:3.060511px;}
.ws4c{word-spacing:3.120286px;}
.wsbb{word-spacing:3.180062px;}
.ws3{word-spacing:3.299613px;}
.ws6d{word-spacing:3.359389px;}
.ws1f{word-spacing:3.371344px;}
.ws1e{word-spacing:3.431119px;}
.ws36{word-spacing:3.478940px;}
.wsa0{word-spacing:3.490895px;}
.ws73{word-spacing:3.538716px;}
.ws9f{word-spacing:3.550671px;}
.ws37{word-spacing:3.658267px;}
.ws95{word-spacing:3.718042px;}
.wsac{word-spacing:3.777818px;}
.ws10{word-spacing:3.801728px;}
.ws29{word-spacing:3.837594px;}
.ws6c{word-spacing:3.861504px;}
.ws3d{word-spacing:3.957145px;}
.wse8{word-spacing:4.016920px;}
.ws44{word-spacing:4.076696px;}
.ws81{word-spacing:4.136472px;}
.ws9{word-spacing:4.256023px;}
.ws7b{word-spacing:4.315798px;}
.wsaa{word-spacing:4.375574px;}
.wse0{word-spacing:4.435350px;}
.ws28{word-spacing:4.483200px;}
.ws7c{word-spacing:4.495125px;}
.ws34{word-spacing:4.554901px;}
.ws84{word-spacing:4.734228px;}
.ws59{word-spacing:4.794003px;}
.wsab{word-spacing:4.853779px;}
.ws9c{word-spacing:4.877689px;}
.ws2e{word-spacing:4.913554px;}
.wsf4{word-spacing:5.164612px;}
.ws67{word-spacing:5.331984px;}
.wse{word-spacing:5.379825px;}
.ws74{word-spacing:5.391759px;}
.ws0{word-spacing:5.412522px;}
.ws38{word-spacing:5.451535px;}
.ws45{word-spacing:5.511310px;}
.ws7e{word-spacing:5.571086px;}
.ws25{word-spacing:5.630862px;}
.ws52{word-spacing:5.750413px;}
.ws8c{word-spacing:5.810188px;}
.ws98{word-spacing:5.822143px;}
.ws22{word-spacing:5.834099px;}
.ws63{word-spacing:5.869964px;}
.ws99{word-spacing:5.881919px;}
.ws42{word-spacing:5.989515px;}
.ws4d{word-spacing:6.049291px;}
.ws21{word-spacing:6.061246px;}
.ws5d{word-spacing:6.109066px;}
.ws11{word-spacing:6.121021px;}
.ws4e{word-spacing:6.168842px;}
.wsca{word-spacing:6.228618px;}
.wsce{word-spacing:6.288393px;}
.ws24{word-spacing:6.300348px;}
.ws75{word-spacing:6.348169px;}
.wsda{word-spacing:6.360124px;}
.ws30{word-spacing:6.407944px;}
.wsd0{word-spacing:6.467720px;}
.wseb{word-spacing:6.527496px;}
.ws58{word-spacing:6.611181px;}
.ws43{word-spacing:6.647047px;}
.ws12{word-spacing:6.659002px;}
.wsb{word-spacing:6.706822px;}
.ws3a{word-spacing:6.766598px;}
.wse2{word-spacing:6.790508px;}
.wsb1{word-spacing:6.886149px;}
.ws91{word-spacing:6.945925px;}
.ws9d{word-spacing:6.957880px;}
.wsaf{word-spacing:7.005700px;}
.wsc7{word-spacing:7.065476px;}
.ws9e{word-spacing:7.077431px;}
.ws83{word-spacing:7.125252px;}
.wsb4{word-spacing:7.185027px;}
.ws68{word-spacing:7.244803px;}
.ws77{word-spacing:7.364354px;}
.ws78{word-spacing:7.388314px;}
.ws3b{word-spacing:7.424130px;}
.wsd2{word-spacing:7.543681px;}
.wsa{word-spacing:7.603456px;}
.ws39{word-spacing:7.663232px;}
.ws23{word-spacing:7.675187px;}
.wsad{word-spacing:7.723008px;}
.ws1c{word-spacing:7.746918px;}
.ws93{word-spacing:7.842559px;}
.wsec{word-spacing:7.854514px;}
.wsb2{word-spacing:8.021886px;}
.wsc0{word-spacing:8.081661px;}
.ws7{word-spacing:8.141437px;}
.ws85{word-spacing:8.260988px;}
.wsb5{word-spacing:8.320764px;}
.wsf1{word-spacing:8.392494px;}
.ws64{word-spacing:8.440315px;}
.wse5{word-spacing:8.452270px;}
.wse3{word-spacing:8.512045px;}
.ws62{word-spacing:8.619642px;}
.ws51{word-spacing:8.739193px;}
.wsb6{word-spacing:8.858744px;}
.ws41{word-spacing:8.978295px;}
.ws7f{word-spacing:9.097846px;}
.ws57{word-spacing:9.157622px;}
.wsae{word-spacing:9.217398px;}
.ws1d{word-spacing:9.229353px;}
.ws17{word-spacing:9.396724px;}
.ws53{word-spacing:9.695602px;}
.wsc{word-spacing:9.755378px;}
.ws6{word-spacing:9.815154px;}
.ws82{word-spacing:10.114032px;}
.wsa6{word-spacing:10.173807px;}
.wsa1{word-spacing:10.245538px;}
.ws35{word-spacing:10.412910px;}
.ws96{word-spacing:10.436820px;}
.wsa7{word-spacing:10.472685px;}
.ws72{word-spacing:10.532461px;}
.ws5f{word-spacing:10.592236px;}
.ws49{word-spacing:10.652012px;}
.ws56{word-spacing:10.711788px;}
.wsd{word-spacing:10.771563px;}
.ws3e{word-spacing:10.831339px;}
.ws54{word-spacing:10.950890px;}
.wsa4{word-spacing:11.010666px;}
.ws89{word-spacing:11.070441px;}
.ws5a{word-spacing:11.249768px;}
.wse9{word-spacing:11.273678px;}
.ws55{word-spacing:11.309544px;}
.wsef{word-spacing:11.321499px;}
.ws66{word-spacing:11.369319px;}
.ws97{word-spacing:11.381274px;}
.ws65{word-spacing:11.429095px;}
.ws88{word-spacing:11.668197px;}
.ws1a{word-spacing:11.727973px;}
.wsd1{word-spacing:11.967075px;}
.wsea{word-spacing:12.038806px;}
.wsd9{word-spacing:12.457235px;}
.ws5c{word-spacing:13.007171px;}
.wsa3{word-spacing:13.174542px;}
.wsa2{word-spacing:13.234318px;}
.ws6e{word-spacing:14.238548px;}
.wse6{word-spacing:14.298324px;}
.wsee{word-spacing:14.549381px;}
.wsba{word-spacing:15.254733px;}
.wsd5{word-spacing:15.374284px;}
.wse7{word-spacing:17.048001px;}
.ws1{word-spacing:23.312640px;}
.wsf{word-spacing:58.281600px;}
.ws2{word-spacing:69.937725px;}
.wsc4{word-spacing:454.031547px;}
.wsbc{word-spacing:535.541556px;}
.wsbf{word-spacing:540.801808px;}
.wsf2{word-spacing:557.443335px;}
.ws27{word-spacing:598.784140px;}
._39{margin-left:-55.394723px;}
._27{margin-left:-48.375386px;}
._2{margin-left:-47.307919px;}
._28{margin-left:-45.672569px;}
._26{margin-left:-43.985646px;}
._1{margin-left:-42.040007px;}
._22{margin-left:-39.819438px;}
._6{margin-left:-36.565510px;}
._2f{margin-left:-34.370970px;}
._3a{margin-left:-33.226604px;}
._2e{margin-left:-31.377890px;}
._c{margin-left:-29.887800px;}
._11{margin-left:-28.803210px;}
._13{margin-left:-27.249044px;}
._b{margin-left:-25.894764px;}
._3e{margin-left:-24.318202px;}
._e{margin-left:-23.252708px;}
._3d{margin-left:-21.283237px;}
._1a{margin-left:-16.617617px;}
._5{margin-left:-10.845702px;}
._0{margin-left:-8.056807px;}
._d{margin-left:-6.635092px;}
._8{margin-left:-5.336786px;}
._17{margin-left:-3.939860px;}
._3{margin-left:-2.788895px;}
._7{margin-left:-1.084590px;}
._10{width:1.673717px;}
._4{width:2.685602px;}
._2a{width:3.936560px;}
._31{width:6.395989px;}
._38{width:7.523096px;}
._32{width:9.141838px;}
._3b{width:10.749619px;}
._1c{width:12.433325px;}
._29{width:13.497356px;}
._2c{width:14.815720px;}
._a{width:15.840534px;}
._1b{width:17.698406px;}
._1e{width:18.760909px;}
._14{width:19.841230px;}
._24{width:21.032382px;}
._34{width:22.105043px;}
._30{width:23.730913px;}
._f{width:24.823632px;}
._9{width:26.130566px;}
._23{width:27.433700px;}
._16{width:28.564108px;}
._19{width:29.947576px;}
._1f{width:31.979946px;}
._20{width:33.295009px;}
._2b{width:34.669848px;}
._35{width:36.442558px;}
._15{width:38.925845px;}
._12{width:42.090151px;}
._2d{width:43.935066px;}
._37{width:45.062173px;}
._36{width:48.606192px;}
._25{width:49.840921px;}
._1d{width:51.765670px;}
._33{width:68.741940px;}
._21{width:80.697600px;}
._18{width:96.836850px;}
._3c{width:124.217526px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:134.047500px;}
.yf5{bottom:178.879500px;}
.y79{bottom:182.961000px;}
.ya0{bottom:186.496500px;}
.yc0{bottom:188.707500px;}
.y155{bottom:190.170000px;}
.y113{bottom:191.566500px;}
.y36{bottom:192.805500px;}
.y5f{bottom:194.674500px;}
.ye7{bottom:195.909000px;}
.yf4{bottom:196.812000px;}
.y1a{bottom:199.938000px;}
.y78{bottom:200.895000px;}
.y9f{bottom:204.429000px;}
.ybf{bottom:206.640000px;}
.y154{bottom:208.102500px;}
.y112{bottom:209.499000px;}
.y5e{bottom:212.607000px;}
.ye6{bottom:213.841500px;}
.y130{bottom:215.605500px;}
.y77{bottom:218.827500px;}
.y35{bottom:219.705000px;}
.yf3{bottom:220.180500px;}
.y9e{bottom:222.361500px;}
.y153{bottom:226.035000px;}
.y111{bottom:227.433000px;}
.y5d{bottom:230.539500px;}
.ye5{bottom:231.775500px;}
.y19{bottom:232.815000px;}
.y12f{bottom:233.538000px;}
.ybe{bottom:234.223500px;}
.y76{bottom:236.760000px;}
.y9d{bottom:240.294000px;}
.y152{bottom:243.967500px;}
.y110{bottom:245.365500px;}
.y5c{bottom:248.472000px;}
.ye4{bottom:249.708000px;}
.y18{bottom:250.747500px;}
.y12e{bottom:251.472000px;}
.y75{bottom:254.692500px;}
.y34{bottom:255.570000px;}
.yf2{bottom:256.045500px;}
.y151{bottom:261.901500px;}
.y10f{bottom:263.298000px;}
.y5b{bottom:266.404500px;}
.ye3{bottom:267.640500px;}
.y9c{bottom:267.879000px;}
.y12d{bottom:269.404500px;}
.y74{bottom:272.625000px;}
.y33{bottom:273.502500px;}
.yf1{bottom:273.979500px;}
.ybd{bottom:276.055500px;}
.y150{bottom:279.834000px;}
.y17{bottom:280.635000px;}
.y10e{bottom:281.230500px;}
.y5a{bottom:284.337000px;}
.y10d{bottom:285.007500px;}
.ye2{bottom:285.573000px;}
.y73{bottom:290.557500px;}
.y32{bottom:291.435000px;}
.yf0{bottom:291.912000px;}
.ybc{bottom:293.989500px;}
.y14f{bottom:297.766500px;}
.y10c{bottom:299.163000px;}
.y12c{bottom:299.292000px;}
.y59{bottom:302.271000px;}
.ye1{bottom:303.505500px;}
.y72{bottom:308.491500px;}
.y9b{bottom:309.711000px;}
.yef{bottom:309.844500px;}
.y16{bottom:310.522500px;}
.ybb{bottom:311.922000px;}
.y109{bottom:315.394500px;}
.y12b{bottom:317.224500px;}
.y58{bottom:320.203500px;}
.y31{bottom:321.324000px;}
.ye0{bottom:321.438000px;}
.y10b{bottom:322.776000px;}
.y71{bottom:326.424000px;}
.y9a{bottom:327.643500px;}
.yee{bottom:327.777000px;}
.yba{bottom:329.854500px;}
.y14e{bottom:330.498000px;}
.y106{bottom:333.025500px;}
.y12a{bottom:335.157000px;}
.y57{bottom:338.136000px;}
.y30{bottom:339.256500px;}
.ydf{bottom:339.372000px;}
.y15{bottom:340.411500px;}
.y10a{bottom:343.135500px;}
.y70{bottom:344.356500px;}
.y99{bottom:345.577500px;}
.yed{bottom:345.709500px;}
.y108{bottom:347.223000px;}
.yb9{bottom:347.787000px;}
.y107{bottom:352.993500px;}
.y129{bottom:353.091000px;}
.y2f{bottom:357.189000px;}
.yde{bottom:357.304500px;}
.y6f{bottom:362.289000px;}
.y98{bottom:363.510000px;}
.yec{bottom:363.642000px;}
.yb8{bottom:365.719500px;}
.y14{bottom:367.995000px;}
.y56{bottom:370.867500px;}
.y128{bottom:371.023500px;}
.ydd{bottom:375.237000px;}
.y14d{bottom:379.917000px;}
.y6e{bottom:380.221500px;}
.y97{bottom:381.442500px;}
.yeb{bottom:381.576000px;}
.yb7{bottom:383.653500px;}
.y2e{bottom:384.772500px;}
.y127{bottom:388.956000px;}
.y105{bottom:396.703500px;}
.y14c{bottom:397.849500px;}
.y6d{bottom:398.155500px;}
.y96{bottom:399.375000px;}
.yea{bottom:399.508500px;}
.yb6{bottom:401.586000px;}
.y13{bottom:403.716000px;}
.y126{bottom:406.888500px;}
.ydc{bottom:407.968500px;}
.y104{bottom:414.637500px;}
.y14b{bottom:415.782000px;}
.y6c{bottom:416.088000px;}
.y95{bottom:417.307500px;}
.ye9{bottom:417.441000px;}
.yb5{bottom:419.518500px;}
.y55{bottom:420.286500px;}
.y125{bottom:424.821000px;}
.y2d{bottom:425.859000px;}
.y2c{bottom:426.606000px;}
.y103{bottom:432.570000px;}
.y14a{bottom:433.714500px;}
.y6b{bottom:434.020500px;}
.y94{bottom:435.240000px;}
.yb4{bottom:437.451000px;}
.y54{bottom:438.219000px;}
.y124{bottom:442.755000px;}
.y2b{bottom:444.538500px;}
.ye8{bottom:450.952500px;}
.y149{bottom:451.647000px;}
.y6a{bottom:451.953000px;}
.y12{bottom:453.133500px;}
.y93{bottom:453.174000px;}
.yb3{bottom:455.383500px;}
.y53{bottom:456.151500px;}
.ydb{bottom:457.387500px;}
.y102{bottom:457.767000px;}
.y123{bottom:460.687500px;}
.y2a{bottom:462.471000px;}
.y148{bottom:469.581000px;}
.y69{bottom:469.885500px;}
.y11{bottom:471.067500px;}
.y92{bottom:471.106500px;}
.yb2{bottom:473.316000px;}
.y52{bottom:474.084000px;}
.yda{bottom:475.320000px;}
.y101{bottom:475.398000px;}
.y100{bottom:479.176500px;}
.y68{bottom:487.818000px;}
.y10{bottom:489.000000px;}
.y91{bottom:489.039000px;}
.y122{bottom:489.828000px;}
.y29{bottom:490.054500px;}
.yb1{bottom:491.250000px;}
.y51{bottom:492.016500px;}
.yd9{bottom:493.252500px;}
.y121{bottom:496.552500px;}
.y147{bottom:499.468500px;}
.y67{bottom:505.752000px;}
.yf{bottom:506.932500px;}
.y90{bottom:506.971500px;}
.yb0{bottom:509.182500px;}
.y50{bottom:509.950500px;}
.yd8{bottom:511.185000px;}
.yff{bottom:511.264500px;}
.y120{bottom:514.485000px;}
.y146{bottom:517.401000px;}
.y66{bottom:523.684500px;}
.ye{bottom:524.865000px;}
.y8f{bottom:524.904000px;}
.yaf{bottom:527.115000px;}
.y4f{bottom:527.883000px;}
.yd7{bottom:529.117500px;}
.yfe{bottom:529.197000px;}
.y11f{bottom:532.417500px;}
.y145{bottom:535.333500px;}
.y65{bottom:541.617000px;}
.yd{bottom:542.797500px;}
.y8e{bottom:542.836500px;}
.yae{bottom:545.047500px;}
.y4e{bottom:545.815500px;}
.yd6{bottom:547.051500px;}
.yfd{bottom:547.129500px;}
.y144{bottom:549.531000px;}
.y28{bottom:549.820500px;}
.y11e{bottom:550.351500px;}
.y143{bottom:557.749500px;}
.y64{bottom:559.549500px;}
.yc{bottom:560.730000px;}
.y8d{bottom:560.770500px;}
.yad{bottom:562.980000px;}
.y4d{bottom:563.748000px;}
.yd5{bottom:564.984000px;}
.y142{bottom:567.505500px;}
.y11d{bottom:568.284000px;}
.yfc{bottom:574.029000px;}
.y63{bottom:577.482000px;}
.yb{bottom:578.664000px;}
.y8c{bottom:578.703000px;}
.yac{bottom:580.912500px;}
.y4c{bottom:581.680500px;}
.yd4{bottom:582.916500px;}
.y11c{bottom:586.216500px;}
.y62{bottom:595.414500px;}
.ya{bottom:596.596500px;}
.y8b{bottom:596.635500px;}
.yab{bottom:598.846500px;}
.y4b{bottom:599.614500px;}
.yd3{bottom:600.849000px;}
.y11b{bottom:604.149000px;}
.yfb{bottom:609.894000px;}
.y61{bottom:613.348500px;}
.y9{bottom:614.529000px;}
.y8a{bottom:614.568000px;}
.yaa{bottom:616.779000px;}
.y4a{bottom:617.547000px;}
.y141{bottom:618.315000px;}
.yd2{bottom:618.781500px;}
.y11a{bottom:622.081500px;}
.y15e{bottom:623.193000px;}
.yfa{bottom:627.826500px;}
.y8{bottom:632.461500px;}
.y89{bottom:632.500500px;}
.ya9{bottom:634.711500px;}
.y49{bottom:635.479500px;}
.y140{bottom:636.247500px;}
.y119{bottom:640.014000px;}
.y15d{bottom:641.125500px;}
.ycf{bottom:646.137000px;}
.yf9{bottom:652.194000px;}
.ya8{bottom:652.644000px;}
.y48{bottom:653.412000px;}
.yd1{bottom:653.745000px;}
.y13f{bottom:654.180000px;}
.y118{bottom:657.948000px;}
.y15c{bottom:659.058000px;}
.y88{bottom:660.085500px;}
.y60{bottom:661.086000px;}
.yce{bottom:663.996000px;}
.y7{bottom:665.193000px;}
.yf8{bottom:669.825000px;}
.ya7{bottom:670.576500px;}
.y47{bottom:671.344500px;}
.y13e{bottom:672.112500px;}
.yf7{bottom:673.603500px;}
.y15b{bottom:676.990500px;}
.yd0{bottom:678.192000px;}
.ya6{bottom:688.509000px;}
.y46{bottom:689.277000px;}
.ycd{bottom:689.713500px;}
.y13d{bottom:690.045000px;}
.y117{bottom:690.679500px;}
.y87{bottom:698.929500px;}
.ya5{bottom:706.443000px;}
.y45{bottom:707.211000px;}
.ycc{bottom:707.646000px;}
.y15a{bottom:709.722000px;}
.y6{bottom:714.612000px;}
.y86{bottom:716.862000px;}
.y27{bottom:719.176500px;}
.y13c{bottom:719.934000px;}
.ya4{bottom:724.375500px;}
.y44{bottom:725.143500px;}
.ycb{bottom:725.578500px;}
.y85{bottom:734.794500px;}
.yf6{bottom:735.496500px;}
.y26{bottom:737.109000px;}
.y13b{bottom:737.866500px;}
.y116{bottom:740.097000px;}
.ya3{bottom:742.308000px;}
.y43{bottom:743.076000px;}
.y5{bottom:747.343500px;}
.y159{bottom:751.420500px;}
.y84{bottom:752.727000px;}
.y25{bottom:755.041500px;}
.y13a{bottom:755.799000px;}
.yca{bottom:757.335000px;}
.y115{bottom:758.031000px;}
.ya2{bottom:760.240500px;}
.y42{bottom:761.008500px;}
.yc9{bottom:767.671500px;}
.y83{bottom:770.659500px;}
.y24{bottom:772.974000px;}
.y139{bottom:773.731500px;}
.y41{bottom:778.941000px;}
.y114{bottom:785.614500px;}
.y82{bottom:788.592000px;}
.y23{bottom:790.906500px;}
.y138{bottom:791.664000px;}
.ya1{bottom:792.972000px;}
.y158{bottom:793.117500px;}
.y40{bottom:796.873500px;}
.yc8{bottom:800.548500px;}
.y81{bottom:806.526000px;}
.y22{bottom:808.840500px;}
.y4{bottom:811.705500px;}
.y3f{bottom:814.807500px;}
.yc7{bottom:818.481000px;}
.y137{bottom:821.553000px;}
.y80{bottom:824.458500px;}
.y3e{bottom:832.740000px;}
.y157{bottom:834.816000px;}
.yc6{bottom:836.413500px;}
.y21{bottom:836.424000px;}
.y136{bottom:839.485500px;}
.y7f{bottom:842.391000px;}
.y3{bottom:846.874500px;}
.y3d{bottom:850.672500px;}
.yc5{bottom:854.346000px;}
.y7e{bottom:860.323500px;}
.y3c{bottom:868.605000px;}
.y135{bottom:869.373000px;}
.y20{bottom:878.256000px;}
.yc4{bottom:884.233500px;}
.y3b{bottom:886.537500px;}
.y134{bottom:887.305500px;}
.y2{bottom:890.211000px;}
.y7d{bottom:896.188500px;}
.y1f{bottom:896.190000px;}
.yc3{bottom:902.167500px;}
.y3a{bottom:904.470000px;}
.y133{bottom:905.238000px;}
.y1e{bottom:914.122500px;}
.yc2{bottom:920.100000px;}
.y39{bottom:922.404000px;}
.y1{bottom:923.088000px;}
.y7c{bottom:932.055000px;}
.y132{bottom:933.549000px;}
.y156{bottom:935.043000px;}
.y38{bottom:940.336500px;}
.y7b{bottom:949.987500px;}
.y131{bottom:951.181500px;}
.y1d{bottom:952.977000px;}
.yc1{bottom:955.965000px;}
.y37{bottom:958.269000px;}
.y7a{bottom:967.920000px;}
.y1c{bottom:985.852500px;}
.hc{height:0.000000px;}
.h13{height:29.833916px;}
.hb{height:31.382100px;}
.h8{height:41.842920px;}
.h4{height:44.831700px;}
.h17{height:44.832000px;}
.h16{height:44.838000px;}
.h6{height:47.819700px;}
.h2{height:50.498765px;}
.h10{height:51.523916px;}
.hf{height:51.529916px;}
.h7{height:53.072100px;}
.h14{height:53.078100px;}
.h11{height:56.066100px;}
.ha{height:56.784000px;}
.h12{height:56.790000px;}
.h3{height:60.598349px;}
.h5{height:60.779700px;}
.h1{height:73.027727px;}
.hd{height:85.271700px;}
.he{height:85.835700px;}
.h9{height:86.177700px;}
.h18{height:95.808000px;}
.h15{height:97.064100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:198.991500px;}
.x5{left:200.652000px;}
.x27{left:204.949500px;}
.x28{left:214.395000px;}
.x1{left:221.157000px;}
.x6{left:223.071000px;}
.x23{left:224.418000px;}
.x7{left:238.012500px;}
.x24{left:250.593000px;}
.x1f{left:252.180000px;}
.x1e{left:254.653500px;}
.xa{left:257.824500px;}
.x20{left:278.049000px;}
.x3{left:285.627000px;}
.xb{left:296.338500px;}
.x2{left:310.597500px;}
.x21{left:312.832500px;}
.x25{left:319.327500px;}
.x10{left:326.511000px;}
.x26{left:334.725000px;}
.x1d{left:341.779500px;}
.x1c{left:345.235500px;}
.x16{left:357.778500px;}
.x18{left:359.092500px;}
.x17{left:362.547000px;}
.xc{left:373.608000px;}
.xd{left:378.900000px;}
.x19{left:395.040000px;}
.x11{left:397.993500px;}
.xe{left:399.592500px;}
.x4{left:401.857500px;}
.x29{left:404.817000px;}
.x9{left:406.753500px;}
.x1a{left:414.985500px;}
.x1b{left:417.538500px;}
.x2a{left:421.404000px;}
.x12{left:426.298500px;}
.xf{left:434.035500px;}
.x13{left:451.263000px;}
.x8{left:454.699500px;}
.x14{left:551.065500px;}
.x2b{left:689.652000px;}
.x22{left:697.123500px;}
@media print{
.v9{vertical-align:-55.792000pt;}
.va{vertical-align:-39.850667pt;}
.vc{vertical-align:-15.936000pt;}
.v5{vertical-align:-9.568000pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.656000pt;}
.v2{vertical-align:14.176000pt;}
.v4{vertical-align:19.280000pt;}
.v8{vertical-align:21.941333pt;}
.ve{vertical-align:26.714667pt;}
.vd{vertical-align:34.688000pt;}
.v6{vertical-align:36.752000pt;}
.vb{vertical-align:39.856000pt;}
.v7{vertical-align:50.474667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000705pt;}
.ls8d{letter-spacing:0.002133pt;}
.ls64{letter-spacing:0.002345pt;}
.ls8e{letter-spacing:0.003886pt;}
.ls6e{letter-spacing:0.004797pt;}
.ls7a{letter-spacing:0.004868pt;}
.ls80{letter-spacing:0.005162pt;}
.ls34{letter-spacing:0.006032pt;}
.ls9f{letter-spacing:0.007898pt;}
.lsa0{letter-spacing:0.010903pt;}
.ls8a{letter-spacing:0.013231pt;}
.ls85{letter-spacing:0.016308pt;}
.ls31{letter-spacing:0.019704pt;}
.lsa4{letter-spacing:0.020913pt;}
.ls2d{letter-spacing:0.022101pt;}
.ls82{letter-spacing:0.022913pt;}
.ls8b{letter-spacing:0.026702pt;}
.lsa1{letter-spacing:0.053134pt;}
.ls36{letter-spacing:0.212535pt;}
.ls51{letter-spacing:1.338970pt;}
.lse{letter-spacing:1.434614pt;}
.ls99{letter-spacing:1.487748pt;}
.ls72{letter-spacing:1.822486pt;}
.ls45{letter-spacing:1.859685pt;}
.ls77{letter-spacing:1.900369pt;}
.ls11{letter-spacing:1.912819pt;}
.ls68{letter-spacing:1.915078pt;}
.ls78{letter-spacing:1.929911pt;}
.ls65{letter-spacing:2.157229pt;}
.ls6d{letter-spacing:2.649246pt;}
.ls8c{letter-spacing:2.651680pt;}
.ls69{letter-spacing:2.653413pt;}
.ls21{letter-spacing:2.654978pt;}
.ls3a{letter-spacing:2.655095pt;}
.ls58{letter-spacing:2.656546pt;}
.ls7{letter-spacing:2.656693pt;}
.ls3f{letter-spacing:2.657014pt;}
.ls37{letter-spacing:2.658245pt;}
.ls2f{letter-spacing:2.709827pt;}
.ls2c{letter-spacing:3.081764pt;}
.ls8f{letter-spacing:3.550993pt;}
.ls86{letter-spacing:3.556327pt;}
.ls9d{letter-spacing:3.800296pt;}
.ls98{letter-spacing:3.805629pt;}
.ls4c{letter-spacing:4.144442pt;}
.ls56{letter-spacing:4.150558pt;}
.ls4d{letter-spacing:4.197575pt;}
.ls43{letter-spacing:4.303843pt;}
.ls5c{letter-spacing:4.356977pt;}
.ls47{letter-spacing:4.410111pt;}
.ls74{letter-spacing:4.802585pt;}
.ls6a{letter-spacing:4.807919pt;}
.lsa2{letter-spacing:5.257863pt;}
.ls7e{letter-spacing:5.685324pt;}
.ls79{letter-spacing:5.716789pt;}
.ls76{letter-spacing:5.733349pt;}
.ls12{letter-spacing:5.738458pt;}
.ls3c{letter-spacing:5.785433pt;}
.ls59{letter-spacing:5.791591pt;}
.ls39{letter-spacing:5.807321pt;}
.ls1f{letter-spacing:6.641733pt;}
.ls81{letter-spacing:7.332474pt;}
.ls44{letter-spacing:7.385607pt;}
.ls46{letter-spacing:7.757545pt;}
.ls5e{letter-spacing:8.820222pt;}
.ls9e{letter-spacing:8.843954pt;}
.ls3e{letter-spacing:8.873356pt;}
.ls3d{letter-spacing:11.513761pt;}
.ls5d{letter-spacing:11.782592pt;}
.lsf{letter-spacing:11.795718pt;}
.ls16{letter-spacing:11.848852pt;}
.ls1e{letter-spacing:12.327057pt;}
.ls89{letter-spacing:12.409660pt;}
.ls84{letter-spacing:12.414993pt;}
.ls87{letter-spacing:13.496002pt;}
.lsa8{letter-spacing:13.814805pt;}
.lsa7{letter-spacing:13.867939pt;}
.ls3{letter-spacing:14.718081pt;}
.ls23{letter-spacing:14.757812pt;}
.ls2{letter-spacing:14.771215pt;}
.ls6c{letter-spacing:14.779879pt;}
.ls22{letter-spacing:14.784360pt;}
.ls38{letter-spacing:15.302554pt;}
.ls2e{letter-spacing:15.355687pt;}
.lsa5{letter-spacing:15.568223pt;}
.ls6{letter-spacing:15.621357pt;}
.ls5{letter-spacing:15.674491pt;}
.ls90{letter-spacing:15.753660pt;}
.ls5a{letter-spacing:15.780758pt;}
.ls15{letter-spacing:16.278484pt;}
.ls67{letter-spacing:16.615919pt;}
.ls1d{letter-spacing:16.630900pt;}
.ls19{letter-spacing:16.684034pt;}
.ls49{letter-spacing:16.737168pt;}
.ls32{letter-spacing:17.106245pt;}
.ls5b{letter-spacing:17.162239pt;}
.ls70{letter-spacing:17.403583pt;}
.ls66{letter-spacing:17.406579pt;}
.ls3b{letter-spacing:17.415578pt;}
.ls57{letter-spacing:17.419213pt;}
.ls10{letter-spacing:17.534176pt;}
.ls9{letter-spacing:17.587310pt;}
.lsa6{letter-spacing:17.640444pt;}
.ls18{letter-spacing:17.693578pt;}
.ls71{letter-spacing:17.746711pt;}
.ls6b{letter-spacing:17.799845pt;}
.ls2b{letter-spacing:17.852979pt;}
.ls33{letter-spacing:18.028911pt;}
.ls93{letter-spacing:18.278050pt;}
.lsa{letter-spacing:18.331184pt;}
.lsa3{letter-spacing:18.384318pt;}
.lsd{letter-spacing:18.543719pt;}
.ls91{letter-spacing:18.596853pt;}
.ls88{letter-spacing:18.670993pt;}
.ls4b{letter-spacing:18.700229pt;}
.ls7f{letter-spacing:18.915657pt;}
.lsc{letter-spacing:19.021924pt;}
.ls28{letter-spacing:19.234460pt;}
.ls20{letter-spacing:19.276602pt;}
.ls63{letter-spacing:19.446995pt;}
.ls8{letter-spacing:19.606397pt;}
.ls1b{letter-spacing:19.818932pt;}
.ls83{letter-spacing:20.190869pt;}
.ls96{letter-spacing:20.244003pt;}
.ls7b{letter-spacing:20.297137pt;}
.ls25{letter-spacing:20.403405pt;}
.ls24{letter-spacing:20.456539pt;}
.ls1{letter-spacing:20.509673pt;}
.ls30{letter-spacing:20.987877pt;}
.ls92{letter-spacing:21.116558pt;}
.ls5f{letter-spacing:21.147279pt;}
.ls4{letter-spacing:21.359814pt;}
.ls4a{letter-spacing:21.466082pt;}
.ls1c{letter-spacing:21.784885pt;}
.ls29{letter-spacing:21.891153pt;}
.ls2a{letter-spacing:22.156822pt;}
.ls35{letter-spacing:22.535578pt;}
.lsb{letter-spacing:22.794429pt;}
.ls26{letter-spacing:23.113232pt;}
.ls42{letter-spacing:23.166366pt;}
.ls97{letter-spacing:23.857106pt;}
.ls41{letter-spacing:23.910400pt;}
.ls4e{letter-spacing:23.963374pt;}
.ls48{letter-spacing:24.069642pt;}
.ls7d{letter-spacing:24.122775pt;}
.ls61{letter-spacing:24.547846pt;}
.ls50{letter-spacing:25.344854pt;}
.ls1a{letter-spacing:25.557390pt;}
.ls54{letter-spacing:25.610524pt;}
.ls27{letter-spacing:26.460666pt;}
.ls9b{letter-spacing:26.513799pt;}
.ls40{letter-spacing:26.562591pt;}
.ls0{letter-spacing:26.566933pt;}
.ls62{letter-spacing:26.885737pt;}
.ls94{letter-spacing:27.470209pt;}
.ls52{letter-spacing:28.931143pt;}
.ls4f{letter-spacing:29.489296pt;}
.ls60{letter-spacing:30.180036pt;}
.ls95{letter-spacing:31.030178pt;}
.ls55{letter-spacing:31.880320pt;}
.ls9a{letter-spacing:32.252257pt;}
.ls53{letter-spacing:33.049265pt;}
.ls7c{letter-spacing:40.594274pt;}
.ls9c{letter-spacing:43.592296pt;}
.ls75{letter-spacing:144.813573pt;}
.ls13{letter-spacing:517.470727pt;}
.ls17{letter-spacing:534.729645pt;}
.ls6f{letter-spacing:705.902579pt;}
.wsc9{word-spacing:-93.728141pt;}
.wsc6{word-spacing:-82.623163pt;}
.ws9a{word-spacing:-53.133867pt;}
.wsc3{word-spacing:-41.338148pt;}
.wse1{word-spacing:-38.362652pt;}
.wscd{word-spacing:-35.387155pt;}
.ws15{word-spacing:-34.611401pt;}
.wse4{word-spacing:-33.357441pt;}
.ws13{word-spacing:-29.531803pt;}
.wsc2{word-spacing:-28.118362pt;}
.ws9b{word-spacing:-25.791179pt;}
.wsa9{word-spacing:-25.738045pt;}
.wsde{word-spacing:-23.591437pt;}
.ws26{word-spacing:-21.474325pt;}
.ws6a{word-spacing:-20.849729pt;}
.wsc5{word-spacing:-15.536343pt;}
.ws2f{word-spacing:-14.760588pt;}
.ws20{word-spacing:-14.154862pt;}
.wsed{word-spacing:-13.581016pt;}
.wscb{word-spacing:-11.391901pt;}
.ws1b{word-spacing:-11.179366pt;}
.wsc8{word-spacing:-9.957287pt;}
.ws5b{word-spacing:-9.372814pt;}
.wsc1{word-spacing:-8.552096pt;}
.wsbe{word-spacing:-5.940366pt;}
.wsa5{word-spacing:-5.887232pt;}
.wscc{word-spacing:-5.407932pt;}
.wsf0{word-spacing:-4.760794pt;}
.ws16{word-spacing:-2.964870pt;}
.ws48{word-spacing:-2.752334pt;}
.wsdf{word-spacing:-2.592933pt;}
.ws5{word-spacing:-2.433531pt;}
.ws8{word-spacing:-2.274129pt;}
.ws8a{word-spacing:-2.220996pt;}
.ws69{word-spacing:-2.146608pt;}
.ws79{word-spacing:-2.114728pt;}
.wsd6{word-spacing:-2.061594pt;}
.ws90{word-spacing:-2.008460pt;}
.wsb7{word-spacing:-1.902192pt;}
.ws32{word-spacing:-1.795925pt;}
.ws92{word-spacing:-1.689657pt;}
.ws4{word-spacing:-1.636523pt;}
.ws8f{word-spacing:-1.583389pt;}
.wsf3{word-spacing:-1.530255pt;}
.ws2a{word-spacing:-1.477121pt;}
.wsd7{word-spacing:-1.455868pt;}
.ws4a{word-spacing:-1.158318pt;}
.wsbd{word-spacing:-1.105184pt;}
.ws50{word-spacing:-1.052051pt;}
.wsf5{word-spacing:-0.945783pt;}
.ws6f{word-spacing:-0.733247pt;}
.ws18{word-spacing:-0.520712pt;}
.wsb8{word-spacing:-0.414444pt;}
.ws4b{word-spacing:-0.308176pt;}
.ws94{word-spacing:-0.255043pt;}
.wsb9{word-spacing:-0.095641pt;}
.wsd4{word-spacing:-0.053134pt;}
.wsdd{word-spacing:-0.042507pt;}
.wsdc{word-spacing:-0.019085pt;}
.ws14{word-spacing:0.000000pt;}
.ws71{word-spacing:0.010627pt;}
.ws40{word-spacing:0.063761pt;}
.ws31{word-spacing:0.116895pt;}
.ws86{word-spacing:0.170028pt;}
.wscf{word-spacing:0.329430pt;}
.wsdb{word-spacing:0.382564pt;}
.wsb0{word-spacing:0.435698pt;}
.ws4f{word-spacing:0.595099pt;}
.ws46{word-spacing:0.648233pt;}
.ws8d{word-spacing:0.860769pt;}
.ws3c{word-spacing:0.967036pt;}
.wsa8{word-spacing:1.020170pt;}
.ws2c{word-spacing:1.073304pt;}
.ws76{word-spacing:1.126438pt;}
.ws7d{word-spacing:1.338973pt;}
.ws33{word-spacing:1.392107pt;}
.ws8e{word-spacing:1.445241pt;}
.ws70{word-spacing:1.498375pt;}
.wsd8{word-spacing:1.509002pt;}
.ws3f{word-spacing:1.551509pt;}
.ws61{word-spacing:1.604643pt;}
.ws5e{word-spacing:1.710911pt;}
.wsb3{word-spacing:1.923446pt;}
.ws47{word-spacing:1.976580pt;}
.ws6b{word-spacing:2.029714pt;}
.ws87{word-spacing:2.082848pt;}
.wsd3{word-spacing:2.189115pt;}
.ws2b{word-spacing:2.295383pt;}
.ws19{word-spacing:2.348517pt;}
.ws2d{word-spacing:2.454785pt;}
.ws60{word-spacing:2.507919pt;}
.ws8b{word-spacing:2.561052pt;}
.ws7a{word-spacing:2.667320pt;}
.ws80{word-spacing:2.720454pt;}
.ws4c{word-spacing:2.773588pt;}
.wsbb{word-spacing:2.826722pt;}
.ws3{word-spacing:2.932989pt;}
.ws6d{word-spacing:2.986123pt;}
.ws1f{word-spacing:2.996750pt;}
.ws1e{word-spacing:3.049884pt;}
.ws36{word-spacing:3.092391pt;}
.wsa0{word-spacing:3.103018pt;}
.ws73{word-spacing:3.145525pt;}
.ws9f{word-spacing:3.156152pt;}
.ws37{word-spacing:3.251793pt;}
.ws95{word-spacing:3.304927pt;}
.wsac{word-spacing:3.358060pt;}
.ws10{word-spacing:3.379314pt;}
.ws29{word-spacing:3.411194pt;}
.ws6c{word-spacing:3.432448pt;}
.ws3d{word-spacing:3.517462pt;}
.wse8{word-spacing:3.570596pt;}
.ws44{word-spacing:3.623730pt;}
.ws81{word-spacing:3.676864pt;}
.ws9{word-spacing:3.783131pt;}
.ws7b{word-spacing:3.836265pt;}
.wsaa{word-spacing:3.889399pt;}
.wse0{word-spacing:3.942533pt;}
.ws28{word-spacing:3.985067pt;}
.ws7c{word-spacing:3.995667pt;}
.ws34{word-spacing:4.048801pt;}
.ws84{word-spacing:4.208202pt;}
.ws59{word-spacing:4.261336pt;}
.wsab{word-spacing:4.314470pt;}
.ws9c{word-spacing:4.335724pt;}
.ws2e{word-spacing:4.367604pt;}
.wsf4{word-spacing:4.590766pt;}
.ws67{word-spacing:4.739541pt;}
.wse{word-spacing:4.782067pt;}
.ws74{word-spacing:4.792675pt;}
.ws0{word-spacing:4.811130pt;}
.ws38{word-spacing:4.845809pt;}
.ws45{word-spacing:4.898943pt;}
.ws7e{word-spacing:4.952076pt;}
.ws25{word-spacing:5.005210pt;}
.ws52{word-spacing:5.111478pt;}
.ws8c{word-spacing:5.164612pt;}
.ws98{word-spacing:5.175239pt;}
.ws22{word-spacing:5.185865pt;}
.ws63{word-spacing:5.217746pt;}
.ws99{word-spacing:5.228372pt;}
.ws42{word-spacing:5.324013pt;}
.ws4d{word-spacing:5.377147pt;}
.ws21{word-spacing:5.387774pt;}
.ws5d{word-spacing:5.430281pt;}
.ws11{word-spacing:5.440908pt;}
.ws4e{word-spacing:5.483415pt;}
.wsca{word-spacing:5.536549pt;}
.wsce{word-spacing:5.589683pt;}
.ws24{word-spacing:5.600310pt;}
.ws75{word-spacing:5.642817pt;}
.wsda{word-spacing:5.653443pt;}
.ws30{word-spacing:5.695951pt;}
.wsd0{word-spacing:5.749084pt;}
.wseb{word-spacing:5.802218pt;}
.ws58{word-spacing:5.876606pt;}
.ws43{word-spacing:5.908486pt;}
.ws12{word-spacing:5.919113pt;}
.wsb{word-spacing:5.961620pt;}
.ws3a{word-spacing:6.014754pt;}
.wse2{word-spacing:6.036007pt;}
.wsb1{word-spacing:6.121021pt;}
.ws91{word-spacing:6.174155pt;}
.ws9d{word-spacing:6.184782pt;}
.wsaf{word-spacing:6.227289pt;}
.wsc7{word-spacing:6.280423pt;}
.ws9e{word-spacing:6.291050pt;}
.ws83{word-spacing:6.333557pt;}
.wsb4{word-spacing:6.386691pt;}
.ws68{word-spacing:6.439825pt;}
.ws77{word-spacing:6.546092pt;}
.ws78{word-spacing:6.567390pt;}
.ws3b{word-spacing:6.599226pt;}
.wsd2{word-spacing:6.705494pt;}
.wsa{word-spacing:6.758628pt;}
.ws39{word-spacing:6.811762pt;}
.ws23{word-spacing:6.822388pt;}
.wsad{word-spacing:6.864896pt;}
.ws1c{word-spacing:6.886149pt;}
.ws93{word-spacing:6.971163pt;}
.wsec{word-spacing:6.981790pt;}
.wsb2{word-spacing:7.130565pt;}
.wsc0{word-spacing:7.183699pt;}
.ws7{word-spacing:7.236833pt;}
.ws85{word-spacing:7.343100pt;}
.wsb5{word-spacing:7.396234pt;}
.wsf1{word-spacing:7.459995pt;}
.ws64{word-spacing:7.502502pt;}
.wse5{word-spacing:7.513129pt;}
.wse3{word-spacing:7.566263pt;}
.ws62{word-spacing:7.661904pt;}
.ws51{word-spacing:7.768171pt;}
.wsb6{word-spacing:7.874439pt;}
.ws41{word-spacing:7.980707pt;}
.ws7f{word-spacing:8.086975pt;}
.ws57{word-spacing:8.140108pt;}
.wsae{word-spacing:8.193242pt;}
.ws1d{word-spacing:8.203869pt;}
.ws17{word-spacing:8.352644pt;}
.ws53{word-spacing:8.618313pt;}
.wsc{word-spacing:8.671447pt;}
.ws6{word-spacing:8.724581pt;}
.ws82{word-spacing:8.990250pt;}
.wsa6{word-spacing:9.043384pt;}
.wsa1{word-spacing:9.107145pt;}
.ws35{word-spacing:9.255920pt;}
.ws96{word-spacing:9.277173pt;}
.wsa7{word-spacing:9.309053pt;}
.ws72{word-spacing:9.362187pt;}
.ws5f{word-spacing:9.415321pt;}
.ws49{word-spacing:9.468455pt;}
.ws56{word-spacing:9.521589pt;}
.wsd{word-spacing:9.574723pt;}
.ws3e{word-spacing:9.627857pt;}
.ws54{word-spacing:9.734124pt;}
.wsa4{word-spacing:9.787258pt;}
.ws89{word-spacing:9.840392pt;}
.ws5a{word-spacing:9.999794pt;}
.wse9{word-spacing:10.021047pt;}
.ws55{word-spacing:10.052928pt;}
.wsef{word-spacing:10.063554pt;}
.ws66{word-spacing:10.106061pt;}
.ws97{word-spacing:10.116688pt;}
.ws65{word-spacing:10.159195pt;}
.ws88{word-spacing:10.371731pt;}
.ws1a{word-spacing:10.424865pt;}
.wsd1{word-spacing:10.637400pt;}
.wsea{word-spacing:10.701161pt;}
.wsd9{word-spacing:11.073098pt;}
.ws5c{word-spacing:11.561929pt;}
.wsa3{word-spacing:11.710704pt;}
.wsa2{word-spacing:11.763838pt;}
.ws6e{word-spacing:12.656487pt;}
.wse6{word-spacing:12.709621pt;}
.wsee{word-spacing:12.932783pt;}
.wsba{word-spacing:13.559763pt;}
.wsd5{word-spacing:13.666031pt;}
.wse7{word-spacing:15.153779pt;}
.ws1{word-spacing:20.722347pt;}
.wsf{word-spacing:51.805867pt;}
.ws2{word-spacing:62.166867pt;}
.wsc4{word-spacing:403.583598pt;}
.wsbc{word-spacing:476.036938pt;}
.wsbf{word-spacing:480.712719pt;}
.wsf2{word-spacing:495.505187pt;}
.ws27{word-spacing:532.252569pt;}
._39{margin-left:-49.239754pt;}
._27{margin-left:-43.000343pt;}
._2{margin-left:-42.051484pt;}
._28{margin-left:-40.597839pt;}
._26{margin-left:-39.098352pt;}
._1{margin-left:-37.368895pt;}
._22{margin-left:-35.395056pt;}
._6{margin-left:-32.502675pt;}
._2f{margin-left:-30.551973pt;}
._3a{margin-left:-29.534759pt;}
._2e{margin-left:-27.891458pt;}
._c{margin-left:-26.566933pt;}
._11{margin-left:-25.602853pt;}
._13{margin-left:-24.221373pt;}
._b{margin-left:-23.017568pt;}
._3e{margin-left:-21.616179pt;}
._e{margin-left:-20.669074pt;}
._3d{margin-left:-18.918433pt;}
._1a{margin-left:-14.771215pt;}
._5{margin-left:-9.640624pt;}
._0{margin-left:-7.161606pt;}
._d{margin-left:-5.897859pt;}
._8{margin-left:-4.743810pt;}
._17{margin-left:-3.502098pt;}
._3{margin-left:-2.479018pt;}
._7{margin-left:-0.964080pt;}
._10{width:1.487748pt;}
._4{width:2.387202pt;}
._2a{width:3.499165pt;}
._31{width:5.685324pt;}
._38{width:6.687197pt;}
._32{width:8.126078pt;}
._3b{width:9.555217pt;}
._1c{width:11.051844pt;}
._29{width:11.997650pt;}
._2c{width:13.169529pt;}
._a{width:14.080475pt;}
._1b{width:15.731917pt;}
._1e{width:16.676364pt;}
._14{width:17.636649pt;}
._24{width:18.695451pt;}
._34{width:19.648927pt;}
._30{width:21.094145pt;}
._f{width:22.065451pt;}
._9{width:23.227170pt;}
._23{width:24.385511pt;}
._16{width:25.390318pt;}
._19{width:26.620067pt;}
._1f{width:28.426619pt;}
._20{width:29.595564pt;}
._2b{width:30.817643pt;}
._35{width:32.393385pt;}
._15{width:34.600751pt;}
._12{width:37.413468pt;}
._2d{width:39.053392pt;}
._37{width:40.055265pt;}
._36{width:43.205504pt;}
._25{width:44.303041pt;}
._1d{width:46.013929pt;}
._33{width:61.103947pt;}
._21{width:71.731200pt;}
._18{width:86.077200pt;}
._3c{width:110.415579pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:119.153333pt;}
.yf5{bottom:159.004000pt;}
.y79{bottom:162.632000pt;}
.ya0{bottom:165.774667pt;}
.yc0{bottom:167.740000pt;}
.y155{bottom:169.040000pt;}
.y113{bottom:170.281333pt;}
.y36{bottom:171.382667pt;}
.y5f{bottom:173.044000pt;}
.ye7{bottom:174.141333pt;}
.yf4{bottom:174.944000pt;}
.y1a{bottom:177.722667pt;}
.y78{bottom:178.573333pt;}
.y9f{bottom:181.714667pt;}
.ybf{bottom:183.680000pt;}
.y154{bottom:184.980000pt;}
.y112{bottom:186.221333pt;}
.y5e{bottom:188.984000pt;}
.ye6{bottom:190.081333pt;}
.y130{bottom:191.649333pt;}
.y77{bottom:194.513333pt;}
.y35{bottom:195.293333pt;}
.yf3{bottom:195.716000pt;}
.y9e{bottom:197.654667pt;}
.y153{bottom:200.920000pt;}
.y111{bottom:202.162667pt;}
.y5d{bottom:204.924000pt;}
.ye5{bottom:206.022667pt;}
.y19{bottom:206.946667pt;}
.y12f{bottom:207.589333pt;}
.ybe{bottom:208.198667pt;}
.y76{bottom:210.453333pt;}
.y9d{bottom:213.594667pt;}
.y152{bottom:216.860000pt;}
.y110{bottom:218.102667pt;}
.y5c{bottom:220.864000pt;}
.ye4{bottom:221.962667pt;}
.y18{bottom:222.886667pt;}
.y12e{bottom:223.530667pt;}
.y75{bottom:226.393333pt;}
.y34{bottom:227.173333pt;}
.yf2{bottom:227.596000pt;}
.y151{bottom:232.801333pt;}
.y10f{bottom:234.042667pt;}
.y5b{bottom:236.804000pt;}
.ye3{bottom:237.902667pt;}
.y9c{bottom:238.114667pt;}
.y12d{bottom:239.470667pt;}
.y74{bottom:242.333333pt;}
.y33{bottom:243.113333pt;}
.yf1{bottom:243.537333pt;}
.ybd{bottom:245.382667pt;}
.y150{bottom:248.741333pt;}
.y17{bottom:249.453333pt;}
.y10e{bottom:249.982667pt;}
.y5a{bottom:252.744000pt;}
.y10d{bottom:253.340000pt;}
.ye2{bottom:253.842667pt;}
.y73{bottom:258.273333pt;}
.y32{bottom:259.053333pt;}
.yf0{bottom:259.477333pt;}
.ybc{bottom:261.324000pt;}
.y14f{bottom:264.681333pt;}
.y10c{bottom:265.922667pt;}
.y12c{bottom:266.037333pt;}
.y59{bottom:268.685333pt;}
.ye1{bottom:269.782667pt;}
.y72{bottom:274.214667pt;}
.y9b{bottom:275.298667pt;}
.yef{bottom:275.417333pt;}
.y16{bottom:276.020000pt;}
.ybb{bottom:277.264000pt;}
.y109{bottom:280.350667pt;}
.y12b{bottom:281.977333pt;}
.y58{bottom:284.625333pt;}
.y31{bottom:285.621333pt;}
.ye0{bottom:285.722667pt;}
.y10b{bottom:286.912000pt;}
.y71{bottom:290.154667pt;}
.y9a{bottom:291.238667pt;}
.yee{bottom:291.357333pt;}
.yba{bottom:293.204000pt;}
.y14e{bottom:293.776000pt;}
.y106{bottom:296.022667pt;}
.y12a{bottom:297.917333pt;}
.y57{bottom:300.565333pt;}
.y30{bottom:301.561333pt;}
.ydf{bottom:301.664000pt;}
.y15{bottom:302.588000pt;}
.y10a{bottom:305.009333pt;}
.y70{bottom:306.094667pt;}
.y99{bottom:307.180000pt;}
.yed{bottom:307.297333pt;}
.y108{bottom:308.642667pt;}
.yb9{bottom:309.144000pt;}
.y107{bottom:313.772000pt;}
.y129{bottom:313.858667pt;}
.y2f{bottom:317.501333pt;}
.yde{bottom:317.604000pt;}
.y6f{bottom:322.034667pt;}
.y98{bottom:323.120000pt;}
.yec{bottom:323.237333pt;}
.yb8{bottom:325.084000pt;}
.y14{bottom:327.106667pt;}
.y56{bottom:329.660000pt;}
.y128{bottom:329.798667pt;}
.ydd{bottom:333.544000pt;}
.y14d{bottom:337.704000pt;}
.y6e{bottom:337.974667pt;}
.y97{bottom:339.060000pt;}
.yeb{bottom:339.178667pt;}
.yb7{bottom:341.025333pt;}
.y2e{bottom:342.020000pt;}
.y127{bottom:345.738667pt;}
.y105{bottom:352.625333pt;}
.y14c{bottom:353.644000pt;}
.y6d{bottom:353.916000pt;}
.y96{bottom:355.000000pt;}
.yea{bottom:355.118667pt;}
.yb6{bottom:356.965333pt;}
.y13{bottom:358.858667pt;}
.y126{bottom:361.678667pt;}
.ydc{bottom:362.638667pt;}
.y104{bottom:368.566667pt;}
.y14b{bottom:369.584000pt;}
.y6c{bottom:369.856000pt;}
.y95{bottom:370.940000pt;}
.ye9{bottom:371.058667pt;}
.yb5{bottom:372.905333pt;}
.y55{bottom:373.588000pt;}
.y125{bottom:377.618667pt;}
.y2d{bottom:378.541333pt;}
.y2c{bottom:379.205333pt;}
.y103{bottom:384.506667pt;}
.y14a{bottom:385.524000pt;}
.y6b{bottom:385.796000pt;}
.y94{bottom:386.880000pt;}
.yb4{bottom:388.845333pt;}
.y54{bottom:389.528000pt;}
.y124{bottom:393.560000pt;}
.y2b{bottom:395.145333pt;}
.ye8{bottom:400.846667pt;}
.y149{bottom:401.464000pt;}
.y6a{bottom:401.736000pt;}
.y12{bottom:402.785333pt;}
.y93{bottom:402.821333pt;}
.yb3{bottom:404.785333pt;}
.y53{bottom:405.468000pt;}
.ydb{bottom:406.566667pt;}
.y102{bottom:406.904000pt;}
.y123{bottom:409.500000pt;}
.y2a{bottom:411.085333pt;}
.y148{bottom:417.405333pt;}
.y69{bottom:417.676000pt;}
.y11{bottom:418.726667pt;}
.y92{bottom:418.761333pt;}
.yb2{bottom:420.725333pt;}
.y52{bottom:421.408000pt;}
.yda{bottom:422.506667pt;}
.y101{bottom:422.576000pt;}
.y100{bottom:425.934667pt;}
.y68{bottom:433.616000pt;}
.y10{bottom:434.666667pt;}
.y91{bottom:434.701333pt;}
.y122{bottom:435.402667pt;}
.y29{bottom:435.604000pt;}
.yb1{bottom:436.666667pt;}
.y51{bottom:437.348000pt;}
.yd9{bottom:438.446667pt;}
.y121{bottom:441.380000pt;}
.y147{bottom:443.972000pt;}
.y67{bottom:449.557333pt;}
.yf{bottom:450.606667pt;}
.y90{bottom:450.641333pt;}
.yb0{bottom:452.606667pt;}
.y50{bottom:453.289333pt;}
.yd8{bottom:454.386667pt;}
.yff{bottom:454.457333pt;}
.y120{bottom:457.320000pt;}
.y146{bottom:459.912000pt;}
.y66{bottom:465.497333pt;}
.ye{bottom:466.546667pt;}
.y8f{bottom:466.581333pt;}
.yaf{bottom:468.546667pt;}
.y4f{bottom:469.229333pt;}
.yd7{bottom:470.326667pt;}
.yfe{bottom:470.397333pt;}
.y11f{bottom:473.260000pt;}
.y145{bottom:475.852000pt;}
.y65{bottom:481.437333pt;}
.yd{bottom:482.486667pt;}
.y8e{bottom:482.521333pt;}
.yae{bottom:484.486667pt;}
.y4e{bottom:485.169333pt;}
.yd6{bottom:486.268000pt;}
.yfd{bottom:486.337333pt;}
.y144{bottom:488.472000pt;}
.y28{bottom:488.729333pt;}
.y11e{bottom:489.201333pt;}
.y143{bottom:495.777333pt;}
.y64{bottom:497.377333pt;}
.yc{bottom:498.426667pt;}
.y8d{bottom:498.462667pt;}
.yad{bottom:500.426667pt;}
.y4d{bottom:501.109333pt;}
.yd5{bottom:502.208000pt;}
.y142{bottom:504.449333pt;}
.y11d{bottom:505.141333pt;}
.yfc{bottom:510.248000pt;}
.y63{bottom:513.317333pt;}
.yb{bottom:514.368000pt;}
.y8c{bottom:514.402667pt;}
.yac{bottom:516.366667pt;}
.y4c{bottom:517.049333pt;}
.yd4{bottom:518.148000pt;}
.y11c{bottom:521.081333pt;}
.y62{bottom:529.257333pt;}
.ya{bottom:530.308000pt;}
.y8b{bottom:530.342667pt;}
.yab{bottom:532.308000pt;}
.y4b{bottom:532.990667pt;}
.yd3{bottom:534.088000pt;}
.y11b{bottom:537.021333pt;}
.yfb{bottom:542.128000pt;}
.y61{bottom:545.198667pt;}
.y9{bottom:546.248000pt;}
.y8a{bottom:546.282667pt;}
.yaa{bottom:548.248000pt;}
.y4a{bottom:548.930667pt;}
.y141{bottom:549.613333pt;}
.yd2{bottom:550.028000pt;}
.y11a{bottom:552.961333pt;}
.y15e{bottom:553.949333pt;}
.yfa{bottom:558.068000pt;}
.y8{bottom:562.188000pt;}
.y89{bottom:562.222667pt;}
.ya9{bottom:564.188000pt;}
.y49{bottom:564.870667pt;}
.y140{bottom:565.553333pt;}
.y119{bottom:568.901333pt;}
.y15d{bottom:569.889333pt;}
.ycf{bottom:574.344000pt;}
.yf9{bottom:579.728000pt;}
.ya8{bottom:580.128000pt;}
.y48{bottom:580.810667pt;}
.yd1{bottom:581.106667pt;}
.y13f{bottom:581.493333pt;}
.y118{bottom:584.842667pt;}
.y15c{bottom:585.829333pt;}
.y88{bottom:586.742667pt;}
.y60{bottom:587.632000pt;}
.yce{bottom:590.218667pt;}
.y7{bottom:591.282667pt;}
.yf8{bottom:595.400000pt;}
.ya7{bottom:596.068000pt;}
.y47{bottom:596.750667pt;}
.y13e{bottom:597.433333pt;}
.yf7{bottom:598.758667pt;}
.y15b{bottom:601.769333pt;}
.yd0{bottom:602.837333pt;}
.ya6{bottom:612.008000pt;}
.y46{bottom:612.690667pt;}
.ycd{bottom:613.078667pt;}
.y13d{bottom:613.373333pt;}
.y117{bottom:613.937333pt;}
.y87{bottom:621.270667pt;}
.ya5{bottom:627.949333pt;}
.y45{bottom:628.632000pt;}
.ycc{bottom:629.018667pt;}
.y15a{bottom:630.864000pt;}
.y6{bottom:635.210667pt;}
.y86{bottom:637.210667pt;}
.y27{bottom:639.268000pt;}
.y13c{bottom:639.941333pt;}
.ya4{bottom:643.889333pt;}
.y44{bottom:644.572000pt;}
.ycb{bottom:644.958667pt;}
.y85{bottom:653.150667pt;}
.yf6{bottom:653.774667pt;}
.y26{bottom:655.208000pt;}
.y13b{bottom:655.881333pt;}
.y116{bottom:657.864000pt;}
.ya3{bottom:659.829333pt;}
.y43{bottom:660.512000pt;}
.y5{bottom:664.305333pt;}
.y159{bottom:667.929333pt;}
.y84{bottom:669.090667pt;}
.y25{bottom:671.148000pt;}
.y13a{bottom:671.821333pt;}
.yca{bottom:673.186667pt;}
.y115{bottom:673.805333pt;}
.ya2{bottom:675.769333pt;}
.y42{bottom:676.452000pt;}
.yc9{bottom:682.374667pt;}
.y83{bottom:685.030667pt;}
.y24{bottom:687.088000pt;}
.y139{bottom:687.761333pt;}
.y41{bottom:692.392000pt;}
.y114{bottom:698.324000pt;}
.y82{bottom:700.970667pt;}
.y23{bottom:703.028000pt;}
.y138{bottom:703.701333pt;}
.ya1{bottom:704.864000pt;}
.y158{bottom:704.993333pt;}
.y40{bottom:708.332000pt;}
.yc8{bottom:711.598667pt;}
.y81{bottom:716.912000pt;}
.y22{bottom:718.969333pt;}
.y4{bottom:721.516000pt;}
.y3f{bottom:724.273333pt;}
.yc7{bottom:727.538667pt;}
.y137{bottom:730.269333pt;}
.y80{bottom:732.852000pt;}
.y3e{bottom:740.213333pt;}
.y157{bottom:742.058667pt;}
.yc6{bottom:743.478667pt;}
.y21{bottom:743.488000pt;}
.y136{bottom:746.209333pt;}
.y7f{bottom:748.792000pt;}
.y3{bottom:752.777333pt;}
.y3d{bottom:756.153333pt;}
.yc5{bottom:759.418667pt;}
.y7e{bottom:764.732000pt;}
.y3c{bottom:772.093333pt;}
.y135{bottom:772.776000pt;}
.y20{bottom:780.672000pt;}
.yc4{bottom:785.985333pt;}
.y3b{bottom:788.033333pt;}
.y134{bottom:788.716000pt;}
.y2{bottom:791.298667pt;}
.y7d{bottom:796.612000pt;}
.y1f{bottom:796.613333pt;}
.yc3{bottom:801.926667pt;}
.y3a{bottom:803.973333pt;}
.y133{bottom:804.656000pt;}
.y1e{bottom:812.553333pt;}
.yc2{bottom:817.866667pt;}
.y39{bottom:819.914667pt;}
.y1{bottom:820.522667pt;}
.y7c{bottom:828.493333pt;}
.y132{bottom:829.821333pt;}
.y156{bottom:831.149333pt;}
.y38{bottom:835.854667pt;}
.y7b{bottom:844.433333pt;}
.y131{bottom:845.494667pt;}
.y1d{bottom:847.090667pt;}
.yc1{bottom:849.746667pt;}
.y37{bottom:851.794667pt;}
.y7a{bottom:860.373333pt;}
.y1c{bottom:876.313333pt;}
.hc{height:0.000000pt;}
.h13{height:26.519037pt;}
.hb{height:27.895200pt;}
.h8{height:37.193707pt;}
.h4{height:39.850400pt;}
.h17{height:39.850667pt;}
.h16{height:39.856000pt;}
.h6{height:42.506400pt;}
.h2{height:44.887791pt;}
.h10{height:45.799037pt;}
.hf{height:45.804370pt;}
.h7{height:47.175200pt;}
.h14{height:47.180533pt;}
.h11{height:49.836533pt;}
.ha{height:50.474667pt;}
.h12{height:50.480000pt;}
.h3{height:53.865199pt;}
.h5{height:54.026400pt;}
.h1{height:64.913535pt;}
.hd{height:75.797067pt;}
.he{height:76.298400pt;}
.h9{height:76.602400pt;}
.h18{height:85.162667pt;}
.h15{height:86.279200pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:176.881333pt;}
.x5{left:178.357333pt;}
.x27{left:182.177333pt;}
.x28{left:190.573333pt;}
.x1{left:196.584000pt;}
.x6{left:198.285333pt;}
.x23{left:199.482667pt;}
.x7{left:211.566667pt;}
.x24{left:222.749333pt;}
.x1f{left:224.160000pt;}
.x1e{left:226.358667pt;}
.xa{left:229.177333pt;}
.x20{left:247.154667pt;}
.x3{left:253.890667pt;}
.xb{left:263.412000pt;}
.x2{left:276.086667pt;}
.x21{left:278.073333pt;}
.x25{left:283.846667pt;}
.x10{left:290.232000pt;}
.x26{left:297.533333pt;}
.x1d{left:303.804000pt;}
.x1c{left:306.876000pt;}
.x16{left:318.025333pt;}
.x18{left:319.193333pt;}
.x17{left:322.264000pt;}
.xc{left:332.096000pt;}
.xd{left:336.800000pt;}
.x19{left:351.146667pt;}
.x11{left:353.772000pt;}
.xe{left:355.193333pt;}
.x4{left:357.206667pt;}
.x29{left:359.837333pt;}
.x9{left:361.558667pt;}
.x1a{left:368.876000pt;}
.x1b{left:371.145333pt;}
.x2a{left:374.581333pt;}
.x12{left:378.932000pt;}
.xf{left:385.809333pt;}
.x13{left:401.122667pt;}
.x8{left:404.177333pt;}
.x14{left:489.836000pt;}
.x2b{left:613.024000pt;}
.x22{left:619.665333pt;}
}




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