
    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_61d2b461ea0090483e14ba28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_a34e5fecffa286bf47920087.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b7179525e6509b6b51f79646.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_380c73548fe7a79a4cc51294.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_06b0636e33787af8c64650e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_156ab247226cd92d0cf13294.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_084650c43eb72960c5d06252.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_450b292042b22ca8edc9a893.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_551910140d34b6366df643c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_d437d8a20b244d01acce9a38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_3e30ed090ca5566dabc6246a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_d797793111b12d45e10a6071.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_e11a937fc32c37adceb5b537.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_68f570826847b3706a5f97aa.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_6aa8a72dccba1bb38243300f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.112305;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_c2df9713d8f0bc1055b26545.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.172852;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_dc86a2479716bb3fdde583fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.202148;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_835c2fda589488c92862af26.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921387;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_a684750b1b3cb3a814a566f6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921387;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:ff16;src:url('chunks/assets/font_b3cf332bd28dc0927b6a84bf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.942383;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:ff17;src:url('chunks/assets/font_0f8e49d37176261bb9306460.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.973633;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:ff18;src:url('chunks/assets/font_c3726fbb6c8df19b48e42350.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.973633;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:ff19;src:url('chunks/assets/font_c04469ffc58557ac6bae8fd3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.095703;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:ff1a;src:url('chunks/assets/font_0bab711abd499a988d4e325e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.095703;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:ff1b;src:url('chunks/assets/font_a34e5fecffa286bf47920087.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.172852;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:ff1c;src:url('chunks/assets/font_fe70c8a0bfd8908a4fa0f515.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.112305;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:ff1d;src:url('chunks/assets/font_c69233383dbe1b215af4a4cc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.112305;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:ff1e;src:url('chunks/assets/font_3e34c182c6e54ef3b8d13517.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.172852;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:ff1f;src:url('chunks/assets/font_e6e44a70829a1e5c39c8c94e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls15{letter-spacing:-5.256000px;}
.ls25{letter-spacing:-0.780000px;}
.ls2b{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.342600px;}
.lsf{letter-spacing:-0.305400px;}
.ls22{letter-spacing:-0.272400px;}
.ls1c{letter-spacing:-0.230400px;}
.ls27{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.115200px;}
.ls23{letter-spacing:-0.107400px;}
.ls1{letter-spacing:-0.058320px;}
.ls28{letter-spacing:-0.041040px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.060480px;}
.ls5{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.174240px;}
.ls1e{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.299400px;}
.ls3{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.654000px;}
.ls24{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.780480px;}
.lsd{letter-spacing:6.785280px;}
.ls26{letter-spacing:7.200000px;}
.ls17{letter-spacing:30.960000px;}
.ls4{letter-spacing:33.960000px;}
.lsc{letter-spacing:39.881280px;}
.ls6{letter-spacing:55.386720px;}
.lsb{letter-spacing:58.320000px;}
.ls18{letter-spacing:98.640000px;}
.ls12{letter-spacing:123.840000px;}
.ls19{letter-spacing:126.000000px;}
.lsa{letter-spacing:133.920000px;}
.ls1a{letter-spacing:148.320000px;}
.ls16{letter-spacing:152.640000px;}
.ls11{letter-spacing:153.000000px;}
.ls13{letter-spacing:162.000000px;}
.ls8{letter-spacing:198.000000px;}
.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;}
}
.wsa{word-spacing:-66.539400px;}
.ws1{word-spacing:-66.240000px;}
.ws3{word-spacing:-66.124800px;}
.wsb{word-spacing:-63.000000px;}
.ws7{word-spacing:-25.560000px;}
.ws8{word-spacing:-25.217400px;}
.ws5{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wse{word-spacing:-14.165760px;}
.ws12{word-spacing:-14.159760px;}
.wsd{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.464720px;}
.ws0{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.398360px;}
.wsf{word-spacing:-12.725760px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-206.088000px;}
._22{margin-left:-204.146880px;}
._1c{margin-left:-13.968000px;}
._17{margin-left:-9.649680px;}
._18{margin-left:-8.260320px;}
._4{margin-left:-7.104000px;}
._19{margin-left:-5.208000px;}
._e{margin-left:-4.104000px;}
._2{margin-left:-2.760000px;}
._1{margin-left:-1.080000px;}
._0{width:1.135440px;}
._11{width:2.448000px;}
._12{width:3.760560px;}
._6{width:5.040000px;}
._8{width:6.172560px;}
._7{width:7.248000px;}
._3{width:8.712000px;}
._d{width:9.861120px;}
._b{width:11.088000px;}
._c{width:12.108000px;}
._9{width:13.464000px;}
._a{width:14.688000px;}
._10{width:15.708000px;}
._f{width:16.848000px;}
._15{width:19.116000px;}
._2b{width:20.236560px;}
._1d{width:21.601680px;}
._27{width:22.968000px;}
._28{width:24.336000px;}
._2e{width:25.488000px;}
._30{width:26.689680px;}
._25{width:27.720000px;}
._24{width:29.592000px;}
._1e{width:31.504560px;}
._29{width:32.592000px;}
._2a{width:33.768000px;}
._2f{width:35.136000px;}
._2d{width:40.176000px;}
._1a{width:55.416000px;}
._13{width:57.456000px;}
._14{width:58.480560px;}
._26{width:60.679440px;}
._2c{width:89.976000px;}
._1f{width:100.537680px;}
._23{width:142.744560px;}
._20{width:180.280560px;}
._1b{width:198.000000px;}
._21{width:199.024560px;}
._5{width:846.156000px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(84,141,212);}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(54,95,145);}
.fc2{color:transparent;}
.fc7{color:rgb(191,191,191);}
.fc5{color:rgb(217,217,217);}
.fc4{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(166,166,166);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:102.240000px;}
.fs5{font-size:162.000000px;}
.fs4{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:57.420000px;}
.y1ab{bottom:58.500000px;}
.y3{bottom:58.536000px;}
.yc8{bottom:78.336000px;}
.y2{bottom:78.696000px;}
.y10d{bottom:111.996000px;}
.y80{bottom:112.536000px;}
.y61{bottom:113.256000px;}
.y176{bottom:113.796000px;}
.y11f{bottom:117.216000px;}
.y154{bottom:117.576000px;}
.yed{bottom:119.376000px;}
.ya6{bottom:123.876000px;}
.y19c{bottom:126.396000px;}
.y47{bottom:128.556000px;}
.y10c{bottom:130.356000px;}
.y7f{bottom:134.496000px;}
.y134{bottom:135.576000px;}
.y175{bottom:144.756000px;}
.ya5{bottom:147.456000px;}
.y10b{bottom:148.536000px;}
.y46{bottom:149.256000px;}
.y10a{bottom:153.750000px;}
.y7e{bottom:156.450000px;}
.y60{bottom:162.210000px;}
.y109{bottom:166.890000px;}
.y45{bottom:169.950000px;}
.ya4{bottom:171.210000px;}
.y11e{bottom:172.110000px;}
.yec{bottom:172.830000px;}
.y174{bottom:175.890000px;}
.y7d{bottom:178.410000px;}
.y153{bottom:179.670000px;}
.y19b{bottom:179.850000px;}
.y108{bottom:185.250000px;}
.y11d{bottom:185.790000px;}
.y44{bottom:190.290000px;}
.y107{bottom:190.470000px;}
.ya3{bottom:192.450000px;}
.y7c{bottom:200.370000px;}
.y106{bottom:203.610000px;}
.y18a{bottom:204.150000px;}
.y173{bottom:206.850000px;}
.y133{bottom:208.830000px;}
.y152{bottom:210.630000px;}
.y43{bottom:211.350000px;}
.ya2{bottom:216.030000px;}
.y19a{bottom:221.250000px;}
.y105{bottom:221.790000px;}
.y7b{bottom:222.330000px;}
.yeb{bottom:226.290000px;}
.y104{bottom:227.010000px;}
.y42{bottom:232.050000px;}
.y172{bottom:237.990000px;}
.ya1{bottom:239.430000px;}
.y103{bottom:240.150000px;}
.y151{bottom:241.770000px;}
.y7a{bottom:244.290000px;}
.y11c{bottom:245.190000px;}
.y194{bottom:245.370000px;}
.y41{bottom:252.750000px;}
.y189{bottom:255.630000px;}
.y102{bottom:258.510000px;}
.y5f{bottom:260.310000px;}
.y199{bottom:262.650000px;}
.ya0{bottom:263.190000px;}
.y101{bottom:263.730000px;}
.y79{bottom:266.250000px;}
.y171{bottom:268.950000px;}
.y150{bottom:272.730000px;}
.y40{bottom:273.450000px;}
.y100{bottom:276.690000px;}
.yea{bottom:279.570000px;}
.y140{bottom:279.930000px;}
.y9f{bottom:284.430000px;}
.y11b{bottom:286.590000px;}
.y78{bottom:288.390000px;}
.y132{bottom:291.990000px;}
.yff{bottom:295.050000px;}
.y188{bottom:297.030000px;}
.y170{bottom:300.090000px;}
.yfe{bottom:300.270000px;}
.y14f{bottom:303.870000px;}
.y198{bottom:304.050000px;}
.y9e{bottom:305.130000px;}
.y5e{bottom:309.495000px;}
.y77{bottom:310.395000px;}
.y193{bottom:313.410000px;}
.yfd{bottom:313.950000px;}
.y3f{bottom:315.255000px;}
.y13f{bottom:321.330000px;}
.y9d{bottom:325.515000px;}
.y11a{bottom:328.035000px;}
.y16f{bottom:331.095000px;}
.y192{bottom:331.815000px;}
.y76{bottom:332.355000px;}
.ye9{bottom:333.075000px;}
.y14e{bottom:334.875000px;}
.y191{bottom:337.035000px;}
.y187{bottom:338.475000px;}
.y131{bottom:345.495000px;}
.y9c{bottom:346.215000px;}
.y22{bottom:348.015000px;}
.y190{bottom:350.535000px;}
.y75{bottom:354.315000px;}
.y3e{bottom:356.475000px;}
.yfc{bottom:357.375000px;}
.y5d{bottom:358.455000px;}
.y16e{bottom:362.235000px;}
.y13e{bottom:362.775000px;}
.y14d{bottom:366.015000px;}
.y9b{bottom:367.275000px;}
.y119{bottom:369.435000px;}
.y3d{bottom:377.175000px;}
.y21{bottom:377.895000px;}
.y186{bottom:379.875000px;}
.ye8{bottom:386.535000px;}
.y130{bottom:386.895000px;}
.y9a{bottom:387.975000px;}
.y16d{bottom:393.195000px;}
.y74{bottom:394.275000px;}
.y14c{bottom:396.975000px;}
.y3c{bottom:398.235000px;}
.yfb{bottom:398.775000px;}
.y5c{bottom:407.595000px;}
.y20{bottom:407.955000px;}
.y99{bottom:408.315000px;}
.y13c{bottom:416.235000px;}
.y3b{bottom:418.935000px;}
.y117{bottom:422.895000px;}
.y13d{bottom:423.075000px;}
.y16c{bottom:424.335000px;}
.y14b{bottom:428.115000px;}
.y12f{bottom:428.295000px;}
.y98{bottom:429.015000px;}
.y118{bottom:429.735000px;}
.y185{bottom:433.155000px;}
.y73{bottom:437.115000px;}
.y1f{bottom:437.655000px;}
.y3a{bottom:439.635000px;}
.ye7{bottom:439.815000px;}
.y18f{bottom:440.175000px;}
.yc2{bottom:449.895000px;}
.y97{bottom:450.075000px;}
.yf9{bottom:452.235000px;}
.y16b{bottom:455.295000px;}
.y5b{bottom:456.735000px;}
.y13b{bottom:457.635000px;}
.y72{bottom:458.895000px;}
.yfa{bottom:459.075000px;}
.y39{bottom:460.335000px;}
.y116{bottom:464.295000px;}
.y1e{bottom:467.355000px;}
.yc1{bottom:469.335000px;}
.y12e{bottom:469.695000px;}
.y96{bottom:470.775000px;}
.y184{bottom:474.555000px;}
.y38{bottom:480.675000px;}
.y71{bottom:481.035000px;}
.y1a6{bottom:481.575000px;}
.y16a{bottom:486.435000px;}
.yc0{bottom:490.035000px;}
.y14a{bottom:490.215000px;}
.y95{bottom:491.475000px;}
.ye6{bottom:493.275000px;}
.yf8{bottom:493.635000px;}
.y1d{bottom:497.055000px;}
.y5a{bottom:499.035000px;}
.y37{bottom:501.735000px;}
.y115{bottom:505.695000px;}
.ybf{bottom:510.375000px;}
.y12d{bottom:511.095000px;}
.y94{bottom:511.815000px;}
.y182{bottom:515.955000px;}
.y169{bottom:517.395000px;}
.y70{bottom:520.815000px;}
.y149{bottom:521.175000px;}
.y36{bottom:522.075000px;}
.y183{bottom:522.795000px;}
.y1a5{bottom:522.975000px;}
.y1c{bottom:526.215000px;}
.ybe{bottom:531.075000px;}
.y93{bottom:532.515000px;}
.yf7{bottom:535.035000px;}
.y35{bottom:543.135000px;}
.y59{bottom:543.495000px;}
.ye5{bottom:546.735000px;}
.y114{bottom:547.095000px;}
.y168{bottom:548.175000px;}
.y178{bottom:548.535000px;}
.ybd{bottom:551.595000px;}
.y13a{bottom:552.135000px;}
.y148{bottom:552.315000px;}
.y197{bottom:552.495000px;}
.y92{bottom:553.215000px;}
.y18e{bottom:553.935000px;}
.y181{bottom:557.355000px;}
.y12c{bottom:564.015000px;}
.y1a4{bottom:564.375000px;}
.y1b{bottom:564.945000px;}
.y6f{bottom:566.565000px;}
.ye4{bottom:567.795000px;}
.ybc{bottom:570.705000px;}
.y58{bottom:573.225000px;}
.y91{bottom:574.305000px;}
.y167{bottom:579.495000px;}
.y147{bottom:583.275000px;}
.y34{bottom:587.445000px;}
.ye3{bottom:588.495000px;}
.ybb{bottom:589.245000px;}
.y90{bottom:595.005000px;}
.y180{bottom:598.785000px;}
.y1a{bottom:603.465000px;}
.y196{bottom:605.445000px;}
.y139{bottom:605.805000px;}
.y57{bottom:606.165000px;}
.y6e{bottom:606.345000px;}
.yba{bottom:608.145000px;}
.ye2{bottom:609.225000px;}
.y166{bottom:610.665000px;}
.y146{bottom:614.445000px;}
.y8f{bottom:615.345000px;}
.y12b{bottom:617.505000px;}
.y56{bottom:626.865000px;}
.yb9{bottom:627.585000px;}
.y33{bottom:629.745000px;}
.ye1{bottom:629.925000px;}
.y8e{bottom:636.045000px;}
.y19{bottom:639.105000px;}
.y17e{bottom:640.185000px;}
.y165{bottom:641.625000px;}
.y145{bottom:645.405000px;}
.y17f{bottom:647.025000px;}
.y138{bottom:647.205000px;}
.y55{bottom:647.565000px;}
.yb8{bottom:648.645000px;}
.y32{bottom:650.445000px;}
.ye0{bottom:650.625000px;}
.y6d{bottom:651.705000px;}
.y8d{bottom:657.105000px;}
.y195{bottom:659.265000px;}
.y54{bottom:668.265000px;}
.yb7{bottom:668.985000px;}
.y31{bottom:671.145000px;}
.ydf{bottom:671.325000px;}
.y164{bottom:672.765000px;}
.y18{bottom:674.745000px;}
.y144{bottom:676.185000px;}
.y8c{bottom:677.805000px;}
.yf6{bottom:678.165000px;}
.y17d{bottom:681.585000px;}
.y6c{bottom:686.265000px;}
.y137{bottom:688.605000px;}
.y53{bottom:688.965000px;}
.yb6{bottom:689.685000px;}
.y30{bottom:691.845000px;}
.yde{bottom:692.025000px;}
.y8b{bottom:698.145000px;}
.y1a3{bottom:700.665000px;}
.y177{bottom:703.365000px;}
.y163{bottom:703.725000px;}
.y6b{bottom:708.045000px;}
.y52{bottom:709.665000px;}
.yb5{bottom:710.385000px;}
.y2f{bottom:712.545000px;}
.ydd{bottom:712.725000px;}
.y17{bottom:713.625000px;}
.y8a{bottom:718.845000px;}
.y18d{bottom:719.565000px;}
.y17c{bottom:722.985000px;}
.y12a{bottom:724.605000px;}
.y6a{bottom:730.005000px;}
.yb4{bottom:731.445000px;}
.ydc{bottom:733.425000px;}
.y162{bottom:734.865000px;}
.y89{bottom:739.905000px;}
.y1a2{bottom:742.065000px;}
.y51{bottom:751.065000px;}
.y69{bottom:751.965000px;}
.yb3{bottom:752.145000px;}
.y16{bottom:752.865000px;}
.y2e{bottom:754.125000px;}
.y88{bottom:760.605000px;}
.yf5{bottom:760.965000px;}
.y17b{bottom:764.385000px;}
.y161{bottom:765.825000px;}
.y129{bottom:766.005000px;}
.y136{bottom:771.405000px;}
.yb2{bottom:772.485000px;}
.y15{bottom:773.565000px;}
.y68{bottom:773.925000px;}
.ydb{bottom:774.645000px;}
.y2d{bottom:774.825000px;}
.y87{bottom:780.945000px;}
.y1a1{bottom:783.465000px;}
.y50{bottom:793.185000px;}
.y14{bottom:794.265000px;}
.yda{bottom:795.345000px;}
.y2c{bottom:795.525000px;}
.y67{bottom:795.885000px;}
.y160{bottom:796.965000px;}
.y86{bottom:801.645000px;}
.y18c{bottom:802.185000px;}
.y17a{bottom:805.785000px;}
.y127{bottom:807.405000px;}
.y143{bottom:812.805000px;}
.y4f{bottom:813.930000px;}
.y128{bottom:814.245000px;}
.yb1{bottom:814.290000px;}
.y13{bottom:815.010000px;}
.yd9{bottom:816.045000px;}
.y2b{bottom:816.270000px;}
.y66{bottom:817.890000px;}
.y135{bottom:824.505000px;}
.y1a0{bottom:824.865000px;}
.y15f{bottom:827.925000px;}
.yb0{bottom:834.990000px;}
.y12{bottom:835.710000px;}
.yd8{bottom:836.745000px;}
.y2a{bottom:836.970000px;}
.y65{bottom:839.850000px;}
.y85{bottom:842.010000px;}
.y113{bottom:843.585000px;}
.y126{bottom:848.805000px;}
.y142{bottom:854.205000px;}
.y4e{bottom:855.150000px;}
.yaf{bottom:855.330000px;}
.y11{bottom:856.410000px;}
.yd7{bottom:857.445000px;}
.y29{bottom:857.670000px;}
.y179{bottom:858.885000px;}
.y15e{bottom:859.065000px;}
.y64{bottom:861.810000px;}
.y19f{bottom:866.310000px;}
.yae{bottom:876.030000px;}
.yd6{bottom:878.190000px;}
.y84{bottom:879.450000px;}
.y63{bottom:883.950000px;}
.yf4{bottom:885.030000px;}
.y15d{bottom:890.070000px;}
.y125{bottom:890.250000px;}
.y10{bottom:894.570000px;}
.y4d{bottom:897.270000px;}
.yd5{bottom:898.890000px;}
.yad{bottom:900.150000px;}
.y141{bottom:907.350000px;}
.y19e{bottom:907.710000px;}
.y8{bottom:908.070000px;}
.y28{bottom:908.610000px;}
.yf{bottom:915.810000px;}
.y4c{bottom:917.970000px;}
.yf3{bottom:919.590000px;}
.y15c{bottom:921.210000px;}
.yac{bottom:923.910000px;}
.y62{bottom:929.670000px;}
.yd4{bottom:931.290000px;}
.y123{bottom:931.650000px;}
.ye{bottom:937.770000px;}
.y124{bottom:938.490000px;}
.y83{bottom:943.710000px;}
.y7{bottom:943.890000px;}
.yab{bottom:947.310000px;}
.y19d{bottom:949.110000px;}
.yd3{bottom:951.990000px;}
.y15b{bottom:952.170000px;}
.y4b{bottom:959.370000px;}
.yf1{bottom:960.990000px;}
.yd{bottom:965.490000px;}
.yf2{bottom:967.830000px;}
.y27{bottom:971.430000px;}
.yd2{bottom:972.690000px;}
.y111{bottom:973.050000px;}
.y6{bottom:979.710000px;}
.y112{bottom:979.890000px;}
.y15a{bottom:983.310000px;}
.yc{bottom:986.190000px;}
.y26{bottom:992.130000px;}
.yaa{bottom:995.370000px;}
.yd1{bottom:1000.590000px;}
.y4a{bottom:1000.950000px;}
.yf0{bottom:1002.390000px;}
.yb{bottom:1006.890000px;}
.y25{bottom:1012.830000px;}
.y159{bottom:1014.270000px;}
.yd0{bottom:1014.450000px;}
.y5{bottom:1015.530000px;}
.ya9{bottom:1018.770000px;}
.y122{bottom:1021.290000px;}
.y49{bottom:1022.010000px;}
.ya{bottom:1027.590000px;}
.y24{bottom:1033.530000px;}
.ycf{bottom:1041.990000px;}
.ya8{bottom:1042.530000px;}
.y82{bottom:1043.250000px;}
.yef{bottom:1043.790000px;}
.y158{bottom:1045.410000px;}
.y4{bottom:1051.170000px;}
.y110{bottom:1055.850000px;}
.y9{bottom:1057.290000px;}
.yce{bottom:1061.430000px;}
.y18b{bottom:1062.690000px;}
.y23{bottom:1063.260000px;}
.y48{bottom:1063.440000px;}
.ya7{bottom:1063.800000px;}
.y81{bottom:1065.060000px;}
.ycd{bottom:1076.190000px;}
.y157{bottom:1076.370000px;}
.yee{bottom:1085.190000px;}
.ycc{bottom:1096.890000px;}
.y10f{bottom:1097.250000px;}
.y121{bottom:1104.090000px;}
.y156{bottom:1107.510000px;}
.ycb{bottom:1117.590000px;}
.y1{bottom:1119.780000px;}
.yca{bottom:1138.320000px;}
.y155{bottom:1138.500000px;}
.y10e{bottom:1138.680000px;}
.y120{bottom:1145.520000px;}
.yc7{bottom:1172.700000px;}
.y1aa{bottom:1177.560000px;}
.yc6{bottom:1191.780000px;}
.y1a9{bottom:1194.660000px;}
.yc5{bottom:1209.060000px;}
.y1a8{bottom:1211.940000px;}
.yc4{bottom:1227.240000px;}
.y1a7{bottom:1229.220000px;}
.yc3{bottom:1247.400000px;}
.hf{height:34.036523px;}
.h12{height:38.671172px;}
.h10{height:43.246406px;}
.ha{height:46.736719px;}
.h2{height:50.800781px;}
.he{height:53.573906px;}
.h3{height:54.246094px;}
.h9{height:59.383125px;}
.h13{height:59.439023px;}
.h5{height:63.351562px;}
.h6{height:64.546875px;}
.h1{height:65.884219px;}
.hb{height:72.137109px;}
.h4{height:89.959219px;}
.h8{height:114.301758px;}
.h7{height:177.802734px;}
.h0{height:1188.000000px;}
.h11{height:1262.864910px;}
.hc{height:1262.880000px;}
.hd{height:1263.000000px;}
.w3{width:892.957500px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.036000px;}
.x25{left:122.616000px;}
.x13{left:125.856000px;}
.xa{left:135.036000px;}
.x10{left:139.536000px;}
.x41{left:141.696000px;}
.xb{left:162.030000px;}
.x9{left:166.710000px;}
.x6{left:176.430000px;}
.x35{left:177.487500px;}
.x29{left:184.350000px;}
.x18{left:185.610000px;}
.x14{left:186.870000px;}
.xc{left:189.030000px;}
.x36{left:195.870000px;}
.x17{left:200.910000px;}
.x26{left:204.487500px;}
.x27{left:222.870000px;}
.x1e{left:225.907500px;}
.x31{left:235.807500px;}
.x1f{left:244.290000px;}
.x32{left:254.190000px;}
.x1b{left:259.747500px;}
.x2c{left:265.687500px;}
.x1a{left:274.350000px;}
.x1{left:277.230000px;}
.x2d{left:284.115000px;}
.xe{left:285.690000px;}
.x5{left:289.290000px;}
.x2e{left:302.115000px;}
.x19{left:306.075000px;}
.x3c{left:307.132500px;}
.x24{left:324.075000px;}
.x3d{left:325.515000px;}
.x37{left:327.832500px;}
.x3a{left:333.772500px;}
.x38{left:346.215000px;}
.x3e{left:348.352500px;}
.x3b{left:352.155000px;}
.x3f{left:366.735000px;}
.x11{left:375.555000px;}
.x20{left:391.912500px;}
.x15{left:394.995000px;}
.x7{left:397.695000px;}
.x21{left:410.295000px;}
.x28{left:435.112500px;}
.xf{left:449.535000px;}
.xd{left:451.515000px;}
.x8{left:453.315000px;}
.x2{left:454.935000px;}
.x4{left:459.075000px;}
.x33{left:465.532500px;}
.x16{left:473.505000px;}
.x39{left:477.465000px;}
.x34{left:483.945000px;}
.x2f{left:519.022500px;}
.x30{left:537.405000px;}
.x12{left:601.485000px;}
.x2a{left:618.022500px;}
.x2b{left:636.405000px;}
.x1c{left:645.022500px;}
.x1d{left:663.450000px;}
.x42{left:737.970000px;}
.x22{left:766.747500px;}
.x23{left:785.130000px;}
.x40{left:805.470000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls15{letter-spacing:-4.672000pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls2b{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.304533pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls22{letter-spacing:-0.242133pt;}
.ls1c{letter-spacing:-0.204800pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.102400pt;}
.ls23{letter-spacing:-0.095467pt;}
.ls1{letter-spacing:-0.051840pt;}
.ls28{letter-spacing:-0.036480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.154880pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.266133pt;}
.ls3{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.581333pt;}
.ls24{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.693760pt;}
.lsd{letter-spacing:6.031360pt;}
.ls26{letter-spacing:6.400000pt;}
.ls17{letter-spacing:27.520000pt;}
.ls4{letter-spacing:30.186667pt;}
.lsc{letter-spacing:35.450027pt;}
.ls6{letter-spacing:49.232640pt;}
.lsb{letter-spacing:51.840000pt;}
.ls18{letter-spacing:87.680000pt;}
.ls12{letter-spacing:110.080000pt;}
.ls19{letter-spacing:112.000000pt;}
.lsa{letter-spacing:119.040000pt;}
.ls1a{letter-spacing:131.840000pt;}
.ls16{letter-spacing:135.680000pt;}
.ls11{letter-spacing:136.000000pt;}
.ls13{letter-spacing:144.000000pt;}
.ls8{letter-spacing:176.000000pt;}
.wsa{word-spacing:-59.146133pt;}
.ws1{word-spacing:-58.880000pt;}
.ws3{word-spacing:-58.777600pt;}
.wsb{word-spacing:-56.000000pt;}
.ws7{word-spacing:-22.720000pt;}
.ws8{word-spacing:-22.415467pt;}
.ws5{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wse{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.586453pt;}
.wsd{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.968640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.909653pt;}
.wsf{word-spacing:-11.311787pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-183.189333pt;}
._22{margin-left:-181.463893pt;}
._1c{margin-left:-12.416000pt;}
._17{margin-left:-8.577493pt;}
._18{margin-left:-7.342507pt;}
._4{margin-left:-6.314667pt;}
._19{margin-left:-4.629333pt;}
._e{margin-left:-3.648000pt;}
._2{margin-left:-2.453333pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.009280pt;}
._11{width:2.176000pt;}
._12{width:3.342720pt;}
._6{width:4.480000pt;}
._8{width:5.486720pt;}
._7{width:6.442667pt;}
._3{width:7.744000pt;}
._d{width:8.765440pt;}
._b{width:9.856000pt;}
._c{width:10.762667pt;}
._9{width:11.968000pt;}
._a{width:13.056000pt;}
._10{width:13.962667pt;}
._f{width:14.976000pt;}
._15{width:16.992000pt;}
._2b{width:17.988053pt;}
._1d{width:19.201493pt;}
._27{width:20.416000pt;}
._28{width:21.632000pt;}
._2e{width:22.656000pt;}
._30{width:23.724160pt;}
._25{width:24.640000pt;}
._24{width:26.304000pt;}
._1e{width:28.004053pt;}
._29{width:28.970667pt;}
._2a{width:30.016000pt;}
._2f{width:31.232000pt;}
._2d{width:35.712000pt;}
._1a{width:49.258667pt;}
._13{width:51.072000pt;}
._14{width:51.982720pt;}
._26{width:53.937280pt;}
._2c{width:79.978667pt;}
._1f{width:89.366827pt;}
._23{width:126.884053pt;}
._20{width:160.249387pt;}
._1b{width:176.000000pt;}
._21{width:176.910720pt;}
._5{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:90.880000pt;}
.fs5{font-size:144.000000pt;}
.fs4{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:51.040000pt;}
.y1ab{bottom:52.000000pt;}
.y3{bottom:52.032000pt;}
.yc8{bottom:69.632000pt;}
.y2{bottom:69.952000pt;}
.y10d{bottom:99.552000pt;}
.y80{bottom:100.032000pt;}
.y61{bottom:100.672000pt;}
.y176{bottom:101.152000pt;}
.y11f{bottom:104.192000pt;}
.y154{bottom:104.512000pt;}
.yed{bottom:106.112000pt;}
.ya6{bottom:110.112000pt;}
.y19c{bottom:112.352000pt;}
.y47{bottom:114.272000pt;}
.y10c{bottom:115.872000pt;}
.y7f{bottom:119.552000pt;}
.y134{bottom:120.512000pt;}
.y175{bottom:128.672000pt;}
.ya5{bottom:131.072000pt;}
.y10b{bottom:132.032000pt;}
.y46{bottom:132.672000pt;}
.y10a{bottom:136.666667pt;}
.y7e{bottom:139.066667pt;}
.y60{bottom:144.186667pt;}
.y109{bottom:148.346667pt;}
.y45{bottom:151.066667pt;}
.ya4{bottom:152.186667pt;}
.y11e{bottom:152.986667pt;}
.yec{bottom:153.626667pt;}
.y174{bottom:156.346667pt;}
.y7d{bottom:158.586667pt;}
.y153{bottom:159.706667pt;}
.y19b{bottom:159.866667pt;}
.y108{bottom:164.666667pt;}
.y11d{bottom:165.146667pt;}
.y44{bottom:169.146667pt;}
.y107{bottom:169.306667pt;}
.ya3{bottom:171.066667pt;}
.y7c{bottom:178.106667pt;}
.y106{bottom:180.986667pt;}
.y18a{bottom:181.466667pt;}
.y173{bottom:183.866667pt;}
.y133{bottom:185.626667pt;}
.y152{bottom:187.226667pt;}
.y43{bottom:187.866667pt;}
.ya2{bottom:192.026667pt;}
.y19a{bottom:196.666667pt;}
.y105{bottom:197.146667pt;}
.y7b{bottom:197.626667pt;}
.yeb{bottom:201.146667pt;}
.y104{bottom:201.786667pt;}
.y42{bottom:206.266667pt;}
.y172{bottom:211.546667pt;}
.ya1{bottom:212.826667pt;}
.y103{bottom:213.466667pt;}
.y151{bottom:214.906667pt;}
.y7a{bottom:217.146667pt;}
.y11c{bottom:217.946667pt;}
.y194{bottom:218.106667pt;}
.y41{bottom:224.666667pt;}
.y189{bottom:227.226667pt;}
.y102{bottom:229.786667pt;}
.y5f{bottom:231.386667pt;}
.y199{bottom:233.466667pt;}
.ya0{bottom:233.946667pt;}
.y101{bottom:234.426667pt;}
.y79{bottom:236.666667pt;}
.y171{bottom:239.066667pt;}
.y150{bottom:242.426667pt;}
.y40{bottom:243.066667pt;}
.y100{bottom:245.946667pt;}
.yea{bottom:248.506667pt;}
.y140{bottom:248.826667pt;}
.y9f{bottom:252.826667pt;}
.y11b{bottom:254.746667pt;}
.y78{bottom:256.346667pt;}
.y132{bottom:259.546667pt;}
.yff{bottom:262.266667pt;}
.y188{bottom:264.026667pt;}
.y170{bottom:266.746667pt;}
.yfe{bottom:266.906667pt;}
.y14f{bottom:270.106667pt;}
.y198{bottom:270.266667pt;}
.y9e{bottom:271.226667pt;}
.y5e{bottom:275.106667pt;}
.y77{bottom:275.906667pt;}
.y193{bottom:278.586667pt;}
.yfd{bottom:279.066667pt;}
.y3f{bottom:280.226667pt;}
.y13f{bottom:285.626667pt;}
.y9d{bottom:289.346667pt;}
.y11a{bottom:291.586667pt;}
.y16f{bottom:294.306667pt;}
.y192{bottom:294.946667pt;}
.y76{bottom:295.426667pt;}
.ye9{bottom:296.066667pt;}
.y14e{bottom:297.666667pt;}
.y191{bottom:299.586667pt;}
.y187{bottom:300.866667pt;}
.y131{bottom:307.106667pt;}
.y9c{bottom:307.746667pt;}
.y22{bottom:309.346667pt;}
.y190{bottom:311.586667pt;}
.y75{bottom:314.946667pt;}
.y3e{bottom:316.866667pt;}
.yfc{bottom:317.666667pt;}
.y5d{bottom:318.626667pt;}
.y16e{bottom:321.986667pt;}
.y13e{bottom:322.466667pt;}
.y14d{bottom:325.346667pt;}
.y9b{bottom:326.466667pt;}
.y119{bottom:328.386667pt;}
.y3d{bottom:335.266667pt;}
.y21{bottom:335.906667pt;}
.y186{bottom:337.666667pt;}
.ye8{bottom:343.586667pt;}
.y130{bottom:343.906667pt;}
.y9a{bottom:344.866667pt;}
.y16d{bottom:349.506667pt;}
.y74{bottom:350.466667pt;}
.y14c{bottom:352.866667pt;}
.y3c{bottom:353.986667pt;}
.yfb{bottom:354.466667pt;}
.y5c{bottom:362.306667pt;}
.y20{bottom:362.626667pt;}
.y99{bottom:362.946667pt;}
.y13c{bottom:369.986667pt;}
.y3b{bottom:372.386667pt;}
.y117{bottom:375.906667pt;}
.y13d{bottom:376.066667pt;}
.y16c{bottom:377.186667pt;}
.y14b{bottom:380.546667pt;}
.y12f{bottom:380.706667pt;}
.y98{bottom:381.346667pt;}
.y118{bottom:381.986667pt;}
.y185{bottom:385.026667pt;}
.y73{bottom:388.546667pt;}
.y1f{bottom:389.026667pt;}
.y3a{bottom:390.786667pt;}
.ye7{bottom:390.946667pt;}
.y18f{bottom:391.266667pt;}
.yc2{bottom:399.906667pt;}
.y97{bottom:400.066667pt;}
.yf9{bottom:401.986667pt;}
.y16b{bottom:404.706667pt;}
.y5b{bottom:405.986667pt;}
.y13b{bottom:406.786667pt;}
.y72{bottom:407.906667pt;}
.yfa{bottom:408.066667pt;}
.y39{bottom:409.186667pt;}
.y116{bottom:412.706667pt;}
.y1e{bottom:415.426667pt;}
.yc1{bottom:417.186667pt;}
.y12e{bottom:417.506667pt;}
.y96{bottom:418.466667pt;}
.y184{bottom:421.826667pt;}
.y38{bottom:427.266667pt;}
.y71{bottom:427.586667pt;}
.y1a6{bottom:428.066667pt;}
.y16a{bottom:432.386667pt;}
.yc0{bottom:435.586667pt;}
.y14a{bottom:435.746667pt;}
.y95{bottom:436.866667pt;}
.ye6{bottom:438.466667pt;}
.yf8{bottom:438.786667pt;}
.y1d{bottom:441.826667pt;}
.y5a{bottom:443.586667pt;}
.y37{bottom:445.986667pt;}
.y115{bottom:449.506667pt;}
.ybf{bottom:453.666667pt;}
.y12d{bottom:454.306667pt;}
.y94{bottom:454.946667pt;}
.y182{bottom:458.626667pt;}
.y169{bottom:459.906667pt;}
.y70{bottom:462.946667pt;}
.y149{bottom:463.266667pt;}
.y36{bottom:464.066667pt;}
.y183{bottom:464.706667pt;}
.y1a5{bottom:464.866667pt;}
.y1c{bottom:467.746667pt;}
.ybe{bottom:472.066667pt;}
.y93{bottom:473.346667pt;}
.yf7{bottom:475.586667pt;}
.y35{bottom:482.786667pt;}
.y59{bottom:483.106667pt;}
.ye5{bottom:485.986667pt;}
.y114{bottom:486.306667pt;}
.y168{bottom:487.266667pt;}
.y178{bottom:487.586667pt;}
.ybd{bottom:490.306667pt;}
.y13a{bottom:490.786667pt;}
.y148{bottom:490.946667pt;}
.y197{bottom:491.106667pt;}
.y92{bottom:491.746667pt;}
.y18e{bottom:492.386667pt;}
.y181{bottom:495.426667pt;}
.y12c{bottom:501.346667pt;}
.y1a4{bottom:501.666667pt;}
.y1b{bottom:502.173333pt;}
.y6f{bottom:503.613333pt;}
.ye4{bottom:504.706667pt;}
.ybc{bottom:507.293333pt;}
.y58{bottom:509.533333pt;}
.y91{bottom:510.493333pt;}
.y167{bottom:515.106667pt;}
.y147{bottom:518.466667pt;}
.y34{bottom:522.173333pt;}
.ye3{bottom:523.106667pt;}
.ybb{bottom:523.773333pt;}
.y90{bottom:528.893333pt;}
.y180{bottom:532.253333pt;}
.y1a{bottom:536.413333pt;}
.y196{bottom:538.173333pt;}
.y139{bottom:538.493333pt;}
.y57{bottom:538.813333pt;}
.y6e{bottom:538.973333pt;}
.yba{bottom:540.573333pt;}
.ye2{bottom:541.533333pt;}
.y166{bottom:542.813333pt;}
.y146{bottom:546.173333pt;}
.y8f{bottom:546.973333pt;}
.y12b{bottom:548.893333pt;}
.y56{bottom:557.213333pt;}
.yb9{bottom:557.853333pt;}
.y33{bottom:559.773333pt;}
.ye1{bottom:559.933333pt;}
.y8e{bottom:565.373333pt;}
.y19{bottom:568.093333pt;}
.y17e{bottom:569.053333pt;}
.y165{bottom:570.333333pt;}
.y145{bottom:573.693333pt;}
.y17f{bottom:575.133333pt;}
.y138{bottom:575.293333pt;}
.y55{bottom:575.613333pt;}
.yb8{bottom:576.573333pt;}
.y32{bottom:578.173333pt;}
.ye0{bottom:578.333333pt;}
.y6d{bottom:579.293333pt;}
.y8d{bottom:584.093333pt;}
.y195{bottom:586.013333pt;}
.y54{bottom:594.013333pt;}
.yb7{bottom:594.653333pt;}
.y31{bottom:596.573333pt;}
.ydf{bottom:596.733333pt;}
.y164{bottom:598.013333pt;}
.y18{bottom:599.773333pt;}
.y144{bottom:601.053333pt;}
.y8c{bottom:602.493333pt;}
.yf6{bottom:602.813333pt;}
.y17d{bottom:605.853333pt;}
.y6c{bottom:610.013333pt;}
.y137{bottom:612.093333pt;}
.y53{bottom:612.413333pt;}
.yb6{bottom:613.053333pt;}
.y30{bottom:614.973333pt;}
.yde{bottom:615.133333pt;}
.y8b{bottom:620.573333pt;}
.y1a3{bottom:622.813333pt;}
.y177{bottom:625.213333pt;}
.y163{bottom:625.533333pt;}
.y6b{bottom:629.373333pt;}
.y52{bottom:630.813333pt;}
.yb5{bottom:631.453333pt;}
.y2f{bottom:633.373333pt;}
.ydd{bottom:633.533333pt;}
.y17{bottom:634.333333pt;}
.y8a{bottom:638.973333pt;}
.y18d{bottom:639.613333pt;}
.y17c{bottom:642.653333pt;}
.y12a{bottom:644.093333pt;}
.y6a{bottom:648.893333pt;}
.yb4{bottom:650.173333pt;}
.ydc{bottom:651.933333pt;}
.y162{bottom:653.213333pt;}
.y89{bottom:657.693333pt;}
.y1a2{bottom:659.613333pt;}
.y51{bottom:667.613333pt;}
.y69{bottom:668.413333pt;}
.yb3{bottom:668.573333pt;}
.y16{bottom:669.213333pt;}
.y2e{bottom:670.333333pt;}
.y88{bottom:676.093333pt;}
.yf5{bottom:676.413333pt;}
.y17b{bottom:679.453333pt;}
.y161{bottom:680.733333pt;}
.y129{bottom:680.893333pt;}
.y136{bottom:685.693333pt;}
.yb2{bottom:686.653333pt;}
.y15{bottom:687.613333pt;}
.y68{bottom:687.933333pt;}
.ydb{bottom:688.573333pt;}
.y2d{bottom:688.733333pt;}
.y87{bottom:694.173333pt;}
.y1a1{bottom:696.413333pt;}
.y50{bottom:705.053333pt;}
.y14{bottom:706.013333pt;}
.yda{bottom:706.973333pt;}
.y2c{bottom:707.133333pt;}
.y67{bottom:707.453333pt;}
.y160{bottom:708.413333pt;}
.y86{bottom:712.573333pt;}
.y18c{bottom:713.053333pt;}
.y17a{bottom:716.253333pt;}
.y127{bottom:717.693333pt;}
.y143{bottom:722.493333pt;}
.y4f{bottom:723.493333pt;}
.y128{bottom:723.773333pt;}
.yb1{bottom:723.813333pt;}
.y13{bottom:724.453333pt;}
.yd9{bottom:725.373333pt;}
.y2b{bottom:725.573333pt;}
.y66{bottom:727.013333pt;}
.y135{bottom:732.893333pt;}
.y1a0{bottom:733.213333pt;}
.y15f{bottom:735.933333pt;}
.yb0{bottom:742.213333pt;}
.y12{bottom:742.853333pt;}
.yd8{bottom:743.773333pt;}
.y2a{bottom:743.973333pt;}
.y65{bottom:746.533333pt;}
.y85{bottom:748.453333pt;}
.y113{bottom:749.853333pt;}
.y126{bottom:754.493333pt;}
.y142{bottom:759.293333pt;}
.y4e{bottom:760.133333pt;}
.yaf{bottom:760.293333pt;}
.y11{bottom:761.253333pt;}
.yd7{bottom:762.173333pt;}
.y29{bottom:762.373333pt;}
.y179{bottom:763.453333pt;}
.y15e{bottom:763.613333pt;}
.y64{bottom:766.053333pt;}
.y19f{bottom:770.053333pt;}
.yae{bottom:778.693333pt;}
.yd6{bottom:780.613333pt;}
.y84{bottom:781.733333pt;}
.y63{bottom:785.733333pt;}
.yf4{bottom:786.693333pt;}
.y15d{bottom:791.173333pt;}
.y125{bottom:791.333333pt;}
.y10{bottom:795.173333pt;}
.y4d{bottom:797.573333pt;}
.yd5{bottom:799.013333pt;}
.yad{bottom:800.133333pt;}
.y141{bottom:806.533333pt;}
.y19e{bottom:806.853333pt;}
.y8{bottom:807.173333pt;}
.y28{bottom:807.653333pt;}
.yf{bottom:814.053333pt;}
.y4c{bottom:815.973333pt;}
.yf3{bottom:817.413333pt;}
.y15c{bottom:818.853333pt;}
.yac{bottom:821.253333pt;}
.y62{bottom:826.373333pt;}
.yd4{bottom:827.813333pt;}
.y123{bottom:828.133333pt;}
.ye{bottom:833.573333pt;}
.y124{bottom:834.213333pt;}
.y83{bottom:838.853333pt;}
.y7{bottom:839.013333pt;}
.yab{bottom:842.053333pt;}
.y19d{bottom:843.653333pt;}
.yd3{bottom:846.213333pt;}
.y15b{bottom:846.373333pt;}
.y4b{bottom:852.773333pt;}
.yf1{bottom:854.213333pt;}
.yd{bottom:858.213333pt;}
.yf2{bottom:860.293333pt;}
.y27{bottom:863.493333pt;}
.yd2{bottom:864.613333pt;}
.y111{bottom:864.933333pt;}
.y6{bottom:870.853333pt;}
.y112{bottom:871.013333pt;}
.y15a{bottom:874.053333pt;}
.yc{bottom:876.613333pt;}
.y26{bottom:881.893333pt;}
.yaa{bottom:884.773333pt;}
.yd1{bottom:889.413333pt;}
.y4a{bottom:889.733333pt;}
.yf0{bottom:891.013333pt;}
.yb{bottom:895.013333pt;}
.y25{bottom:900.293333pt;}
.y159{bottom:901.573333pt;}
.yd0{bottom:901.733333pt;}
.y5{bottom:902.693333pt;}
.ya9{bottom:905.573333pt;}
.y122{bottom:907.813333pt;}
.y49{bottom:908.453333pt;}
.ya{bottom:913.413333pt;}
.y24{bottom:918.693333pt;}
.ycf{bottom:926.213333pt;}
.ya8{bottom:926.693333pt;}
.y82{bottom:927.333333pt;}
.yef{bottom:927.813333pt;}
.y158{bottom:929.253333pt;}
.y4{bottom:934.373333pt;}
.y110{bottom:938.533333pt;}
.y9{bottom:939.813333pt;}
.yce{bottom:943.493333pt;}
.y18b{bottom:944.613333pt;}
.y23{bottom:945.120000pt;}
.y48{bottom:945.280000pt;}
.ya7{bottom:945.600000pt;}
.y81{bottom:946.720000pt;}
.ycd{bottom:956.613333pt;}
.y157{bottom:956.773333pt;}
.yee{bottom:964.613333pt;}
.ycc{bottom:975.013333pt;}
.y10f{bottom:975.333333pt;}
.y121{bottom:981.413333pt;}
.y156{bottom:984.453333pt;}
.ycb{bottom:993.413333pt;}
.y1{bottom:995.360000pt;}
.yca{bottom:1011.840000pt;}
.y155{bottom:1012.000000pt;}
.y10e{bottom:1012.160000pt;}
.y120{bottom:1018.240000pt;}
.yc7{bottom:1042.400000pt;}
.y1aa{bottom:1046.720000pt;}
.yc6{bottom:1059.360000pt;}
.y1a9{bottom:1061.920000pt;}
.yc5{bottom:1074.720000pt;}
.y1a8{bottom:1077.280000pt;}
.yc4{bottom:1090.880000pt;}
.y1a7{bottom:1092.640000pt;}
.yc3{bottom:1108.800000pt;}
.hf{height:30.254687pt;}
.h12{height:34.374375pt;}
.h10{height:38.441250pt;}
.ha{height:41.543750pt;}
.h2{height:45.156250pt;}
.he{height:47.621250pt;}
.h3{height:48.218750pt;}
.h9{height:52.785000pt;}
.h13{height:52.834688pt;}
.h5{height:56.312500pt;}
.h6{height:57.375000pt;}
.h1{height:58.563750pt;}
.hb{height:64.121875pt;}
.h4{height:79.963750pt;}
.h8{height:101.601562pt;}
.h7{height:158.046875pt;}
.h0{height:1056.000000pt;}
.h11{height:1122.546587pt;}
.hc{height:1122.560000pt;}
.hd{height:1122.666667pt;}
.w3{width:793.740000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.032000pt;}
.x25{left:108.992000pt;}
.x13{left:111.872000pt;}
.xa{left:120.032000pt;}
.x10{left:124.032000pt;}
.x41{left:125.952000pt;}
.xb{left:144.026667pt;}
.x9{left:148.186667pt;}
.x6{left:156.826667pt;}
.x35{left:157.766667pt;}
.x29{left:163.866667pt;}
.x18{left:164.986667pt;}
.x14{left:166.106667pt;}
.xc{left:168.026667pt;}
.x36{left:174.106667pt;}
.x17{left:178.586667pt;}
.x26{left:181.766667pt;}
.x27{left:198.106667pt;}
.x1e{left:200.806667pt;}
.x31{left:209.606667pt;}
.x1f{left:217.146667pt;}
.x32{left:225.946667pt;}
.x1b{left:230.886667pt;}
.x2c{left:236.166667pt;}
.x1a{left:243.866667pt;}
.x1{left:246.426667pt;}
.x2d{left:252.546667pt;}
.xe{left:253.946667pt;}
.x5{left:257.146667pt;}
.x2e{left:268.546667pt;}
.x19{left:272.066667pt;}
.x3c{left:273.006667pt;}
.x24{left:288.066667pt;}
.x3d{left:289.346667pt;}
.x37{left:291.406667pt;}
.x3a{left:296.686667pt;}
.x38{left:307.746667pt;}
.x3e{left:309.646667pt;}
.x3b{left:313.026667pt;}
.x3f{left:325.986667pt;}
.x11{left:333.826667pt;}
.x20{left:348.366667pt;}
.x15{left:351.106667pt;}
.x7{left:353.506667pt;}
.x21{left:364.706667pt;}
.x28{left:386.766667pt;}
.xf{left:399.586667pt;}
.xd{left:401.346667pt;}
.x8{left:402.946667pt;}
.x2{left:404.386667pt;}
.x4{left:408.066667pt;}
.x33{left:413.806667pt;}
.x16{left:420.893333pt;}
.x39{left:424.413333pt;}
.x34{left:430.173333pt;}
.x2f{left:461.353333pt;}
.x30{left:477.693333pt;}
.x12{left:534.653333pt;}
.x2a{left:549.353333pt;}
.x2b{left:565.693333pt;}
.x1c{left:573.353333pt;}
.x1d{left:589.733333pt;}
.x42{left:655.973333pt;}
.x22{left:681.553333pt;}
.x23{left:697.893333pt;}
.x40{left:715.973333pt;}
}




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