
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_21026c951ec3638903ae55bb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_db1406df3fa2f69e213e68ad.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_b2207abf818fff12d49d0ff5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;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_84cb61590d897a039033a784.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_efee9b6633485499fabf5223.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_18cd3db9693a274eb3257f88.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931152;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_52ea3648b49faacc7c3343e0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_cfa6c6f4010140a89cdbb362.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_995ae230bc0aa776bd3b99be.woff')format("woff");}.ffa{font-family:ffa;line-height:0.928711;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_468106656142e0de432a9b12.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_6f9aba0a2db4d7469d7f8415.woff')format("woff");}.ffc{font-family:ffc;line-height:0.928711;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_cc30d6946eff8424117e7f95.woff')format("woff");}.ffd{font-family:ffd;line-height:1.091309;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_9ed8bda2041d673224752482.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_02045694abcf0d7a1fa712d4.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;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);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.008000px;}
.ls5c{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.930000px;}
.ls46{letter-spacing:-0.720000px;}
.ls7d{letter-spacing:-0.648000px;}
.ls74{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.395400px;}
.ls8e{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.325200px;}
.ls60{letter-spacing:-0.295200px;}
.ls1b{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.216000px;}
.lsa1{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.000003px;}
.lsa{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000001px;}
.ls59{letter-spacing:0.063360px;}
.ls5f{letter-spacing:0.063600px;}
.ls6{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.106560px;}
.ls61{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.154800px;}
.ls5e{letter-spacing:0.160800px;}
.ls29{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls85{letter-spacing:0.243360px;}
.ls17{letter-spacing:0.252000px;}
.ls5d{letter-spacing:0.259800px;}
.ls84{letter-spacing:0.259920px;}
.ls86{letter-spacing:0.286800px;}
.ls8{letter-spacing:0.288000px;}
.ls57{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.357120px;}
.ls9a{letter-spacing:0.359280px;}
.ls18{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.408000px;}
.ls20{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.487200px;}
.ls73{letter-spacing:0.487440px;}
.ls47{letter-spacing:0.504000px;}
.ls51{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.735840px;}
.ls5a{letter-spacing:0.783360px;}
.ls87{letter-spacing:0.786000px;}
.ls4d{letter-spacing:0.792000px;}
.ls6a{letter-spacing:0.900000px;}
.ls3a{letter-spacing:0.936000px;}
.ls21{letter-spacing:1.008000px;}
.ls54{letter-spacing:1.368000px;}
.ls72{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.656000px;}
.ls3c{letter-spacing:2.088000px;}
.ls2c{letter-spacing:2.376000px;}
.ls11{letter-spacing:2.808000px;}
.ls2b{letter-spacing:3.096000px;}
.ls24{letter-spacing:3.528000px;}
.ls82{letter-spacing:3.780000px;}
.ls32{letter-spacing:3.816000px;}
.ls83{letter-spacing:4.087440px;}
.ls89{letter-spacing:4.248000px;}
.ls90{letter-spacing:4.536000px;}
.ls28{letter-spacing:4.968000px;}
.ls50{letter-spacing:5.256000px;}
.ls40{letter-spacing:5.688000px;}
.ls98{letter-spacing:5.808000px;}
.ls79{letter-spacing:5.976000px;}
.ls8c{letter-spacing:6.384000px;}
.ls9{letter-spacing:6.408000px;}
.lsa0{letter-spacing:6.624000px;}
.ls7e{letter-spacing:6.696000px;}
.ls78{letter-spacing:6.816000px;}
.ls55{letter-spacing:7.128000px;}
.ls14{letter-spacing:7.416000px;}
.ls39{letter-spacing:7.536000px;}
.ls38{letter-spacing:7.848000px;}
.ls68{letter-spacing:8.028000px;}
.ls3d{letter-spacing:8.136000px;}
.ls42{letter-spacing:8.568000px;}
.ls94{letter-spacing:8.856000px;}
.ls8b{letter-spacing:9.288000px;}
.ls70{letter-spacing:9.576000px;}
.ls22{letter-spacing:10.008000px;}
.ls62{letter-spacing:10.200000px;}
.ls63{letter-spacing:10.224000px;}
.ls80{letter-spacing:10.296000px;}
.ls23{letter-spacing:10.728000px;}
.ls64{letter-spacing:10.920000px;}
.ls65{letter-spacing:10.944000px;}
.ls93{letter-spacing:11.016000px;}
.ls49{letter-spacing:11.448000px;}
.ls36{letter-spacing:11.736000px;}
.ls5b{letter-spacing:11.879280px;}
.ls7c{letter-spacing:11.916000px;}
.ls13{letter-spacing:12.168000px;}
.ls6b{letter-spacing:12.420000px;}
.ls35{letter-spacing:12.456000px;}
.ls37{letter-spacing:12.888000px;}
.ls41{letter-spacing:13.608000px;}
.ls9f{letter-spacing:13.800000px;}
.ls3b{letter-spacing:13.896000px;}
.ls45{letter-spacing:14.328000px;}
.ls75{letter-spacing:14.400000px;}
.ls6f{letter-spacing:14.616000px;}
.ls67{letter-spacing:15.048000px;}
.ls7a{letter-spacing:15.336000px;}
.ls16{letter-spacing:15.768000px;}
.ls8f{letter-spacing:16.056000px;}
.ls1f{letter-spacing:16.488000px;}
.ls9b{letter-spacing:17.208000px;}
.ls2{letter-spacing:17.386560px;}
.ls97{letter-spacing:17.496000px;}
.ls15{letter-spacing:17.928000px;}
.ls66{letter-spacing:18.108000px;}
.ls96{letter-spacing:18.216000px;}
.ls69{letter-spacing:18.648000px;}
.ls53{letter-spacing:18.936000px;}
.ls92{letter-spacing:19.368000px;}
.lsa2{letter-spacing:19.380000px;}
.ls3{letter-spacing:19.546560px;}
.ls52{letter-spacing:19.656000px;}
.ls56{letter-spacing:20.088000px;}
.ls8a{letter-spacing:20.268000px;}
.ls2d{letter-spacing:20.808000px;}
.ls3e{letter-spacing:21.096000px;}
.ls4b{letter-spacing:21.816000px;}
.ls3f{letter-spacing:22.248000px;}
.ls4c{letter-spacing:22.536000px;}
.ls27{letter-spacing:22.968000px;}
.ls4a{letter-spacing:23.688000px;}
.ls1{letter-spacing:24.706560px;}
.ls9d{letter-spacing:25.128000px;}
.ls7b{letter-spacing:26.136000px;}
.lsf{letter-spacing:26.568000px;}
.ls8d{letter-spacing:26.748000px;}
.ls88{letter-spacing:27.288000px;}
.ls7f{letter-spacing:27.576000px;}
.ls95{letter-spacing:28.224000px;}
.ls77{letter-spacing:29.016000px;}
.ls99{letter-spacing:29.448000px;}
.ls25{letter-spacing:30.888000px;}
.ls26{letter-spacing:31.068000px;}
.ls44{letter-spacing:31.608000px;}
.ls34{letter-spacing:33.048000px;}
.ls81{letter-spacing:33.336000px;}
.ls48{letter-spacing:33.768000px;}
.ls4f{letter-spacing:34.488000px;}
.ls71{letter-spacing:35.928000px;}
.ls7{letter-spacing:36.648000px;}
.ls43{letter-spacing:37.368000px;}
.ls76{letter-spacing:39.816000px;}
.ls12{letter-spacing:40.248000px;}
.ls30{letter-spacing:45.288000px;}
.ls9c{letter-spacing:48.888000px;}
.ls9e{letter-spacing:49.800000px;}
.ls6e{letter-spacing:53.208000px;}
.ls6c{letter-spacing:62.136000px;}
.ls6d{letter-spacing:62.856000px;}
.ls2f{letter-spacing:97.320000px;}
.ls0{letter-spacing:127.927440px;}
.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;}
}
.ws1{word-spacing:-23.276040px;}
.ws1b{word-spacing:-21.168000px;}
.ws14{word-spacing:-21.024000px;}
.ws15{word-spacing:-20.952000px;}
.ws13{word-spacing:-20.736000px;}
.ws18{word-spacing:-20.664000px;}
.ws1d{word-spacing:-20.592000px;}
.ws9{word-spacing:-20.448000px;}
.ws4{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.231997px;}
.wsf{word-spacing:-20.160000px;}
.ws23{word-spacing:-20.088000px;}
.wsc{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.944000px;}
.ws21{word-spacing:-19.872000px;}
.ws1a{word-spacing:-19.728000px;}
.ws1c{word-spacing:-19.584000px;}
.ws12{word-spacing:-19.512000px;}
.ws10{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.613440px;}
.ws3{word-spacing:-18.288240px;}
.ws1e{word-spacing:-18.072000px;}
.ws11{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.152560px;}
.ws1f{word-spacing:-17.079360px;}
.ws22{word-spacing:-17.064000px;}
.ws16{word-spacing:-16.953360px;}
.ws20{word-spacing:-16.856160px;}
.wsa{word-spacing:-16.792560px;}
.ws17{word-spacing:-16.497360px;}
.ws19{word-spacing:-14.940000px;}
.wse{word-spacing:-14.760720px;}
.ws5{word-spacing:0.000000px;}
._2c{margin-left:-21.808320px;}
._2b{margin-left:-14.995200px;}
._22{margin-left:-12.555840px;}
._38{margin-left:-8.016000px;}
._35{margin-left:-5.844000px;}
._1b{margin-left:-4.836000px;}
._19{margin-left:-3.468000px;}
._14{margin-left:-2.436000px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._8{width:2.968320px;}
._1a{width:4.008000px;}
._3{width:5.256000px;}
._4{width:6.292800px;}
._9{width:7.617600px;}
._10{width:9.167520px;}
._15{width:10.478400px;}
._a{width:11.658240px;}
._f{width:12.927360px;}
._b{width:14.827200px;}
._c{width:16.092480px;}
._d{width:17.214240px;}
._18{width:18.425760px;}
._e{width:20.190720px;}
._1d{width:22.176000px;}
._6{width:23.846400px;}
._7{width:25.195680px;}
._13{width:26.760000px;}
._23{width:28.680000px;}
._37{width:29.740800px;}
._1c{width:30.744000px;}
._21{width:32.124000px;}
._20{width:33.408000px;}
._24{width:34.716000px;}
._11{width:36.288000px;}
._12{width:37.308000px;}
._25{width:38.556000px;}
._17{width:39.576000px;}
._16{width:40.968000px;}
._39{width:42.336000px;}
._36{width:43.344000px;}
._1e{width:45.000000px;}
._1f{width:46.538400px;}
._2d{width:48.528000px;}
._2e{width:49.584000px;}
._27{width:50.688000px;}
._26{width:51.840000px;}
._34{width:53.112000px;}
._32{width:62.200797px;}
._31{width:63.408000px;}
._5{width:83.988000px;}
._30{width:88.848000px;}
._33{width:89.868000px;}
._28{width:107.928000px;}
._29{width:111.240000px;}
._2a{width:180.696000px;}
._1{width:493.954080px;}
._2f{width:844.716000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:4.320000px;}
.yb2{bottom:4.680000px;}
.ya6{bottom:6.660000px;}
.yf1{bottom:7.020000px;}
.ye7{bottom:7.200000px;}
.y69{bottom:9.900000px;}
.y70{bottom:10.080000px;}
.yd6{bottom:28.080000px;}
.yb1{bottom:30.600000px;}
.yae{bottom:34.380000px;}
.ya5{bottom:34.560000px;}
.yf0{bottom:35.460000px;}
.ye6{bottom:35.640000px;}
.y73{bottom:40.860000px;}
.y6f{bottom:41.040000px;}
.y5{bottom:46.656000px;}
.y30{bottom:46.836000px;}
.yd5{bottom:51.840000px;}
.yad{bottom:62.325000px;}
.y123{bottom:62.460000px;}
.yef{bottom:63.900000px;}
.y2f{bottom:66.816000px;}
.y4{bottom:70.416000px;}
.y72{bottom:71.820000px;}
.y6e{bottom:72.000000px;}
.yd4{bottom:75.600000px;}
.y2e{bottom:90.216000px;}
.yac{bottom:90.225000px;}
.y131{bottom:90.360000px;}
.yee{bottom:92.385000px;}
.y3{bottom:93.636000px;}
.yd3{bottom:99.360000px;}
.y76{bottom:102.780000px;}
.y6d{bottom:102.960000px;}
.y2d{bottom:111.636000px;}
.y2{bottom:115.236000px;}
.y130{bottom:118.080000px;}
.yab{bottom:118.125000px;}
.yed{bottom:120.825000px;}
.yd2{bottom:123.165000px;}
.y2c{bottom:132.696000px;}
.y91{bottom:133.740000px;}
.y75{bottom:133.770000px;}
.y6c{bottom:133.920000px;}
.y1{bottom:136.296000px;}
.yaa{bottom:146.025000px;}
.yd1{bottom:147.105000px;}
.yec{bottom:149.265000px;}
.y87{bottom:150.150000px;}
.y50{bottom:150.870000px;}
.y124{bottom:152.850000px;}
.y5c{bottom:156.090000px;}
.y4f{bottom:156.810000px;}
.yb3{bottom:158.970000px;}
.y90{bottom:164.700000px;}
.y120{bottom:164.730000px;}
.y6b{bottom:164.925000px;}
.y86{bottom:167.430000px;}
.yd0{bottom:170.865000px;}
.y58{bottom:172.470000px;}
.y7f{bottom:172.650000px;}
.y4e{bottom:173.010000px;}
.ya9{bottom:173.745000px;}
.y12f{bottom:173.925000px;}
.yaf{bottom:174.450000px;}
.y26{bottom:175.710000px;}
.yeb{bottom:177.525000px;}
.y57{bottom:178.410000px;}
.y5a{bottom:180.210000px;}
.y85{bottom:184.710000px;}
.y56{bottom:193.890000px;}
.ya0{bottom:194.430000px;}
.ycf{bottom:194.625000px;}
.y11f{bottom:195.690000px;}
.y8f{bottom:195.885000px;}
.y55{bottom:199.830000px;}
.ya8{bottom:201.645000px;}
.y12e{bottom:201.825000px;}
.y84{bottom:201.990000px;}
.y7e{bottom:203.610000px;}
.yea{bottom:205.965000px;}
.y25{bottom:206.670000px;}
.y83{bottom:207.210000px;}
.y59{bottom:211.170000px;}
.y54{bottom:215.490000px;}
.yce{bottom:218.385000px;}
.y82{bottom:220.530000px;}
.y53{bottom:220.710000px;}
.y11e{bottom:226.650000px;}
.y8e{bottom:226.845000px;}
.y12d{bottom:229.725000px;}
.ya7{bottom:230.970000px;}
.ye9{bottom:234.405000px;}
.y7d{bottom:234.570000px;}
.y67{bottom:237.090000px;}
.y24{bottom:237.630000px;}
.y9f{bottom:239.970000px;}
.y4d{bottom:242.130000px;}
.ycd{bottom:242.145000px;}
.y102{bottom:244.290000px;}
.y11d{bottom:257.610000px;}
.y12c{bottom:257.625000px;}
.y8d{bottom:257.805000px;}
.y66{bottom:258.510000px;}
.ya3{bottom:263.730000px;}
.y7c{bottom:265.530000px;}
.ycc{bottom:265.905000px;}
.y23{bottom:268.590000px;}
.y9e{bottom:270.930000px;}
.y4c{bottom:273.090000px;}
.y101{bottom:275.250000px;}
.y65{bottom:280.110000px;}
.ya2{bottom:280.650000px;}
.y12b{bottom:285.345000px;}
.y64{bottom:286.095000px;}
.y11c{bottom:288.615000px;}
.y8c{bottom:288.765000px;}
.ycb{bottom:289.665000px;}
.y7b{bottom:296.715000px;}
.y22{bottom:299.595000px;}
.y63{bottom:301.575000px;}
.y9d{bottom:301.935000px;}
.y4b{bottom:304.095000px;}
.y100{bottom:306.255000px;}
.y12a{bottom:313.245000px;}
.yca{bottom:313.425000px;}
.y11b{bottom:319.575000px;}
.y8b{bottom:319.725000px;}
.y62{bottom:323.175000px;}
.y7a{bottom:327.675000px;}
.y21{bottom:330.735000px;}
.y9c{bottom:332.895000px;}
.y4a{bottom:335.055000px;}
.yc9{bottom:337.185000px;}
.yff{bottom:337.215000px;}
.y129{bottom:341.145000px;}
.y61{bottom:344.595000px;}
.y60{bottom:349.815000px;}
.y8a{bottom:350.685000px;}
.y11a{bottom:350.715000px;}
.y79{bottom:358.635000px;}
.yc8{bottom:360.945000px;}
.y20{bottom:361.695000px;}
.y9b{bottom:363.855000px;}
.y48{bottom:366.195000px;}
.y5f{bottom:366.735000px;}
.yfe{bottom:368.355000px;}
.y128{bottom:369.045000px;}
.y49{bottom:373.755000px;}
.y119{bottom:381.675000px;}
.yc7{bottom:384.885000px;}
.y78{bottom:389.595000px;}
.y1f{bottom:391.575000px;}
.y9a{bottom:394.815000px;}
.y127{bottom:396.945000px;}
.y47{bottom:397.155000px;}
.yfd{bottom:399.315000px;}
.y80{bottom:404.715000px;}
.yc6{bottom:408.675000px;}
.y118{bottom:412.635000px;}
.y1e{bottom:420.015000px;}
.y77{bottom:420.555000px;}
.y126{bottom:424.695000px;}
.y99{bottom:425.775000px;}
.y46{bottom:428.115000px;}
.yfc{bottom:430.275000px;}
.yc5{bottom:432.435000px;}
.y74{bottom:443.235000px;}
.y117{bottom:443.595000px;}
.y1d{bottom:448.455000px;}
.y125{bottom:452.595000px;}
.ya4{bottom:454.575000px;}
.yc4{bottom:456.195000px;}
.y98{bottom:456.915000px;}
.y45{bottom:459.075000px;}
.yfb{bottom:461.235000px;}
.y5e{bottom:466.635000px;}
.y116{bottom:474.555000px;}
.y1c{bottom:476.895000px;}
.yc3{bottom:479.955000px;}
.y97{bottom:487.875000px;}
.y44{bottom:490.035000px;}
.yfa{bottom:492.195000px;}
.yc2{bottom:503.715000px;}
.y1b{bottom:505.335000px;}
.y115{bottom:505.515000px;}
.y96{bottom:518.835000px;}
.y43{bottom:520.995000px;}
.yf9{bottom:523.155000px;}
.ye4{bottom:525.135000px;}
.yc1{bottom:527.475000px;}
.y1a{bottom:533.595000px;}
.y114{bottom:536.475000px;}
.y95{bottom:549.795000px;}
.ye3{bottom:550.875000px;}
.yc0{bottom:551.235000px;}
.y42{bottom:551.955000px;}
.yf8{bottom:554.295000px;}
.y5b{bottom:559.515000px;}
.y19{bottom:562.035000px;}
.y113{bottom:567.645000px;}
.ybf{bottom:574.995000px;}
.ye2{bottom:576.795000px;}
.y94{bottom:580.785000px;}
.y41{bottom:583.125000px;}
.yf6{bottom:585.285000px;}
.y18{bottom:590.505000px;}
.yf7{bottom:592.845000px;}
.y112{bottom:598.605000px;}
.ybe{bottom:598.755000px;}
.y71{bottom:599.685000px;}
.ye1{bottom:602.535000px;}
.y93{bottom:611.745000px;}
.y40{bottom:614.085000px;}
.yf5{bottom:616.245000px;}
.y17{bottom:618.945000px;}
.ybd{bottom:622.695000px;}
.y122{bottom:627.765000px;}
.ye0{bottom:628.455000px;}
.y111{bottom:629.565000px;}
.y92{bottom:642.705000px;}
.y3f{bottom:645.045000px;}
.ybc{bottom:646.455000px;}
.yf4{bottom:647.205000px;}
.y16{bottom:647.385000px;}
.ydf{bottom:654.195000px;}
.y110{bottom:660.525000px;}
.y89{bottom:664.665000px;}
.ybb{bottom:670.215000px;}
.yf3{bottom:675.465000px;}
.y15{bottom:675.645000px;}
.y3e{bottom:676.005000px;}
.yde{bottom:680.115000px;}
.y81{bottom:683.565000px;}
.y10f{bottom:691.485000px;}
.y6a{bottom:694.005000px;}
.yba{bottom:694.020000px;}
.yf2{bottom:697.425000px;}
.y14{bottom:704.085000px;}
.ydd{bottom:705.900000px;}
.y3d{bottom:706.965000px;}
.yb9{bottom:717.780000px;}
.y10e{bottom:722.445000px;}
.ydc{bottom:731.820000px;}
.y13{bottom:732.525000px;}
.y3c{bottom:737.925000px;}
.yb8{bottom:741.540000px;}
.ya1{bottom:745.485000px;}
.y121{bottom:748.365000px;}
.y10d{bottom:753.405000px;}
.ye8{bottom:755.025000px;}
.ydb{bottom:757.560000px;}
.y12{bottom:760.965000px;}
.yb7{bottom:765.300000px;}
.y3b{bottom:769.065000px;}
.yda{bottom:783.480000px;}
.y10c{bottom:784.545000px;}
.yb6{bottom:789.060000px;}
.y11{bottom:789.405000px;}
.y3a{bottom:800.025000px;}
.yd9{bottom:809.220000px;}
.yb5{bottom:812.820000px;}
.y10b{bottom:815.505000px;}
.y10{bottom:818.745000px;}
.y39{bottom:830.985000px;}
.yd8{bottom:834.960000px;}
.yb4{bottom:836.580000px;}
.y10a{bottom:846.465000px;}
.yf{bottom:849.750000px;}
.y38{bottom:861.990000px;}
.y109{bottom:877.470000px;}
.ye{bottom:880.710000px;}
.y68{bottom:881.610000px;}
.y37{bottom:892.950000px;}
.y108{bottom:908.430000px;}
.yd{bottom:911.670000px;}
.y36{bottom:923.910000px;}
.y52{bottom:931.470000px;}
.y107{bottom:936.690000px;}
.yc{bottom:942.630000px;}
.y35{bottom:954.870000px;}
.y106{bottom:965.130000px;}
.yb{bottom:975.030000px;}
.y34{bottom:986.010000px;}
.y5d{bottom:993.570000px;}
.ya{bottom:1009.770000px;}
.ye5{bottom:1011.390000px;}
.yb0{bottom:1016.250000px;}
.y33{bottom:1016.970000px;}
.y105{bottom:1021.830000px;}
.y88{bottom:1037.310000px;}
.y9{bottom:1040.910000px;}
.y32{bottom:1047.930000px;}
.y104{bottom:1050.270000px;}
.y51{bottom:1055.490000px;}
.y8{bottom:1071.870000px;}
.y103{bottom:1078.710000px;}
.y31{bottom:1078.890000px;}
.y7{bottom:1102.830000px;}
.y2b{bottom:1104.450000px;}
.y2a{bottom:1127.130000px;}
.y6{bottom:1133.820000px;}
.y29{bottom:1151.100000px;}
.y28{bottom:1176.840000px;}
.y27{bottom:1202.760000px;}
.ha{height:30.568359px;}
.h10{height:30.960000px;}
.h9{height:35.459297px;}
.hb{height:38.158594px;}
.hf{height:49.675781px;}
.he{height:50.097656px;}
.h7{height:50.743477px;}
.h18{height:51.660000px;}
.h16{height:55.800000px;}
.h3{height:56.245781px;}
.h1a{height:56.880000px;}
.hc{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:61.136719px;}
.h4{height:62.191406px;}
.h8{height:65.884219px;}
.h6{height:71.529961px;}
.h12{height:74.004654px;}
.hd{height:74.953125px;}
.h1c{height:83.700000px;}
.h13{height:92.880000px;}
.h14{height:154.830000px;}
.h11{height:185.970000px;}
.h17{height:222.870000px;}
.h1b{height:255.630000px;}
.h15{height:371.730000px;}
.h1d{height:473.835000px;}
.h19{height:856.005000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:83.700000px;}
.w15{width:89.100000px;}
.wd{width:91.620000px;}
.w9{width:92.700000px;}
.w19{width:96.120000px;}
.w17{width:97.920000px;}
.w18{width:128.916000px;}
.w16{width:130.896000px;}
.wa{width:131.256000px;}
.we{width:132.336000px;}
.wc{width:140.256000px;}
.w1c{width:186.690000px;}
.w1b{width:194.790000px;}
.w11{width:211.530000px;}
.w12{width:220.710000px;}
.w10{width:222.150000px;}
.w8{width:224.670000px;}
.w14{width:225.750000px;}
.w13{width:227.550000px;}
.wf{width:232.410000px;}
.w1a{width:295.410000px;}
.w5{width:335.235000px;}
.w6{width:337.350000px;}
.w7{width:337.575000px;}
.w4{width:338.070000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.380000px;}
.x38{left:9.720000px;}
.x1d{left:19.980000px;}
.x39{left:31.680000px;}
.x30{left:34.560000px;}
.x1e{left:41.214000px;}
.x1c{left:104.430000px;}
.x1{left:108.035987px;}
.x19{left:109.476000px;}
.x1a{left:125.274000px;}
.x5{left:144.755987px;}
.x4{left:150.509987px;}
.xc{left:155.009987px;}
.x20{left:158.969973px;}
.x3{left:161.129987px;}
.x21{left:164.189987px;}
.xd{left:167.429973px;}
.x24{left:168.689987px;}
.xe{left:172.649987px;}
.x28{left:174.449973px;}
.x3b{left:175.529987px;}
.x29{left:184.889987px;}
.x33{left:198.570000px;}
.x2b{left:202.170000px;}
.x3c{left:225.029987px;}
.x15{left:229.889973px;}
.x16{left:235.109987px;}
.x13{left:254.189973px;}
.x14{left:259.409987px;}
.x2{left:278.669987px;}
.x11{left:312.374973px;}
.x12{left:317.594987px;}
.xb{left:324.074987px;}
.x31{left:330.375000px;}
.x2a{left:334.155000px;}
.x9{left:341.354973px;}
.x2e{left:342.615000px;}
.xa{left:346.574987px;}
.x3d{left:395.354987px;}
.x36{left:405.615000px;}
.x2c{left:418.575000px;}
.x22{left:423.074973px;}
.x23{left:428.294987px;}
.x25{left:446.835000px;}
.x1b{left:448.995000px;}
.x3f{left:472.964987px;}
.x26{left:485.384973px;}
.x27{left:495.824987px;}
.x18{left:555.044987px;}
.x32{left:558.645000px;}
.x7{left:559.724987px;}
.x6{left:562.604987px;}
.x2f{left:565.845000px;}
.x3e{left:568.184987px;}
.x40{left:581.684987px;}
.x42{left:589.424987px;}
.x37{left:601.305000px;}
.x41{left:634.604987px;}
.x3a{left:643.964987px;}
.x2d{left:651.885000px;}
.x34{left:655.485000px;}
.xf{left:681.089973px;}
.x10{left:686.309987px;}
.x35{left:770.009973px;}
.x17{left:779.909973px;}
.x8{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls5c{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.826667pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls7d{letter-spacing:-0.576000pt;}
.ls74{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.351467pt;}
.ls8e{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.289067pt;}
.ls60{letter-spacing:-0.262400pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.lsa1{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.000003pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000001pt;}
.ls59{letter-spacing:0.056320pt;}
.ls5f{letter-spacing:0.056533pt;}
.ls6{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.094720pt;}
.ls61{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.137600pt;}
.ls5e{letter-spacing:0.142933pt;}
.ls29{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls85{letter-spacing:0.216320pt;}
.ls17{letter-spacing:0.224000pt;}
.ls5d{letter-spacing:0.230933pt;}
.ls84{letter-spacing:0.231040pt;}
.ls86{letter-spacing:0.254933pt;}
.ls8{letter-spacing:0.256000pt;}
.ls57{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.317440pt;}
.ls9a{letter-spacing:0.319360pt;}
.ls18{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.362667pt;}
.ls20{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.433067pt;}
.ls73{letter-spacing:0.433280pt;}
.ls47{letter-spacing:0.448000pt;}
.ls51{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.654080pt;}
.ls5a{letter-spacing:0.696320pt;}
.ls87{letter-spacing:0.698667pt;}
.ls4d{letter-spacing:0.704000pt;}
.ls6a{letter-spacing:0.800000pt;}
.ls3a{letter-spacing:0.832000pt;}
.ls21{letter-spacing:0.896000pt;}
.ls54{letter-spacing:1.216000pt;}
.ls72{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.472000pt;}
.ls3c{letter-spacing:1.856000pt;}
.ls2c{letter-spacing:2.112000pt;}
.ls11{letter-spacing:2.496000pt;}
.ls2b{letter-spacing:2.752000pt;}
.ls24{letter-spacing:3.136000pt;}
.ls82{letter-spacing:3.360000pt;}
.ls32{letter-spacing:3.392000pt;}
.ls83{letter-spacing:3.633280pt;}
.ls89{letter-spacing:3.776000pt;}
.ls90{letter-spacing:4.032000pt;}
.ls28{letter-spacing:4.416000pt;}
.ls50{letter-spacing:4.672000pt;}
.ls40{letter-spacing:5.056000pt;}
.ls98{letter-spacing:5.162667pt;}
.ls79{letter-spacing:5.312000pt;}
.ls8c{letter-spacing:5.674667pt;}
.ls9{letter-spacing:5.696000pt;}
.lsa0{letter-spacing:5.888000pt;}
.ls7e{letter-spacing:5.952000pt;}
.ls78{letter-spacing:6.058667pt;}
.ls55{letter-spacing:6.336000pt;}
.ls14{letter-spacing:6.592000pt;}
.ls39{letter-spacing:6.698667pt;}
.ls38{letter-spacing:6.976000pt;}
.ls68{letter-spacing:7.136000pt;}
.ls3d{letter-spacing:7.232000pt;}
.ls42{letter-spacing:7.616000pt;}
.ls94{letter-spacing:7.872000pt;}
.ls8b{letter-spacing:8.256000pt;}
.ls70{letter-spacing:8.512000pt;}
.ls22{letter-spacing:8.896000pt;}
.ls62{letter-spacing:9.066667pt;}
.ls63{letter-spacing:9.088000pt;}
.ls80{letter-spacing:9.152000pt;}
.ls23{letter-spacing:9.536000pt;}
.ls64{letter-spacing:9.706667pt;}
.ls65{letter-spacing:9.728000pt;}
.ls93{letter-spacing:9.792000pt;}
.ls49{letter-spacing:10.176000pt;}
.ls36{letter-spacing:10.432000pt;}
.ls5b{letter-spacing:10.559360pt;}
.ls7c{letter-spacing:10.592000pt;}
.ls13{letter-spacing:10.816000pt;}
.ls6b{letter-spacing:11.040000pt;}
.ls35{letter-spacing:11.072000pt;}
.ls37{letter-spacing:11.456000pt;}
.ls41{letter-spacing:12.096000pt;}
.ls9f{letter-spacing:12.266667pt;}
.ls3b{letter-spacing:12.352000pt;}
.ls45{letter-spacing:12.736000pt;}
.ls75{letter-spacing:12.800000pt;}
.ls6f{letter-spacing:12.992000pt;}
.ls67{letter-spacing:13.376000pt;}
.ls7a{letter-spacing:13.632000pt;}
.ls16{letter-spacing:14.016000pt;}
.ls8f{letter-spacing:14.272000pt;}
.ls1f{letter-spacing:14.656000pt;}
.ls9b{letter-spacing:15.296000pt;}
.ls2{letter-spacing:15.454720pt;}
.ls97{letter-spacing:15.552000pt;}
.ls15{letter-spacing:15.936000pt;}
.ls66{letter-spacing:16.096000pt;}
.ls96{letter-spacing:16.192000pt;}
.ls69{letter-spacing:16.576000pt;}
.ls53{letter-spacing:16.832000pt;}
.ls92{letter-spacing:17.216000pt;}
.lsa2{letter-spacing:17.226667pt;}
.ls3{letter-spacing:17.374720pt;}
.ls52{letter-spacing:17.472000pt;}
.ls56{letter-spacing:17.856000pt;}
.ls8a{letter-spacing:18.016000pt;}
.ls2d{letter-spacing:18.496000pt;}
.ls3e{letter-spacing:18.752000pt;}
.ls4b{letter-spacing:19.392000pt;}
.ls3f{letter-spacing:19.776000pt;}
.ls4c{letter-spacing:20.032000pt;}
.ls27{letter-spacing:20.416000pt;}
.ls4a{letter-spacing:21.056000pt;}
.ls1{letter-spacing:21.961387pt;}
.ls9d{letter-spacing:22.336000pt;}
.ls7b{letter-spacing:23.232000pt;}
.lsf{letter-spacing:23.616000pt;}
.ls8d{letter-spacing:23.776000pt;}
.ls88{letter-spacing:24.256000pt;}
.ls7f{letter-spacing:24.512000pt;}
.ls95{letter-spacing:25.088000pt;}
.ls77{letter-spacing:25.792000pt;}
.ls99{letter-spacing:26.176000pt;}
.ls25{letter-spacing:27.456000pt;}
.ls26{letter-spacing:27.616000pt;}
.ls44{letter-spacing:28.096000pt;}
.ls34{letter-spacing:29.376000pt;}
.ls81{letter-spacing:29.632000pt;}
.ls48{letter-spacing:30.016000pt;}
.ls4f{letter-spacing:30.656000pt;}
.ls71{letter-spacing:31.936000pt;}
.ls7{letter-spacing:32.576000pt;}
.ls43{letter-spacing:33.216000pt;}
.ls76{letter-spacing:35.392000pt;}
.ls12{letter-spacing:35.776000pt;}
.ls30{letter-spacing:40.256000pt;}
.ls9c{letter-spacing:43.456000pt;}
.ls9e{letter-spacing:44.266667pt;}
.ls6e{letter-spacing:47.296000pt;}
.ls6c{letter-spacing:55.232000pt;}
.ls6d{letter-spacing:55.872000pt;}
.ls2f{letter-spacing:86.506667pt;}
.ls0{letter-spacing:113.713280pt;}
.ws1{word-spacing:-20.689813pt;}
.ws1b{word-spacing:-18.816000pt;}
.ws14{word-spacing:-18.688000pt;}
.ws15{word-spacing:-18.624000pt;}
.ws13{word-spacing:-18.432000pt;}
.ws18{word-spacing:-18.368000pt;}
.ws1d{word-spacing:-18.304000pt;}
.ws9{word-spacing:-18.176000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.983997pt;}
.wsf{word-spacing:-17.920000pt;}
.ws23{word-spacing:-17.856000pt;}
.wsc{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.728000pt;}
.ws21{word-spacing:-17.664000pt;}
.ws1a{word-spacing:-17.536000pt;}
.ws1c{word-spacing:-17.408000pt;}
.ws12{word-spacing:-17.344000pt;}
.ws10{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.545280pt;}
.ws3{word-spacing:-16.256213pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.246720pt;}
.ws1f{word-spacing:-15.181653pt;}
.ws22{word-spacing:-15.168000pt;}
.ws16{word-spacing:-15.069653pt;}
.ws20{word-spacing:-14.983253pt;}
.wsa{word-spacing:-14.926720pt;}
.ws17{word-spacing:-14.664320pt;}
.ws19{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.120640pt;}
.ws5{word-spacing:0.000000pt;}
._2c{margin-left:-19.385173pt;}
._2b{margin-left:-13.329067pt;}
._22{margin-left:-11.160747pt;}
._38{margin-left:-7.125333pt;}
._35{margin-left:-5.194667pt;}
._1b{margin-left:-4.298667pt;}
._19{margin-left:-3.082667pt;}
._14{margin-left:-2.165333pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._8{width:2.638507pt;}
._1a{width:3.562667pt;}
._3{width:4.672000pt;}
._4{width:5.593600pt;}
._9{width:6.771200pt;}
._10{width:8.148907pt;}
._15{width:9.314133pt;}
._a{width:10.362880pt;}
._f{width:11.490987pt;}
._b{width:13.179733pt;}
._c{width:14.304427pt;}
._d{width:15.301547pt;}
._18{width:16.378453pt;}
._e{width:17.947307pt;}
._1d{width:19.712000pt;}
._6{width:21.196800pt;}
._7{width:22.396160pt;}
._13{width:23.786667pt;}
._23{width:25.493333pt;}
._37{width:26.436267pt;}
._1c{width:27.328000pt;}
._21{width:28.554667pt;}
._20{width:29.696000pt;}
._24{width:30.858667pt;}
._11{width:32.256000pt;}
._12{width:33.162667pt;}
._25{width:34.272000pt;}
._17{width:35.178667pt;}
._16{width:36.416000pt;}
._39{width:37.632000pt;}
._36{width:38.528000pt;}
._1e{width:40.000000pt;}
._1f{width:41.367467pt;}
._2d{width:43.136000pt;}
._2e{width:44.074667pt;}
._27{width:45.056000pt;}
._26{width:46.080000pt;}
._34{width:47.210667pt;}
._32{width:55.289597pt;}
._31{width:56.362667pt;}
._5{width:74.656000pt;}
._30{width:78.976000pt;}
._33{width:79.882667pt;}
._28{width:95.936000pt;}
._29{width:98.880000pt;}
._2a{width:160.618667pt;}
._1{width:439.070293pt;}
._2f{width:750.858667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.840000pt;}
.yb2{bottom:4.160000pt;}
.ya6{bottom:5.920000pt;}
.yf1{bottom:6.240000pt;}
.ye7{bottom:6.400000pt;}
.y69{bottom:8.800000pt;}
.y70{bottom:8.960000pt;}
.yd6{bottom:24.960000pt;}
.yb1{bottom:27.200000pt;}
.yae{bottom:30.560000pt;}
.ya5{bottom:30.720000pt;}
.yf0{bottom:31.520000pt;}
.ye6{bottom:31.680000pt;}
.y73{bottom:36.320000pt;}
.y6f{bottom:36.480000pt;}
.y5{bottom:41.472000pt;}
.y30{bottom:41.632000pt;}
.yd5{bottom:46.080000pt;}
.yad{bottom:55.400000pt;}
.y123{bottom:55.520000pt;}
.yef{bottom:56.800000pt;}
.y2f{bottom:59.392000pt;}
.y4{bottom:62.592000pt;}
.y72{bottom:63.840000pt;}
.y6e{bottom:64.000000pt;}
.yd4{bottom:67.200000pt;}
.y2e{bottom:80.192000pt;}
.yac{bottom:80.200000pt;}
.y131{bottom:80.320000pt;}
.yee{bottom:82.120000pt;}
.y3{bottom:83.232000pt;}
.yd3{bottom:88.320000pt;}
.y76{bottom:91.360000pt;}
.y6d{bottom:91.520000pt;}
.y2d{bottom:99.232000pt;}
.y2{bottom:102.432000pt;}
.y130{bottom:104.960000pt;}
.yab{bottom:105.000000pt;}
.yed{bottom:107.400000pt;}
.yd2{bottom:109.480000pt;}
.y2c{bottom:117.952000pt;}
.y91{bottom:118.880000pt;}
.y75{bottom:118.906667pt;}
.y6c{bottom:119.040000pt;}
.y1{bottom:121.152000pt;}
.yaa{bottom:129.800000pt;}
.yd1{bottom:130.760000pt;}
.yec{bottom:132.680000pt;}
.y87{bottom:133.466667pt;}
.y50{bottom:134.106667pt;}
.y124{bottom:135.866667pt;}
.y5c{bottom:138.746667pt;}
.y4f{bottom:139.386667pt;}
.yb3{bottom:141.306667pt;}
.y90{bottom:146.400000pt;}
.y120{bottom:146.426667pt;}
.y6b{bottom:146.600000pt;}
.y86{bottom:148.826667pt;}
.yd0{bottom:151.880000pt;}
.y58{bottom:153.306667pt;}
.y7f{bottom:153.466667pt;}
.y4e{bottom:153.786667pt;}
.ya9{bottom:154.440000pt;}
.y12f{bottom:154.600000pt;}
.yaf{bottom:155.066667pt;}
.y26{bottom:156.186667pt;}
.yeb{bottom:157.800000pt;}
.y57{bottom:158.586667pt;}
.y5a{bottom:160.186667pt;}
.y85{bottom:164.186667pt;}
.y56{bottom:172.346667pt;}
.ya0{bottom:172.826667pt;}
.ycf{bottom:173.000000pt;}
.y11f{bottom:173.946667pt;}
.y8f{bottom:174.120000pt;}
.y55{bottom:177.626667pt;}
.ya8{bottom:179.240000pt;}
.y12e{bottom:179.400000pt;}
.y84{bottom:179.546667pt;}
.y7e{bottom:180.986667pt;}
.yea{bottom:183.080000pt;}
.y25{bottom:183.706667pt;}
.y83{bottom:184.186667pt;}
.y59{bottom:187.706667pt;}
.y54{bottom:191.546667pt;}
.yce{bottom:194.120000pt;}
.y82{bottom:196.026667pt;}
.y53{bottom:196.186667pt;}
.y11e{bottom:201.466667pt;}
.y8e{bottom:201.640000pt;}
.y12d{bottom:204.200000pt;}
.ya7{bottom:205.306667pt;}
.ye9{bottom:208.360000pt;}
.y7d{bottom:208.506667pt;}
.y67{bottom:210.746667pt;}
.y24{bottom:211.226667pt;}
.y9f{bottom:213.306667pt;}
.y4d{bottom:215.226667pt;}
.ycd{bottom:215.240000pt;}
.y102{bottom:217.146667pt;}
.y11d{bottom:228.986667pt;}
.y12c{bottom:229.000000pt;}
.y8d{bottom:229.160000pt;}
.y66{bottom:229.786667pt;}
.ya3{bottom:234.426667pt;}
.y7c{bottom:236.026667pt;}
.ycc{bottom:236.360000pt;}
.y23{bottom:238.746667pt;}
.y9e{bottom:240.826667pt;}
.y4c{bottom:242.746667pt;}
.y101{bottom:244.666667pt;}
.y65{bottom:248.986667pt;}
.ya2{bottom:249.466667pt;}
.y12b{bottom:253.640000pt;}
.y64{bottom:254.306667pt;}
.y11c{bottom:256.546667pt;}
.y8c{bottom:256.680000pt;}
.ycb{bottom:257.480000pt;}
.y7b{bottom:263.746667pt;}
.y22{bottom:266.306667pt;}
.y63{bottom:268.066667pt;}
.y9d{bottom:268.386667pt;}
.y4b{bottom:270.306667pt;}
.y100{bottom:272.226667pt;}
.y12a{bottom:278.440000pt;}
.yca{bottom:278.600000pt;}
.y11b{bottom:284.066667pt;}
.y8b{bottom:284.200000pt;}
.y62{bottom:287.266667pt;}
.y7a{bottom:291.266667pt;}
.y21{bottom:293.986667pt;}
.y9c{bottom:295.906667pt;}
.y4a{bottom:297.826667pt;}
.yc9{bottom:299.720000pt;}
.yff{bottom:299.746667pt;}
.y129{bottom:303.240000pt;}
.y61{bottom:306.306667pt;}
.y60{bottom:310.946667pt;}
.y8a{bottom:311.720000pt;}
.y11a{bottom:311.746667pt;}
.y79{bottom:318.786667pt;}
.yc8{bottom:320.840000pt;}
.y20{bottom:321.506667pt;}
.y9b{bottom:323.426667pt;}
.y48{bottom:325.506667pt;}
.y5f{bottom:325.986667pt;}
.yfe{bottom:327.426667pt;}
.y128{bottom:328.040000pt;}
.y49{bottom:332.226667pt;}
.y119{bottom:339.266667pt;}
.yc7{bottom:342.120000pt;}
.y78{bottom:346.306667pt;}
.y1f{bottom:348.066667pt;}
.y9a{bottom:350.946667pt;}
.y127{bottom:352.840000pt;}
.y47{bottom:353.026667pt;}
.yfd{bottom:354.946667pt;}
.y80{bottom:359.746667pt;}
.yc6{bottom:363.266667pt;}
.y118{bottom:366.786667pt;}
.y1e{bottom:373.346667pt;}
.y77{bottom:373.826667pt;}
.y126{bottom:377.506667pt;}
.y99{bottom:378.466667pt;}
.y46{bottom:380.546667pt;}
.yfc{bottom:382.466667pt;}
.yc5{bottom:384.386667pt;}
.y74{bottom:393.986667pt;}
.y117{bottom:394.306667pt;}
.y1d{bottom:398.626667pt;}
.y125{bottom:402.306667pt;}
.ya4{bottom:404.066667pt;}
.yc4{bottom:405.506667pt;}
.y98{bottom:406.146667pt;}
.y45{bottom:408.066667pt;}
.yfb{bottom:409.986667pt;}
.y5e{bottom:414.786667pt;}
.y116{bottom:421.826667pt;}
.y1c{bottom:423.906667pt;}
.yc3{bottom:426.626667pt;}
.y97{bottom:433.666667pt;}
.y44{bottom:435.586667pt;}
.yfa{bottom:437.506667pt;}
.yc2{bottom:447.746667pt;}
.y1b{bottom:449.186667pt;}
.y115{bottom:449.346667pt;}
.y96{bottom:461.186667pt;}
.y43{bottom:463.106667pt;}
.yf9{bottom:465.026667pt;}
.ye4{bottom:466.786667pt;}
.yc1{bottom:468.866667pt;}
.y1a{bottom:474.306667pt;}
.y114{bottom:476.866667pt;}
.y95{bottom:488.706667pt;}
.ye3{bottom:489.666667pt;}
.yc0{bottom:489.986667pt;}
.y42{bottom:490.626667pt;}
.yf8{bottom:492.706667pt;}
.y5b{bottom:497.346667pt;}
.y19{bottom:499.586667pt;}
.y113{bottom:504.573333pt;}
.ybf{bottom:511.106667pt;}
.ye2{bottom:512.706667pt;}
.y94{bottom:516.253333pt;}
.y41{bottom:518.333333pt;}
.yf6{bottom:520.253333pt;}
.y18{bottom:524.893333pt;}
.yf7{bottom:526.973333pt;}
.y112{bottom:532.093333pt;}
.ybe{bottom:532.226667pt;}
.y71{bottom:533.053333pt;}
.ye1{bottom:535.586667pt;}
.y93{bottom:543.773333pt;}
.y40{bottom:545.853333pt;}
.yf5{bottom:547.773333pt;}
.y17{bottom:550.173333pt;}
.ybd{bottom:553.506667pt;}
.y122{bottom:558.013333pt;}
.ye0{bottom:558.626667pt;}
.y111{bottom:559.613333pt;}
.y92{bottom:571.293333pt;}
.y3f{bottom:573.373333pt;}
.ybc{bottom:574.626667pt;}
.yf4{bottom:575.293333pt;}
.y16{bottom:575.453333pt;}
.ydf{bottom:581.506667pt;}
.y110{bottom:587.133333pt;}
.y89{bottom:590.813333pt;}
.ybb{bottom:595.746667pt;}
.yf3{bottom:600.413333pt;}
.y15{bottom:600.573333pt;}
.y3e{bottom:600.893333pt;}
.yde{bottom:604.546667pt;}
.y81{bottom:607.613333pt;}
.y10f{bottom:614.653333pt;}
.y6a{bottom:616.893333pt;}
.yba{bottom:616.906667pt;}
.yf2{bottom:619.933333pt;}
.y14{bottom:625.853333pt;}
.ydd{bottom:627.466667pt;}
.y3d{bottom:628.413333pt;}
.yb9{bottom:638.026667pt;}
.y10e{bottom:642.173333pt;}
.ydc{bottom:650.506667pt;}
.y13{bottom:651.133333pt;}
.y3c{bottom:655.933333pt;}
.yb8{bottom:659.146667pt;}
.ya1{bottom:662.653333pt;}
.y121{bottom:665.213333pt;}
.y10d{bottom:669.693333pt;}
.ye8{bottom:671.133333pt;}
.ydb{bottom:673.386667pt;}
.y12{bottom:676.413333pt;}
.yb7{bottom:680.266667pt;}
.y3b{bottom:683.613333pt;}
.yda{bottom:696.426667pt;}
.y10c{bottom:697.373333pt;}
.yb6{bottom:701.386667pt;}
.y11{bottom:701.693333pt;}
.y3a{bottom:711.133333pt;}
.yd9{bottom:719.306667pt;}
.yb5{bottom:722.506667pt;}
.y10b{bottom:724.893333pt;}
.y10{bottom:727.773333pt;}
.y39{bottom:738.653333pt;}
.yd8{bottom:742.186667pt;}
.yb4{bottom:743.626667pt;}
.y10a{bottom:752.413333pt;}
.yf{bottom:755.333333pt;}
.y38{bottom:766.213333pt;}
.y109{bottom:779.973333pt;}
.ye{bottom:782.853333pt;}
.y68{bottom:783.653333pt;}
.y37{bottom:793.733333pt;}
.y108{bottom:807.493333pt;}
.yd{bottom:810.373333pt;}
.y36{bottom:821.253333pt;}
.y52{bottom:827.973333pt;}
.y107{bottom:832.613333pt;}
.yc{bottom:837.893333pt;}
.y35{bottom:848.773333pt;}
.y106{bottom:857.893333pt;}
.yb{bottom:866.693333pt;}
.y34{bottom:876.453333pt;}
.y5d{bottom:883.173333pt;}
.ya{bottom:897.573333pt;}
.ye5{bottom:899.013333pt;}
.yb0{bottom:903.333333pt;}
.y33{bottom:903.973333pt;}
.y105{bottom:908.293333pt;}
.y88{bottom:922.053333pt;}
.y9{bottom:925.253333pt;}
.y32{bottom:931.493333pt;}
.y104{bottom:933.573333pt;}
.y51{bottom:938.213333pt;}
.y8{bottom:952.773333pt;}
.y103{bottom:958.853333pt;}
.y31{bottom:959.013333pt;}
.y7{bottom:980.293333pt;}
.y2b{bottom:981.733333pt;}
.y2a{bottom:1001.893333pt;}
.y6{bottom:1007.840000pt;}
.y29{bottom:1023.200000pt;}
.y28{bottom:1046.080000pt;}
.y27{bottom:1069.120000pt;}
.ha{height:27.171875pt;}
.h10{height:27.520000pt;}
.h9{height:31.519375pt;}
.hb{height:33.918750pt;}
.hf{height:44.156250pt;}
.he{height:44.531250pt;}
.h7{height:45.105313pt;}
.h18{height:45.920000pt;}
.h16{height:49.600000pt;}
.h3{height:49.996250pt;}
.h1a{height:50.560000pt;}
.hc{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:54.343750pt;}
.h4{height:55.281250pt;}
.h8{height:58.563750pt;}
.h6{height:63.582187pt;}
.h12{height:65.781915pt;}
.hd{height:66.625000pt;}
.h1c{height:74.400000pt;}
.h13{height:82.560000pt;}
.h14{height:137.626667pt;}
.h11{height:165.306667pt;}
.h17{height:198.106667pt;}
.h1b{height:227.226667pt;}
.h15{height:330.426667pt;}
.h1d{height:421.186667pt;}
.h19{height:760.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:74.400000pt;}
.w15{width:79.200000pt;}
.wd{width:81.440000pt;}
.w9{width:82.400000pt;}
.w19{width:85.440000pt;}
.w17{width:87.040000pt;}
.w18{width:114.592000pt;}
.w16{width:116.352000pt;}
.wa{width:116.672000pt;}
.we{width:117.632000pt;}
.wc{width:124.672000pt;}
.w1c{width:165.946667pt;}
.w1b{width:173.146667pt;}
.w11{width:188.026667pt;}
.w12{width:196.186667pt;}
.w10{width:197.466667pt;}
.w8{width:199.706667pt;}
.w14{width:200.666667pt;}
.w13{width:202.266667pt;}
.wf{width:206.586667pt;}
.w1a{width:262.586667pt;}
.w5{width:297.986667pt;}
.w6{width:299.866667pt;}
.w7{width:300.066667pt;}
.w4{width:300.506667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.560000pt;}
.x38{left:8.640000pt;}
.x1d{left:17.760000pt;}
.x39{left:28.160000pt;}
.x30{left:30.720000pt;}
.x1e{left:36.634667pt;}
.x1c{left:92.826667pt;}
.x1{left:96.031988pt;}
.x19{left:97.312000pt;}
.x1a{left:111.354667pt;}
.x5{left:128.671988pt;}
.x4{left:133.786655pt;}
.xc{left:137.786655pt;}
.x20{left:141.306643pt;}
.x3{left:143.226655pt;}
.x21{left:145.946655pt;}
.xd{left:148.826643pt;}
.x24{left:149.946655pt;}
.xe{left:153.466655pt;}
.x28{left:155.066643pt;}
.x3b{left:156.026655pt;}
.x29{left:164.346655pt;}
.x33{left:176.506667pt;}
.x2b{left:179.706667pt;}
.x3c{left:200.026655pt;}
.x15{left:204.346643pt;}
.x16{left:208.986655pt;}
.x13{left:225.946643pt;}
.x14{left:230.586655pt;}
.x2{left:247.706655pt;}
.x11{left:277.666643pt;}
.x12{left:282.306655pt;}
.xb{left:288.066655pt;}
.x31{left:293.666667pt;}
.x2a{left:297.026667pt;}
.x9{left:303.426643pt;}
.x2e{left:304.546667pt;}
.xa{left:308.066655pt;}
.x3d{left:351.426655pt;}
.x36{left:360.546667pt;}
.x2c{left:372.066667pt;}
.x22{left:376.066643pt;}
.x23{left:380.706655pt;}
.x25{left:397.186667pt;}
.x1b{left:399.106667pt;}
.x3f{left:420.413322pt;}
.x26{left:431.453310pt;}
.x27{left:440.733322pt;}
.x18{left:493.373322pt;}
.x32{left:496.573333pt;}
.x7{left:497.533322pt;}
.x6{left:500.093322pt;}
.x2f{left:502.973333pt;}
.x3e{left:505.053322pt;}
.x40{left:517.053322pt;}
.x42{left:523.933322pt;}
.x37{left:534.493333pt;}
.x41{left:564.093322pt;}
.x3a{left:572.413322pt;}
.x2d{left:579.453333pt;}
.x34{left:582.653333pt;}
.xf{left:605.413310pt;}
.x10{left:610.053322pt;}
.x35{left:684.453310pt;}
.x17{left:693.253310pt;}
.x8{left:697.893322pt;}
}




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