
    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_808d4dce2c36d9277d7d5b71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c60b85ed8588265b2fecd443.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2b58f99cb4e6791ce86da9a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8b2e3f6e4fafd9aafdd95760.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_daa83d82279ac141f16fcf48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.903000;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_4bc3bdf5ea49954bdbe0ece5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.288000;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_73aec29228d6cfe4d5e14285.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.642000;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_aa2c71d3b0af74279d2bf4da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.426000;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_86686c7dfb11a291775c0a51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706000;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_a87b946d956e03d51bb91b15.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.356000;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;}
.m6{transform:matrix(0.145641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145641,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240891,0.000000,-0.066870,0.240891,0,0);-ms-transform:matrix(0.240891,0.000000,-0.066870,0.240891,0,0);-webkit-transform:matrix(0.240891,0.000000,-0.066870,0.240891,0,0);}
.m1{transform:matrix(0.240896,0.000000,-0.066851,0.240896,0,0);-ms-transform:matrix(0.240896,0.000000,-0.066851,0.240896,0,0);-webkit-transform:matrix(0.240896,0.000000,-0.066851,0.240896,0,0);}
.m2{transform:matrix(0.245668,0.000000,-0.046337,0.245668,0,0);-ms-transform:matrix(0.245668,0.000000,-0.046337,0.245668,0,0);-webkit-transform:matrix(0.245668,0.000000,-0.046337,0.245668,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-35.190000px;}
.v6{vertical-align:-25.503945px;}
.ve{vertical-align:-23.814000px;}
.va{vertical-align:-18.553093px;}
.v5{vertical-align:-15.971396px;}
.v4{vertical-align:-12.501493px;}
.v9{vertical-align:-5.022000px;}
.v7{vertical-align:-3.941256px;}
.v3{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.450000px;}
.v2{vertical-align:12.504000px;}
.v10{vertical-align:19.883666px;}
.vd{vertical-align:23.807610px;}
.vb{vertical-align:36.312000px;}
.v8{vertical-align:43.691666px;}
.vc{vertical-align:47.232000px;}
.ls6c{letter-spacing:-0.005388px;}
.ls3a{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.716556px;}
.ls42{letter-spacing:0.826341px;}
.ls5b{letter-spacing:0.827541px;}
.ls51{letter-spacing:0.827652px;}
.ls53{letter-spacing:0.828552px;}
.ls31{letter-spacing:0.830451px;}
.ls20{letter-spacing:0.831000px;}
.ls43{letter-spacing:0.832341px;}
.ls2a{letter-spacing:0.832980px;}
.lsa{letter-spacing:0.833511px;}
.ls7{letter-spacing:0.833652px;}
.ls2{letter-spacing:0.834009px;}
.ls2c{letter-spacing:0.836451px;}
.ls21{letter-spacing:0.837000px;}
.ls26{letter-spacing:0.838200px;}
.ls25{letter-spacing:0.839511px;}
.ls12{letter-spacing:0.842040px;}
.ls6a{letter-spacing:0.869896px;}
.ls4f{letter-spacing:1.129128px;}
.ls11{letter-spacing:1.181562px;}
.ls59{letter-spacing:1.182371px;}
.ls6{letter-spacing:1.183739px;}
.ls15{letter-spacing:1.185386px;}
.ls61{letter-spacing:1.185600px;}
.lsc{letter-spacing:1.185917px;}
.ls56{letter-spacing:1.186508px;}
.ls19{letter-spacing:1.190263px;}
.ls27{letter-spacing:1.191134px;}
.ls3{letter-spacing:1.191373px;}
.ls58{letter-spacing:1.191600px;}
.ls5d{letter-spacing:1.192018px;}
.ls13{letter-spacing:1.192037px;}
.ls52{letter-spacing:1.192608px;}
.ls29{letter-spacing:1.197134px;}
.ls3b{letter-spacing:1.236397px;}
.ls1c{letter-spacing:1.784066px;}
.ls17{letter-spacing:3.678587px;}
.ls55{letter-spacing:4.421970px;}
.ls3d{letter-spacing:4.526021px;}
.ls4{letter-spacing:4.759506px;}
.ls60{letter-spacing:4.773400px;}
.ls62{letter-spacing:4.773878px;}
.ls9{letter-spacing:4.777466px;}
.ls1a{letter-spacing:6.207000px;}
.lsd{letter-spacing:6.207501px;}
.lse{letter-spacing:6.561533px;}
.ls18{letter-spacing:6.619020px;}
.ls1d{letter-spacing:7.160213px;}
.ls1b{letter-spacing:10.153613px;}
.ls41{letter-spacing:12.789000px;}
.ls5e{letter-spacing:12.791541px;}
.ls50{letter-spacing:12.793020px;}
.ls40{letter-spacing:12.795000px;}
.ls5{letter-spacing:13.147013px;}
.ls5c{letter-spacing:15.816546px;}
.ls47{letter-spacing:16.326004px;}
.ls8{letter-spacing:16.733106px;}
.ls16{letter-spacing:16.936657px;}
.ls4c{letter-spacing:17.702968px;}
.ls28{letter-spacing:17.707020px;}
.ls64{letter-spacing:17.876585px;}
.ls6b{letter-spacing:17.925876px;}
.ls69{letter-spacing:17.931264px;}
.ls2e{letter-spacing:18.128030px;}
.ls63{letter-spacing:18.220980px;}
.ls45{letter-spacing:18.247766px;}
.ls65{letter-spacing:18.319608px;}
.ls35{letter-spacing:18.517172px;}
.ls46{letter-spacing:18.636908px;}
.ls49{letter-spacing:19.930057px;}
.ls68{letter-spacing:20.426962px;}
.ls1f{letter-spacing:21.121430px;}
.ls3c{letter-spacing:21.426757px;}
.ls38{letter-spacing:21.720110px;}
.ls5f{letter-spacing:22.109252px;}
.ls0{letter-spacing:22.294843px;}
.ls4b{letter-spacing:22.348724px;}
.ls39{letter-spacing:22.414579px;}
.ls3f{letter-spacing:23.384441px;}
.ls14{letter-spacing:23.827464px;}
.lsf{letter-spacing:23.845424px;}
.ls23{letter-spacing:23.965160px;}
.ls10{letter-spacing:24.132791px;}
.ls1{letter-spacing:24.491999px;}
.ls24{letter-spacing:25.084692px;}
.ls34{letter-spacing:25.204428px;}
.ls1e{letter-spacing:25.425940px;}
.ls4d{letter-spacing:25.629491px;}
.ls2f{letter-spacing:25.713306px;}
.ls67{letter-spacing:26.138369px;}
.ls66{letter-spacing:27.329742px;}
.ls4e{letter-spacing:27.706910px;}
.ls48{letter-spacing:27.754805px;}
.ls37{letter-spacing:28.078092px;}
.ls30{letter-spacing:40.835963px;}
.lsb{letter-spacing:44.679488px;}
.ls3e{letter-spacing:54.455933px;}
.ls57{letter-spacing:168.630196px;}
.ls22{letter-spacing:217.272946px;}
.ls2b{letter-spacing:291.940315px;}
.ls32{letter-spacing:293.454976px;}
.ls44{letter-spacing:303.249380px;}
.ls2d{letter-spacing:330.058271px;}
.ls4a{letter-spacing:352.185484px;}
.ls33{letter-spacing:401.079679px;}
.ls5a{letter-spacing:419.058040px;}
.ls36{letter-spacing:452.464384px;}
.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;}
}
.ws35{word-spacing:-36.393757px;}
.ws87{word-spacing:-31.395876px;}
.ws14{word-spacing:-28.114013px;}
.ws1b{word-spacing:-21.528533px;}
.ws1a{word-spacing:-19.744466px;}
.ws25{word-spacing:-16.158373px;}
.wsc{word-spacing:-14.967000px;}
.ws4a{word-spacing:-14.593500px;}
.ws3{word-spacing:-13.470000px;}
.ws13{word-spacing:-11.311509px;}
.ws15{word-spacing:-4.202734px;}
.ws6{word-spacing:-0.010776px;}
.ws5{word-spacing:-0.005388px;}
.ws4{word-spacing:0.000000px;}
.ws41{word-spacing:0.425063px;}
.ws54{word-spacing:0.526838px;}
.ws5f{word-spacing:0.628614px;}
.ws21{word-spacing:0.772297px;}
.ws22{word-spacing:0.778284px;}
.ws76{word-spacing:0.814205px;}
.ws65{word-spacing:1.119532px;}
.ws6b{word-spacing:1.221307px;}
.ws55{word-spacing:1.359004px;}
.ws64{word-spacing:1.376964px;}
.wsa{word-spacing:1.784066px;}
.ws2d{word-spacing:1.903802px;}
.ws31{word-spacing:1.963670px;}
.ws32{word-spacing:1.969657px;}
.ws23{word-spacing:2.023538px;}
.ws6f{word-spacing:2.161235px;}
.ws26{word-spacing:2.227090px;}
.ws86{word-spacing:2.327616px;}
.ws6a{word-spacing:2.412680px;}
.ws1c{word-spacing:2.448601px;}
.ws5d{word-spacing:2.735968px;}
.ws10{word-spacing:2.807809px;}
.ws6c{word-spacing:2.903598px;}
.ws6d{word-spacing:2.909585px;}
.ws79{word-spacing:2.957479px;}
.ws18{word-spacing:3.023334px;}
.ws19{word-spacing:3.029321px;}
.ws2a{word-spacing:3.214912px;}
.ws50{word-spacing:3.262806px;}
.ws51{word-spacing:3.280766px;}
.ws77{word-spacing:3.382542px;}
.ws82{word-spacing:3.383664px;}
.ws53{word-spacing:3.669908px;}
.ws63{word-spacing:3.909380px;}
.ws7{word-spacing:3.927852px;}
.ws6e{word-spacing:4.094971px;}
.ws78{word-spacing:4.268588px;}
.ws4b{word-spacing:4.423548px;}
.ws47{word-spacing:4.436219px;}
.ws4c{word-spacing:4.445100px;}
.ws2{word-spacing:4.455876px;}
.ws9{word-spacing:4.488204px;}
.ws75{word-spacing:4.609836px;}
.wse{word-spacing:4.639770px;}
.ws4d{word-spacing:4.897202px;}
.ws2b{word-spacing:4.945097px;}
.ws36{word-spacing:4.957070px;}
.ws1{word-spacing:4.963057px;}
.ws8{word-spacing:5.064720px;}
.ws3f{word-spacing:5.082793px;}
.ws2e{word-spacing:5.100754px;}
.ws66{word-spacing:5.268384px;}
.ws11{word-spacing:5.507856px;}
.wsd{word-spacing:5.711407px;}
.ws0{word-spacing:5.948683px;}
.ws69{word-spacing:5.998774px;}
.ws34{word-spacing:6.459757px;}
.ws44{word-spacing:6.747124px;}
.ws45{word-spacing:6.753110px;}
.ws3b{word-spacing:7.166200px;}
.ws3c{word-spacing:7.178173px;}
.wsb{word-spacing:7.327843px;}
.ws5c{word-spacing:7.381724px;}
.ws39{word-spacing:7.429619px;}
.ws48{word-spacing:7.447579px;}
.ws80{word-spacing:7.494708px;}
.ws7f{word-spacing:7.500096px;}
.ws1d{word-spacing:7.657117px;}
.ws1e{word-spacing:7.669091px;}
.ws71{word-spacing:7.734946px;}
.ws33{word-spacing:7.854682px;}
.ws72{word-spacing:7.938497px;}
.ws16{word-spacing:7.968431px;}
.ws17{word-spacing:7.974418px;}
.ws70{word-spacing:8.076193px;}
.ws2f{word-spacing:8.261784px;}
.ws3e{word-spacing:8.285731px;}
.ws3d{word-spacing:8.297705px;}
.ws4e{word-spacing:8.417441px;}
.ws85{word-spacing:8.588472px;}
.ws52{word-spacing:8.656913px;}
.ws29{word-spacing:8.926319px;}
.ws27{word-spacing:8.980200px;}
.ws28{word-spacing:8.998160px;}
.ws40{word-spacing:9.046055px;}
.ws5e{word-spacing:9.471118px;}
.wsf{word-spacing:9.524999px;}
.ws38{word-spacing:9.554933px;}
.ws46{word-spacing:9.878220px;}
.ws67{word-spacing:10.357164px;}
.ws24{word-spacing:10.458940px;}
.ws4f{word-spacing:11.051633px;}
.ws73{word-spacing:11.165382px;}
.ws74{word-spacing:11.171369px;}
.ws49{word-spacing:11.578471px;}
.ws5b{word-spacing:11.716168px;}
.ws37{word-spacing:12.105310px;}
.ws1f{word-spacing:12.542346px;}
.ws20{word-spacing:12.548333px;}
.ws60{word-spacing:12.727937px;}
.ws62{word-spacing:12.733924px;}
.ws61{word-spacing:12.739910px;}
.ws59{word-spacing:12.769844px;}
.ws5a{word-spacing:12.787805px;}
.ws83{word-spacing:12.823440px;}
.ws42{word-spacing:13.111092px;}
.ws7d{word-spacing:13.211376px;}
.ws68{word-spacing:13.386485px;}
.ws2c{word-spacing:14.302465px;}
.ws12{word-spacing:15.152591px;}
.ws81{word-spacing:15.953868px;}
.ws43{word-spacing:15.954822px;}
.ws30{word-spacing:15.966796px;}
.ws84{word-spacing:16.530384px;}
.ws7e{word-spacing:17.246988px;}
.ws7b{word-spacing:19.163747px;}
.ws7a{word-spacing:19.175720px;}
.ws7c{word-spacing:19.181707px;}
.ws57{word-spacing:19.995912px;}
.ws56{word-spacing:21.181298px;}
.ws58{word-spacing:21.193272px;}
.ws3a{word-spacing:24.677590px;}
.ws88{word-spacing:1766.536620px;}
._12{margin-left:-1630.074744px;}
._e{margin-left:-21.450704px;}
._19{margin-left:-17.338584px;}
._0{margin-left:-7.909584px;}
._4{margin-left:-5.975292px;}
._1{margin-left:-3.987120px;}
._2{margin-left:-1.993560px;}
._f{width:1.005694px;}
._9{width:2.646166px;}
._13{width:5.370160px;}
._b{width:6.549559px;}
._14{width:13.422361px;}
._11{width:14.962476px;}
._3{width:15.991584px;}
._a{width:17.194090px;}
._7{width:18.960372px;}
._c{width:20.570645px;}
._15{width:21.917675px;}
._5{width:23.362368px;}
._8{width:26.880732px;}
._16{width:27.969108px;}
._18{width:30.986388px;}
._d{width:32.825624px;}
._17{width:39.693396px;}
._6{width:563.288460px;}
._10{width:1305.038256px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:41.910000px;}
.fs9{font-size:43.494805px;}
.fs3{font-size:53.880000px;}
.fsd{font-size:55.668000px;}
.fsb{font-size:58.374000px;}
.fs1{font-size:59.868000px;}
.fs7{font-size:60.923614px;}
.fs4{font-size:62.130527px;}
.fs2{font-size:62.862000px;}
.fs6{font-size:64.956000px;}
.fs0{font-size:71.844000px;}
.fsc{font-size:123.324000px;}
.fs8{font-size:161.640000px;}
.fsa{font-size:170.604000px;}
.fsf{font-size:193.362000px;}
.fse{font-size:228.690000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:50.700051px;}
.yeb{bottom:50.705937px;}
.y6b{bottom:86.095100px;}
.y6c{bottom:87.876000px;}
.y6a{bottom:104.893652px;}
.y69{bottom:122.105702px;}
.y68{bottom:139.317752px;}
.y38{bottom:145.273500px;}
.y37{bottom:157.079525px;}
.y39{bottom:157.080000px;}
.y67{bottom:158.116304px;}
.y66{bottom:175.328354px;}
.y36{bottom:187.562814px;}
.y65{bottom:192.540404px;}
.y35{bottom:204.774864px;}
.y64{bottom:209.752454px;}
.ye1{bottom:214.103772px;}
.y33{bottom:222.852864px;}
.y34{bottom:222.855000px;}
.ye9{bottom:226.079949px;}
.y63{bottom:226.964504px;}
.ye0{bottom:231.315738px;}
.y31{bottom:240.932178px;}
.y32{bottom:240.933000px;}
.ye8{bottom:244.039500px;}
.y62{bottom:244.176554px;}
.ydf{bottom:248.527704px;}
.y30{bottom:259.012314px;}
.ye7{bottom:261.999051px;}
.yde{bottom:265.739670px;}
.y61{bottom:270.969000px;}
.y2f{bottom:276.224364px;}
.ye6{bottom:279.958602px;}
.y5f{bottom:280.408500px;}
.y5e{bottom:281.843347px;}
.y60{bottom:281.845500px;}
.ydd{bottom:282.951636px;}
.y2d{bottom:294.303864px;}
.y2e{bottom:294.304500px;}
.ye5{bottom:297.918153px;}
.ydc{bottom:300.163602px;}
.y2c{bottom:309.258000px;}
.y2a{bottom:312.382773px;}
.y2b{bottom:312.384000px;}
.ye4{bottom:315.877704px;}
.ydb{bottom:317.375568px;}
.y5d{bottom:318.011103px;}
.y29{bottom:329.594823px;}
.ye3{bottom:333.837255px;}
.yda{bottom:334.587534px;}
.y5c{bottom:336.091239px;}
.y28{bottom:346.806873px;}
.ye2{bottom:351.796806px;}
.yd9{bottom:351.799500px;}
.y5b{bottom:353.303289px;}
.y5a{bottom:370.515339px;}
.y27{bottom:371.970000px;}
.y25{bottom:375.095372px;}
.y26{bottom:375.096000px;}
.y59{bottom:387.727389px;}
.y24{bottom:405.696900px;}
.y56{bottom:414.052500px;}
.y52{bottom:416.688000px;}
.y54{bottom:417.696000px;}
.y23{bottom:422.908950px;}
.y55{bottom:426.579000px;}
.y58{bottom:428.496000px;}
.y51{bottom:428.496057px;}
.y53{bottom:439.645500px;}
.y22{bottom:440.119092px;}
.y57{bottom:446.397000px;}
.yd8{bottom:452.097564px;}
.y9f{bottom:453.555201px;}
.y21{bottom:458.199228px;}
.y50{bottom:467.274057px;}
.yd7{bottom:469.309614px;}
.y9e{bottom:470.767251px;}
.y20{bottom:476.279364px;}
.yd6{bottom:486.521664px;}
.y9d{bottom:488.847387px;}
.y4c{bottom:493.599000px;}
.y1f{bottom:494.357814px;}
.yd5{bottom:503.733714px;}
.y4f{bottom:504.993000px;}
.y9c{bottom:506.059437px;}
.y4b{bottom:506.124000px;}
.y4a{bottom:508.117847px;}
.y4e{bottom:508.119000px;}
.y1e{bottom:511.569864px;}
.y9b{bottom:524.139573px;}
.y4d{bottom:525.946186px;}
.y1d{bottom:529.650000px;}
.y1b{bottom:529.651349px;}
.yd4{bottom:532.919364px;}
.y1c{bottom:536.025986px;}
.y9a{bottom:541.351623px;}
.y49{bottom:545.981364px;}
.y19{bottom:547.950873px;}
.y1a{bottom:547.951500px;}
.yd2{bottom:550.998864px;}
.yd3{bottom:550.999500px;}
.y99{bottom:558.563673px;}
.y48{bottom:560.937000px;}
.y46{bottom:564.060228px;}
.y47{bottom:564.061500px;}
.yd0{bottom:569.075640px;}
.yd1{bottom:569.079000px;}
.y18{bottom:573.114000px;}
.y17{bottom:576.240000px;}
.y45{bottom:582.140364px;}
.ycf{bottom:586.287690px;}
.y96{bottom:588.347816px;}
.y98{bottom:588.349500px;}
.y97{bottom:592.986089px;}
.y43{bottom:600.219824px;}
.y44{bottom:600.220500px;}
.yce{bottom:603.499740px;}
.y16{bottom:605.973150px;}
.y42{bottom:617.431874px;}
.ycd{bottom:620.711790px;}
.y15{bottom:623.185200px;}
.y95{bottom:624.217728px;}
.y41{bottom:634.643924px;}
.ycc{bottom:637.923840px;}
.y14{bottom:640.397250px;}
.y94{bottom:642.297864px;}
.y40{bottom:651.855974px;}
.ycb{bottom:655.135890px;}
.y13{bottom:657.609300px;}
.y92{bottom:660.376454px;}
.y93{bottom:660.378000px;}
.y3f{bottom:669.068024px;}
.yca{bottom:673.216026px;}
.y12{bottom:674.821350px;}
.y91{bottom:677.588504px;}
.y3e{bottom:686.280074px;}
.yc9{bottom:689.679726px;}
.y11{bottom:692.033400px;}
.y90{bottom:694.800554px;}
.yc8{bottom:707.011512px;}
.y10{bottom:709.245450px;}
.y8f{bottom:712.012604px;}
.y3b{bottom:712.605000px;}
.y3d{bottom:721.287000px;}
.y3c{bottom:724.411500px;}
.y3a{bottom:724.414612px;}
.yc7{bottom:725.061714px;}
.yf{bottom:726.457500px;}
.y8e{bottom:729.224654px;}
.yc6{bottom:742.393557px;}
.y8d{bottom:746.436704px;}
.yc5{bottom:768.437634px;}
.y8c{bottom:775.767000px;}
.ye{bottom:776.596653px;}
.y8a{bottom:778.131000px;}
.y8b{bottom:787.575000px;}
.y89{bottom:787.576012px;}
.yc0{bottom:791.167500px;}
.yc4{bottom:794.812500px;}
.ybe{bottom:802.843500px;}
.ybf{bottom:803.694000px;}
.yc2{bottom:805.689000px;}
.yd{bottom:805.782102px;}
.yc3{bottom:811.641000px;}
.y88{bottom:812.964000px;}
.yc{bottom:822.994068px;}
.yc1{bottom:823.513500px;}
.y87{bottom:824.772000px;}
.yb{bottom:840.206034px;}
.ybd{bottom:842.054139px;}
.y85{bottom:850.159500px;}
.y83{bottom:851.197500px;}
.y84{bottom:852.523500px;}
.ya{bottom:857.418000px;}
.ybc{bottom:858.517839px;}
.y86{bottom:858.843000px;}
.y82{bottom:861.967500px;}
.ybb{bottom:874.981539px;}
.yba{bottom:891.445239px;}
.y80{bottom:898.321500px;}
.y7d{bottom:899.359500px;}
.y9{bottom:900.074034px;}
.y7e{bottom:900.685500px;}
.y81{bottom:907.005000px;}
.y7b{bottom:910.129444px;}
.y7f{bottom:910.129500px;}
.y7c{bottom:914.767717px;}
.yb5{bottom:917.022000px;}
.y8{bottom:917.286000px;}
.yb3{bottom:920.589000px;}
.yb9{bottom:927.405000px;}
.yb4{bottom:929.548500px;}
.yb2{bottom:931.465490px;}
.yb7{bottom:931.465500px;}
.y7{bottom:933.001500px;}
.yb8{bottom:937.419000px;}
.yb6{bottom:949.366500px;}
.y7a{bottom:952.325907px;}
.yb0{bottom:968.041500px;}
.y6{bottom:968.173500px;}
.y79{bottom:969.537957px;}
.ya9{bottom:970.677000px;}
.yac{bottom:971.608500px;}
.yaa{bottom:978.424500px;}
.yaf{bottom:980.568000px;}
.ya8{bottom:982.484390px;}
.yad{bottom:982.485000px;}
.y5{bottom:983.889000px;}
.y78{bottom:986.750007px;}
.yae{bottom:988.438500px;}
.yab{bottom:993.558000px;}
.yb1{bottom:1000.386000px;}
.y74{bottom:1015.318500px;}
.ya7{bottom:1018.927539px;}
.y4{bottom:1019.061534px;}
.y77{bottom:1026.714000px;}
.y73{bottom:1027.845000px;}
.y71{bottom:1029.839333px;}
.y76{bottom:1029.840000px;}
.y72{bottom:1034.477607px;}
.ya6{bottom:1035.391239px;}
.y3{bottom:1036.273500px;}
.y75{bottom:1047.665686px;}
.y2{bottom:1051.987500px;}
.ya3{bottom:1060.968000px;}
.y70{bottom:1072.192950px;}
.ya2{bottom:1073.494500px;}
.ya5{bottom:1075.411500px;}
.ya0{bottom:1075.413097px;}
.ya1{bottom:1081.365000px;}
.y1{bottom:1087.908000px;}
.y6f{bottom:1089.405000px;}
.ya4{bottom:1093.315186px;}
.y6d{bottom:1128.300051px;}
.yea{bottom:1128.305937px;}
.h13{height:30.272384px;}
.h20{height:34.366200px;}
.ha{height:38.503724px;}
.hb{height:41.111909px;}
.hf{height:41.132373px;}
.he{height:42.402835px;}
.h7{height:43.242847px;}
.h19{height:49.091760px;}
.h3{height:52.853965px;}
.h5{height:52.880273px;}
.h6{height:54.300938px;}
.h16{height:57.290889px;}
.h12{height:58.727936px;}
.h4{height:58.757168px;}
.h9{height:58.759675px;}
.hc{height:58.763912px;}
.hd{height:58.764800px;}
.h1d{height:64.939983px;}
.h22{height:64.940373px;}
.h1e{height:64.946373px;}
.h2{height:68.145615px;}
.h10{height:71.255168px;}
.h8{height:71.261168px;}
.h1{height:72.405281px;}
.h1a{height:77.444373px;}
.h24{height:78.611602px;}
.h17{height:84.494421px;}
.h18{height:101.125680px;}
.h15{height:102.419602px;}
.h1b{height:103.047514px;}
.h1c{height:105.959936px;}
.h23{height:123.366840px;}
.h11{height:132.544800px;}
.h14{height:139.895280px;}
.h21{height:158.556840px;}
.h1f{height:187.525800px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:76.595100px;}
.x97{left:83.347500px;}
.x54{left:85.575000px;}
.xc{left:94.555500px;}
.x98{left:103.536336px;}
.xe{left:105.805500px;}
.x56{left:108.251202px;}
.xf{left:116.086500px;}
.x5e{left:117.710600px;}
.x28{left:125.422500px;}
.x25{left:135.102000px;}
.x15{left:145.212000px;}
.x1b{left:149.852802px;}
.x16{left:152.154000px;}
.x3{left:153.823500px;}
.xb{left:157.418694px;}
.x4{left:160.201545px;}
.x67{left:165.294000px;}
.x10{left:166.768500px;}
.x57{left:169.699272px;}
.xa{left:170.886000px;}
.x2b{left:172.070894px;}
.x17{left:174.022500px;}
.x5f{left:175.755000px;}
.x1{left:177.468000px;}
.x60{left:182.098500px;}
.x58{left:186.004500px;}
.x6e{left:190.466970px;}
.x2c{left:196.489500px;}
.x6a{left:200.494500px;}
.x1c{left:201.954000px;}
.x2d{left:206.770500px;}
.x1d{left:208.897500px;}
.x26{left:210.954000px;}
.x8{left:214.257000px;}
.x59{left:216.288000px;}
.x27{left:221.233500px;}
.x61{left:226.522500px;}
.x1e{left:239.575500px;}
.x2e{left:248.388000px;}
.x1f{left:249.855000px;}
.x18{left:251.824500px;}
.x5a{left:253.993500px;}
.x11{left:264.939000px;}
.x68{left:267.720000px;}
.x12{left:275.218500px;}
.x2f{left:277.251000px;}
.x20{left:281.254500px;}
.x62{left:284.818500px;}
.x30{left:287.530500px;}
.x6b{left:291.535500px;}
.x6{left:309.645000px;}
.x5b{left:311.835000px;}
.x63{left:313.681500px;}
.x65{left:315.421500px;}
.x6c{left:318.430500px;}
.x21{left:319.714500px;}
.x9{left:320.737350px;}
.x5c{left:322.116000px;}
.x19{left:323.802000px;}
.x6d{left:325.665000px;}
.x22{left:329.994000px;}
.x1a{left:334.588500px;}
.x55{left:337.253169px;}
.x23{left:349.168500px;}
.x24{left:356.950500px;}
.x13{left:358.102500px;}
.x29{left:359.346000px;}
.x5d{left:366.979500px;}
.x2a{left:369.625500px;}
.x64{left:372.816000px;}
.x66{left:376.296000px;}
.x14{left:377.824500px;}
.x69{left:379.584000px;}
.x5{left:388.434000px;}
.x7{left:392.592000px;}
.x2{left:395.097000px;}
.x9b{left:432.452184px;}
.x38{left:471.722494px;}
.x99{left:478.477827px;}
.x84{left:487.552500px;}
.x39{left:489.682894px;}
.x85{left:497.037000px;}
.x9a{left:498.666663px;}
.x3c{left:500.823000px;}
.x86{left:506.311500px;}
.x87{left:509.623500px;}
.x88{left:517.473000px;}
.x75{left:528.005374px;}
.x3d{left:535.461000px;}
.x6f{left:539.717507px;}
.x3e{left:545.742000px;}
.x76{left:560.233500px;}
.x3f{left:563.126623px;}
.x77{left:565.093500px;}
.x89{left:567.469500px;}
.x32{left:572.283000px;}
.x7f{left:574.959000px;}
.x31{left:576.728861px;}
.x8a{left:577.777500px;}
.x8b{left:582.639000px;}
.x46{left:590.032772px;}
.x80{left:594.801000px;}
.x33{left:601.146000px;}
.x4e{left:603.780974px;}
.x78{left:605.935500px;}
.x81{left:607.389000px;}
.x4f{left:609.135000px;}
.x34{left:611.425500px;}
.x70{left:614.733000px;}
.x50{left:617.389500px;}
.x40{left:621.255000px;}
.x47{left:622.261500px;}
.x41{left:624.574272px;}
.x48{left:627.121500px;}
.x8c{left:633.076500px;}
.x8d{left:636.390000px;}
.x51{left:638.314500px;}
.x42{left:640.879500px;}
.x8e{left:644.239500px;}
.x52{left:647.854500px;}
.x49{left:652.467000px;}
.x43{left:655.602000px;}
.x53{left:659.098500px;}
.x35{left:660.732000px;}
.x4a{left:662.022000px;}
.x44{left:665.883000px;}
.x71{left:668.625000px;}
.x4b{left:671.296500px;}
.x4c{left:674.610000px;}
.x72{left:678.048000px;}
.x79{left:680.425500px;}
.x4d{left:682.459500px;}
.x36{left:689.595000px;}
.x82{left:693.340500px;}
.x8f{left:698.053500px;}
.x37{left:699.874500px;}
.x7a{left:703.425000px;}
.x83{left:705.300000px;}
.x73{left:708.964500px;}
.x45{left:710.746500px;}
.x90{left:713.221500px;}
.x74{left:715.575000px;}
.x7b{left:723.265500px;}
.x7c{left:732.540000px;}
.x7d{left:735.853500px;}
.x96{left:740.085000px;}
.x7e{left:743.703000px;}
.x91{left:748.482000px;}
.x3a{left:758.755500px;}
.x92{left:761.556000px;}
.x3b{left:769.035000px;}
.x95{left:776.289000px;}
.x93{left:802.395000px;}
.x94{left:813.867000px;}
@media print{
.vf{vertical-align:-31.280000pt;}
.v6{vertical-align:-22.670173pt;}
.ve{vertical-align:-21.168000pt;}
.va{vertical-align:-16.491638pt;}
.v5{vertical-align:-14.196797pt;}
.v4{vertical-align:-11.112438pt;}
.v9{vertical-align:-4.464000pt;}
.v7{vertical-align:-3.503339pt;}
.v3{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.733333pt;}
.v2{vertical-align:11.114667pt;}
.v10{vertical-align:17.674370pt;}
.vd{vertical-align:21.162320pt;}
.vb{vertical-align:32.277333pt;}
.v8{vertical-align:38.837037pt;}
.vc{vertical-align:41.984000pt;}
.ls6c{letter-spacing:-0.004789pt;}
.ls3a{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.636939pt;}
.ls42{letter-spacing:0.734525pt;}
.ls5b{letter-spacing:0.735592pt;}
.ls51{letter-spacing:0.735691pt;}
.ls53{letter-spacing:0.736491pt;}
.ls31{letter-spacing:0.738179pt;}
.ls20{letter-spacing:0.738667pt;}
.ls43{letter-spacing:0.739859pt;}
.ls2a{letter-spacing:0.740427pt;}
.lsa{letter-spacing:0.740899pt;}
.ls7{letter-spacing:0.741024pt;}
.ls2{letter-spacing:0.741341pt;}
.ls2c{letter-spacing:0.743512pt;}
.ls21{letter-spacing:0.744000pt;}
.ls26{letter-spacing:0.745067pt;}
.ls25{letter-spacing:0.746232pt;}
.ls12{letter-spacing:0.748480pt;}
.ls6a{letter-spacing:0.773241pt;}
.ls4f{letter-spacing:1.003669pt;}
.ls11{letter-spacing:1.050277pt;}
.ls59{letter-spacing:1.050996pt;}
.ls6{letter-spacing:1.052212pt;}
.ls15{letter-spacing:1.053677pt;}
.ls61{letter-spacing:1.053867pt;}
.lsc{letter-spacing:1.054148pt;}
.ls56{letter-spacing:1.054674pt;}
.ls19{letter-spacing:1.058012pt;}
.ls27{letter-spacing:1.058786pt;}
.ls3{letter-spacing:1.058998pt;}
.ls58{letter-spacing:1.059200pt;}
.ls5d{letter-spacing:1.059571pt;}
.ls13{letter-spacing:1.059588pt;}
.ls52{letter-spacing:1.060096pt;}
.ls29{letter-spacing:1.064119pt;}
.ls3b{letter-spacing:1.099020pt;}
.ls1c{letter-spacing:1.585837pt;}
.ls17{letter-spacing:3.269855pt;}
.ls55{letter-spacing:3.930640pt;}
.ls3d{letter-spacing:4.023130pt;}
.ls4{letter-spacing:4.230672pt;}
.ls60{letter-spacing:4.243022pt;}
.ls62{letter-spacing:4.243447pt;}
.ls9{letter-spacing:4.246637pt;}
.ls1a{letter-spacing:5.517333pt;}
.lsd{letter-spacing:5.517779pt;}
.lse{letter-spacing:5.832474pt;}
.ls18{letter-spacing:5.883573pt;}
.ls1d{letter-spacing:6.364634pt;}
.ls1b{letter-spacing:9.025434pt;}
.ls41{letter-spacing:11.368000pt;}
.ls5e{letter-spacing:11.370259pt;}
.ls50{letter-spacing:11.371573pt;}
.ls40{letter-spacing:11.373333pt;}
.ls5{letter-spacing:11.686234pt;}
.ls5c{letter-spacing:14.059152pt;}
.ls47{letter-spacing:14.512003pt;}
.ls8{letter-spacing:14.873872pt;}
.ls16{letter-spacing:15.054806pt;}
.ls4c{letter-spacing:15.735971pt;}
.ls28{letter-spacing:15.739573pt;}
.ls64{letter-spacing:15.890298pt;}
.ls6b{letter-spacing:15.934112pt;}
.ls69{letter-spacing:15.938901pt;}
.ls2e{letter-spacing:16.113805pt;}
.ls63{letter-spacing:16.196427pt;}
.ls45{letter-spacing:16.220237pt;}
.ls65{letter-spacing:16.284096pt;}
.ls35{letter-spacing:16.459709pt;}
.ls46{letter-spacing:16.566141pt;}
.ls49{letter-spacing:17.715606pt;}
.ls68{letter-spacing:18.157299pt;}
.ls1f{letter-spacing:18.774605pt;}
.ls3c{letter-spacing:19.046006pt;}
.ls38{letter-spacing:19.306765pt;}
.ls5f{letter-spacing:19.652669pt;}
.ls0{letter-spacing:19.817638pt;}
.ls4b{letter-spacing:19.865533pt;}
.ls39{letter-spacing:19.924070pt;}
.ls3f{letter-spacing:20.786170pt;}
.ls14{letter-spacing:21.179968pt;}
.lsf{letter-spacing:21.195933pt;}
.ls23{letter-spacing:21.302365pt;}
.ls10{letter-spacing:21.451370pt;}
.ls1{letter-spacing:21.770666pt;}
.ls24{letter-spacing:22.297504pt;}
.ls34{letter-spacing:22.403936pt;}
.ls1e{letter-spacing:22.600835pt;}
.ls4d{letter-spacing:22.781770pt;}
.ls2f{letter-spacing:22.856272pt;}
.ls67{letter-spacing:23.234106pt;}
.ls66{letter-spacing:24.293104pt;}
.ls4e{letter-spacing:24.628365pt;}
.ls48{letter-spacing:24.670938pt;}
.ls37{letter-spacing:24.958304pt;}
.ls30{letter-spacing:36.298634pt;}
.lsb{letter-spacing:39.715101pt;}
.ls3e{letter-spacing:48.405274pt;}
.ls57{letter-spacing:149.893507pt;}
.ls22{letter-spacing:193.131507pt;}
.ls2b{letter-spacing:259.502502pt;}
.ls32{letter-spacing:260.848867pt;}
.ls44{letter-spacing:269.555005pt;}
.ls2d{letter-spacing:293.385130pt;}
.ls4a{letter-spacing:313.053763pt;}
.ls33{letter-spacing:356.515270pt;}
.ls5a{letter-spacing:372.496035pt;}
.ls36{letter-spacing:402.190563pt;}
.ws35{word-spacing:-32.350006pt;}
.ws87{word-spacing:-27.907445pt;}
.ws14{word-spacing:-24.990234pt;}
.ws1b{word-spacing:-19.136474pt;}
.ws1a{word-spacing:-17.550637pt;}
.ws25{word-spacing:-14.362998pt;}
.wsc{word-spacing:-13.304000pt;}
.ws4a{word-spacing:-12.972000pt;}
.ws3{word-spacing:-11.973333pt;}
.ws13{word-spacing:-10.054675pt;}
.ws15{word-spacing:-3.735763pt;}
.ws6{word-spacing:-0.009579pt;}
.ws5{word-spacing:-0.004789pt;}
.ws4{word-spacing:0.000000pt;}
.ws41{word-spacing:0.377834pt;}
.ws54{word-spacing:0.468301pt;}
.ws5f{word-spacing:0.558768pt;}
.ws21{word-spacing:0.686486pt;}
.ws22{word-spacing:0.691808pt;}
.ws76{word-spacing:0.723738pt;}
.ws65{word-spacing:0.995139pt;}
.ws6b{word-spacing:1.085606pt;}
.ws55{word-spacing:1.208003pt;}
.ws64{word-spacing:1.223968pt;}
.wsa{word-spacing:1.585837pt;}
.ws2d{word-spacing:1.692269pt;}
.ws31{word-spacing:1.745485pt;}
.ws32{word-spacing:1.750806pt;}
.ws23{word-spacing:1.798701pt;}
.ws6f{word-spacing:1.921098pt;}
.ws26{word-spacing:1.979635pt;}
.ws86{word-spacing:2.068992pt;}
.ws6a{word-spacing:2.144605pt;}
.ws1c{word-spacing:2.176534pt;}
.ws5d{word-spacing:2.431971pt;}
.ws10{word-spacing:2.495830pt;}
.ws6c{word-spacing:2.580976pt;}
.ws6d{word-spacing:2.586298pt;}
.ws79{word-spacing:2.628870pt;}
.ws18{word-spacing:2.687408pt;}
.ws19{word-spacing:2.692730pt;}
.ws2a{word-spacing:2.857699pt;}
.ws50{word-spacing:2.900272pt;}
.ws51{word-spacing:2.916237pt;}
.ws77{word-spacing:3.006704pt;}
.ws82{word-spacing:3.007701pt;}
.ws53{word-spacing:3.262141pt;}
.ws63{word-spacing:3.475005pt;}
.ws7{word-spacing:3.491424pt;}
.ws6e{word-spacing:3.639974pt;}
.ws78{word-spacing:3.794301pt;}
.ws4b{word-spacing:3.932043pt;}
.ws47{word-spacing:3.943306pt;}
.ws4c{word-spacing:3.951200pt;}
.ws2{word-spacing:3.960779pt;}
.ws9{word-spacing:3.989515pt;}
.ws75{word-spacing:4.097632pt;}
.wse{word-spacing:4.124240pt;}
.ws4d{word-spacing:4.353069pt;}
.ws2b{word-spacing:4.395642pt;}
.ws36{word-spacing:4.406285pt;}
.ws1{word-spacing:4.411606pt;}
.ws8{word-spacing:4.501973pt;}
.ws3f{word-spacing:4.518038pt;}
.ws2e{word-spacing:4.534003pt;}
.ws66{word-spacing:4.683008pt;}
.ws11{word-spacing:4.895872pt;}
.wsd{word-spacing:5.076806pt;}
.ws0{word-spacing:5.287718pt;}
.ws69{word-spacing:5.332243pt;}
.ws34{word-spacing:5.742006pt;}
.ws44{word-spacing:5.997443pt;}
.ws45{word-spacing:6.002765pt;}
.ws3b{word-spacing:6.369955pt;}
.ws3c{word-spacing:6.380598pt;}
.wsb{word-spacing:6.513638pt;}
.ws5c{word-spacing:6.561533pt;}
.ws39{word-spacing:6.604106pt;}
.ws48{word-spacing:6.620070pt;}
.ws80{word-spacing:6.661963pt;}
.ws7f{word-spacing:6.666752pt;}
.ws1d{word-spacing:6.806326pt;}
.ws1e{word-spacing:6.816970pt;}
.ws71{word-spacing:6.875507pt;}
.ws33{word-spacing:6.981939pt;}
.ws72{word-spacing:7.056442pt;}
.ws16{word-spacing:7.083050pt;}
.ws17{word-spacing:7.088371pt;}
.ws70{word-spacing:7.178838pt;}
.ws2f{word-spacing:7.343808pt;}
.ws3e{word-spacing:7.365094pt;}
.ws3d{word-spacing:7.375738pt;}
.ws4e{word-spacing:7.482170pt;}
.ws85{word-spacing:7.634197pt;}
.ws52{word-spacing:7.695034pt;}
.ws29{word-spacing:7.934506pt;}
.ws27{word-spacing:7.982400pt;}
.ws28{word-spacing:7.998365pt;}
.ws40{word-spacing:8.040938pt;}
.ws5e{word-spacing:8.418771pt;}
.wsf{word-spacing:8.466666pt;}
.ws38{word-spacing:8.493274pt;}
.ws46{word-spacing:8.780640pt;}
.ws67{word-spacing:9.206368pt;}
.ws24{word-spacing:9.296835pt;}
.ws4f{word-spacing:9.823674pt;}
.ws73{word-spacing:9.924784pt;}
.ws74{word-spacing:9.930106pt;}
.ws49{word-spacing:10.291974pt;}
.ws5b{word-spacing:10.414371pt;}
.ws37{word-spacing:10.760275pt;}
.ws1f{word-spacing:11.148752pt;}
.ws20{word-spacing:11.154074pt;}
.ws60{word-spacing:11.313722pt;}
.ws62{word-spacing:11.319043pt;}
.ws61{word-spacing:11.324365pt;}
.ws59{word-spacing:11.350973pt;}
.ws5a{word-spacing:11.366938pt;}
.ws83{word-spacing:11.398613pt;}
.ws42{word-spacing:11.654304pt;}
.ws7d{word-spacing:11.743445pt;}
.ws68{word-spacing:11.899098pt;}
.ws2c{word-spacing:12.713302pt;}
.ws12{word-spacing:13.468970pt;}
.ws81{word-spacing:14.181216pt;}
.ws43{word-spacing:14.182064pt;}
.ws30{word-spacing:14.192707pt;}
.ws84{word-spacing:14.693675pt;}
.ws7e{word-spacing:15.330656pt;}
.ws7b{word-spacing:17.034442pt;}
.ws7a{word-spacing:17.045085pt;}
.ws7c{word-spacing:17.050406pt;}
.ws57{word-spacing:17.774144pt;}
.ws56{word-spacing:18.827821pt;}
.ws58{word-spacing:18.838464pt;}
.ws3a{word-spacing:21.935635pt;}
.ws88{word-spacing:1570.254773pt;}
._12{margin-left:-1448.955328pt;}
._e{margin-left:-19.067293pt;}
._19{margin-left:-15.412075pt;}
._0{margin-left:-7.030741pt;}
._4{margin-left:-5.311371pt;}
._1{margin-left:-3.544107pt;}
._2{margin-left:-1.772053pt;}
._f{width:0.893950pt;}
._9{width:2.352147pt;}
._13{width:4.773475pt;}
._b{width:5.821830pt;}
._14{width:11.930988pt;}
._11{width:13.299979pt;}
._3{width:14.214741pt;}
._a{width:15.283635pt;}
._7{width:16.853664pt;}
._c{width:18.285018pt;}
._15{width:19.482378pt;}
._5{width:20.766549pt;}
._8{width:23.893984pt;}
._16{width:24.861429pt;}
._18{width:27.543456pt;}
._d{width:29.178333pt;}
._17{width:35.283019pt;}
._6{width:500.700853pt;}
._10{width:1160.034005pt;}
.fs5{font-size:37.253333pt;}
.fs9{font-size:38.662049pt;}
.fs3{font-size:47.893333pt;}
.fsd{font-size:49.482667pt;}
.fsb{font-size:51.888000pt;}
.fs1{font-size:53.216000pt;}
.fs7{font-size:54.154323pt;}
.fs4{font-size:55.227135pt;}
.fs2{font-size:55.877333pt;}
.fs6{font-size:57.738667pt;}
.fs0{font-size:63.861333pt;}
.fsc{font-size:109.621333pt;}
.fs8{font-size:143.680000pt;}
.fsa{font-size:151.648000pt;}
.fsf{font-size:171.877333pt;}
.fse{font-size:203.280000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:45.066712pt;}
.yeb{bottom:45.071944pt;}
.y6b{bottom:76.528978pt;}
.y6c{bottom:78.112000pt;}
.y6a{bottom:93.238802pt;}
.y69{bottom:108.538402pt;}
.y68{bottom:123.838002pt;}
.y38{bottom:129.132000pt;}
.y37{bottom:139.626245pt;}
.y39{bottom:139.626667pt;}
.y67{bottom:140.547826pt;}
.y66{bottom:155.847426pt;}
.y36{bottom:166.722501pt;}
.y65{bottom:171.147026pt;}
.y35{bottom:182.022101pt;}
.y64{bottom:186.446626pt;}
.ye1{bottom:190.314464pt;}
.y33{bottom:198.091435pt;}
.y34{bottom:198.093333pt;}
.ye9{bottom:200.959955pt;}
.y63{bottom:201.746226pt;}
.ye0{bottom:205.613989pt;}
.y31{bottom:214.161936pt;}
.y32{bottom:214.162667pt;}
.ye8{bottom:216.924000pt;}
.y62{bottom:217.045826pt;}
.ydf{bottom:220.913515pt;}
.y30{bottom:230.233168pt;}
.ye7{bottom:232.888045pt;}
.yde{bottom:236.213040pt;}
.y61{bottom:240.861333pt;}
.y2f{bottom:245.532768pt;}
.ye6{bottom:248.852091pt;}
.y5f{bottom:249.252000pt;}
.y5e{bottom:250.527420pt;}
.y60{bottom:250.529333pt;}
.ydd{bottom:251.512565pt;}
.y2d{bottom:261.603435pt;}
.y2e{bottom:261.604000pt;}
.ye5{bottom:264.816136pt;}
.ydc{bottom:266.812091pt;}
.y2c{bottom:274.896000pt;}
.y2a{bottom:277.673576pt;}
.y2b{bottom:277.674667pt;}
.ye4{bottom:280.780181pt;}
.ydb{bottom:282.111616pt;}
.y5d{bottom:282.676536pt;}
.y29{bottom:292.973176pt;}
.ye3{bottom:296.744227pt;}
.yda{bottom:297.411141pt;}
.y5c{bottom:298.747768pt;}
.y28{bottom:308.272776pt;}
.ye2{bottom:312.708272pt;}
.yd9{bottom:312.710667pt;}
.y5b{bottom:314.047368pt;}
.y5a{bottom:329.346968pt;}
.y27{bottom:330.640000pt;}
.y25{bottom:333.418108pt;}
.y26{bottom:333.418667pt;}
.y59{bottom:344.646568pt;}
.y24{bottom:360.619467pt;}
.y56{bottom:368.046667pt;}
.y52{bottom:370.389333pt;}
.y54{bottom:371.285333pt;}
.y23{bottom:375.919067pt;}
.y55{bottom:379.181333pt;}
.y58{bottom:380.885333pt;}
.y51{bottom:380.885384pt;}
.y53{bottom:390.796000pt;}
.y22{bottom:391.216971pt;}
.y57{bottom:396.797333pt;}
.yd8{bottom:401.864501pt;}
.y9f{bottom:403.160179pt;}
.y21{bottom:407.288203pt;}
.y50{bottom:415.354717pt;}
.yd7{bottom:417.164101pt;}
.y9e{bottom:418.459779pt;}
.y20{bottom:423.359435pt;}
.yd6{bottom:432.463701pt;}
.y9d{bottom:434.531011pt;}
.y4c{bottom:438.754667pt;}
.y1f{bottom:439.429168pt;}
.yd5{bottom:447.763301pt;}
.y4f{bottom:448.882667pt;}
.y9c{bottom:449.830611pt;}
.y4b{bottom:449.888000pt;}
.y4a{bottom:451.660309pt;}
.y4e{bottom:451.661333pt;}
.y1e{bottom:454.728768pt;}
.y9b{bottom:465.901843pt;}
.y4d{bottom:467.507721pt;}
.y1d{bottom:470.800000pt;}
.y1b{bottom:470.801199pt;}
.yd4{bottom:473.706101pt;}
.y1c{bottom:476.467543pt;}
.y9a{bottom:481.201443pt;}
.y49{bottom:485.316768pt;}
.y19{bottom:487.067443pt;}
.y1a{bottom:487.068000pt;}
.yd2{bottom:489.776768pt;}
.yd3{bottom:489.777333pt;}
.y99{bottom:496.501043pt;}
.y48{bottom:498.610667pt;}
.y46{bottom:501.386869pt;}
.y47{bottom:501.388000pt;}
.yd0{bottom:505.845013pt;}
.yd1{bottom:505.848000pt;}
.y18{bottom:509.434667pt;}
.y17{bottom:512.213333pt;}
.y45{bottom:517.458101pt;}
.ycf{bottom:521.144613pt;}
.y96{bottom:522.975836pt;}
.y98{bottom:522.977333pt;}
.y97{bottom:527.098746pt;}
.y43{bottom:533.528733pt;}
.y44{bottom:533.529333pt;}
.yce{bottom:536.444213pt;}
.y16{bottom:538.642800pt;}
.y42{bottom:548.828333pt;}
.ycd{bottom:551.743813pt;}
.y15{bottom:553.942400pt;}
.y95{bottom:554.860203pt;}
.y41{bottom:564.127933pt;}
.ycc{bottom:567.043413pt;}
.y14{bottom:569.242000pt;}
.y94{bottom:570.931435pt;}
.y40{bottom:579.427533pt;}
.ycb{bottom:582.343013pt;}
.y13{bottom:584.541600pt;}
.y92{bottom:587.001292pt;}
.y93{bottom:587.002667pt;}
.y3f{bottom:594.727133pt;}
.yca{bottom:598.414245pt;}
.y12{bottom:599.841200pt;}
.y91{bottom:602.300892pt;}
.y3e{bottom:610.026733pt;}
.yc9{bottom:613.048645pt;}
.y11{bottom:615.140800pt;}
.y90{bottom:617.600492pt;}
.yc8{bottom:628.454677pt;}
.y10{bottom:630.440400pt;}
.y8f{bottom:632.900092pt;}
.y3b{bottom:633.426667pt;}
.y3d{bottom:641.144000pt;}
.y3c{bottom:643.921333pt;}
.y3a{bottom:643.924099pt;}
.yc7{bottom:644.499301pt;}
.yf{bottom:645.740000pt;}
.y8e{bottom:648.199692pt;}
.yc6{bottom:659.905384pt;}
.y8d{bottom:663.499292pt;}
.yc5{bottom:683.055674pt;}
.y8c{bottom:689.570667pt;}
.ye{bottom:690.308136pt;}
.y8a{bottom:691.672000pt;}
.y8b{bottom:700.066667pt;}
.y89{bottom:700.067566pt;}
.yc0{bottom:703.260000pt;}
.yc4{bottom:706.500000pt;}
.ybe{bottom:713.638667pt;}
.ybf{bottom:714.394667pt;}
.yc2{bottom:716.168000pt;}
.yd{bottom:716.250757pt;}
.yc3{bottom:721.458667pt;}
.y88{bottom:722.634667pt;}
.yc{bottom:731.550283pt;}
.yc1{bottom:732.012000pt;}
.y87{bottom:733.130667pt;}
.yb{bottom:746.849808pt;}
.ybd{bottom:748.492568pt;}
.y85{bottom:755.697333pt;}
.y83{bottom:756.620000pt;}
.y84{bottom:757.798667pt;}
.ya{bottom:762.149333pt;}
.ybc{bottom:763.126968pt;}
.y86{bottom:763.416000pt;}
.y82{bottom:766.193333pt;}
.ybb{bottom:777.761368pt;}
.yba{bottom:792.395768pt;}
.y80{bottom:798.508000pt;}
.y7d{bottom:799.430667pt;}
.y9{bottom:800.065808pt;}
.y7e{bottom:800.609333pt;}
.y81{bottom:806.226667pt;}
.y7b{bottom:809.003950pt;}
.y7f{bottom:809.004000pt;}
.y7c{bottom:813.126860pt;}
.yb5{bottom:815.130667pt;}
.y8{bottom:815.365333pt;}
.yb3{bottom:818.301333pt;}
.yb9{bottom:824.360000pt;}
.yb4{bottom:826.265333pt;}
.yb2{bottom:827.969325pt;}
.yb7{bottom:827.969333pt;}
.y7{bottom:829.334667pt;}
.yb8{bottom:833.261333pt;}
.yb6{bottom:843.881333pt;}
.y7a{bottom:846.511917pt;}
.yb0{bottom:860.481333pt;}
.y6{bottom:860.598667pt;}
.y79{bottom:861.811517pt;}
.ya9{bottom:862.824000pt;}
.yac{bottom:863.652000pt;}
.yaa{bottom:869.710667pt;}
.yaf{bottom:871.616000pt;}
.ya8{bottom:873.319458pt;}
.yad{bottom:873.320000pt;}
.y5{bottom:874.568000pt;}
.y78{bottom:877.111117pt;}
.yae{bottom:878.612000pt;}
.yab{bottom:883.162667pt;}
.yb1{bottom:889.232000pt;}
.y74{bottom:902.505333pt;}
.ya7{bottom:905.713368pt;}
.y4{bottom:905.832475pt;}
.y77{bottom:912.634667pt;}
.y73{bottom:913.640000pt;}
.y71{bottom:915.412741pt;}
.y76{bottom:915.413333pt;}
.y72{bottom:919.535650pt;}
.ya6{bottom:920.347768pt;}
.y3{bottom:921.132000pt;}
.y75{bottom:931.258387pt;}
.y2{bottom:935.100000pt;}
.ya3{bottom:943.082667pt;}
.y70{bottom:953.060400pt;}
.ya2{bottom:954.217333pt;}
.ya5{bottom:955.921333pt;}
.ya0{bottom:955.922753pt;}
.ya1{bottom:961.213333pt;}
.y1{bottom:967.029333pt;}
.y6f{bottom:968.360000pt;}
.ya4{bottom:971.835721pt;}
.y6d{bottom:1002.933379pt;}
.yea{bottom:1002.938611pt;}
.h13{height:26.908786pt;}
.h20{height:30.547733pt;}
.ha{height:34.225532pt;}
.hb{height:36.543919pt;}
.hf{height:36.562109pt;}
.he{height:37.691409pt;}
.h7{height:38.438086pt;}
.h19{height:43.637120pt;}
.h3{height:46.981302pt;}
.h5{height:47.004687pt;}
.h6{height:48.267500pt;}
.h16{height:50.925234pt;}
.h12{height:52.202609pt;}
.h4{height:52.228594pt;}
.h9{height:52.230822pt;}
.hc{height:52.234588pt;}
.hd{height:52.235378pt;}
.h1d{height:57.724429pt;}
.h22{height:57.724776pt;}
.h1e{height:57.730109pt;}
.h2{height:60.573880pt;}
.h10{height:63.337927pt;}
.h8{height:63.343260pt;}
.h1{height:64.360250pt;}
.h1a{height:68.839443pt;}
.h24{height:69.876980pt;}
.h17{height:75.106152pt;}
.h18{height:89.889493pt;}
.h15{height:91.039646pt;}
.h1b{height:91.597791pt;}
.h1c{height:94.186609pt;}
.h23{height:109.659413pt;}
.h11{height:117.817600pt;}
.h14{height:124.351360pt;}
.h21{height:140.939413pt;}
.h1f{height:166.689600pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:68.084533pt;}
.x97{left:74.086667pt;}
.x54{left:76.066667pt;}
.xc{left:84.049333pt;}
.x98{left:92.032299pt;}
.xe{left:94.049333pt;}
.x56{left:96.223290pt;}
.xf{left:103.188000pt;}
.x5e{left:104.631644pt;}
.x28{left:111.486667pt;}
.x25{left:120.090667pt;}
.x15{left:129.077333pt;}
.x1b{left:133.202491pt;}
.x16{left:135.248000pt;}
.x3{left:136.732000pt;}
.xb{left:139.927728pt;}
.x4{left:142.401373pt;}
.x67{left:146.928000pt;}
.x10{left:148.238667pt;}
.x57{left:150.843797pt;}
.xa{left:151.898667pt;}
.x2b{left:152.951906pt;}
.x17{left:154.686667pt;}
.x5f{left:156.226667pt;}
.x1{left:157.749333pt;}
.x60{left:161.865333pt;}
.x58{left:165.337333pt;}
.x6e{left:169.303974pt;}
.x2c{left:174.657333pt;}
.x6a{left:178.217333pt;}
.x1c{left:179.514667pt;}
.x2d{left:183.796000pt;}
.x1d{left:185.686667pt;}
.x26{left:187.514667pt;}
.x8{left:190.450667pt;}
.x59{left:192.256000pt;}
.x27{left:196.652000pt;}
.x61{left:201.353333pt;}
.x1e{left:212.956000pt;}
.x2e{left:220.789333pt;}
.x1f{left:222.093333pt;}
.x18{left:223.844000pt;}
.x5a{left:225.772000pt;}
.x11{left:235.501333pt;}
.x68{left:237.973333pt;}
.x12{left:244.638667pt;}
.x2f{left:246.445333pt;}
.x20{left:250.004000pt;}
.x62{left:253.172000pt;}
.x30{left:255.582667pt;}
.x6b{left:259.142667pt;}
.x6{left:275.240000pt;}
.x5b{left:277.186667pt;}
.x63{left:278.828000pt;}
.x65{left:280.374667pt;}
.x6c{left:283.049333pt;}
.x21{left:284.190667pt;}
.x9{left:285.099867pt;}
.x5c{left:286.325333pt;}
.x19{left:287.824000pt;}
.x6d{left:289.480000pt;}
.x22{left:293.328000pt;}
.x1a{left:297.412000pt;}
.x55{left:299.780595pt;}
.x23{left:310.372000pt;}
.x24{left:317.289333pt;}
.x13{left:318.313333pt;}
.x29{left:319.418667pt;}
.x5d{left:326.204000pt;}
.x2a{left:328.556000pt;}
.x64{left:331.392000pt;}
.x66{left:334.485333pt;}
.x14{left:335.844000pt;}
.x69{left:337.408000pt;}
.x5{left:345.274667pt;}
.x7{left:348.970667pt;}
.x2{left:351.197333pt;}
.x9b{left:384.401941pt;}
.x38{left:419.308884pt;}
.x99{left:425.313624pt;}
.x84{left:433.380000pt;}
.x39{left:435.273684pt;}
.x85{left:441.810667pt;}
.x9a{left:443.259256pt;}
.x3c{left:445.176000pt;}
.x86{left:450.054667pt;}
.x87{left:452.998667pt;}
.x88{left:459.976000pt;}
.x75{left:469.338110pt;}
.x3d{left:475.965333pt;}
.x6f{left:479.748895pt;}
.x3e{left:485.104000pt;}
.x76{left:497.985333pt;}
.x3f{left:500.556998pt;}
.x77{left:502.305333pt;}
.x89{left:504.417333pt;}
.x32{left:508.696000pt;}
.x7f{left:511.074667pt;}
.x31{left:512.647876pt;}
.x8a{left:513.580000pt;}
.x8b{left:517.901333pt;}
.x46{left:524.473575pt;}
.x80{left:528.712000pt;}
.x33{left:534.352000pt;}
.x4e{left:536.694199pt;}
.x78{left:538.609333pt;}
.x81{left:539.901333pt;}
.x4f{left:541.453333pt;}
.x34{left:543.489333pt;}
.x70{left:546.429333pt;}
.x50{left:548.790667pt;}
.x40{left:552.226667pt;}
.x47{left:553.121333pt;}
.x41{left:555.177131pt;}
.x48{left:557.441333pt;}
.x8c{left:562.734667pt;}
.x8d{left:565.680000pt;}
.x51{left:567.390667pt;}
.x42{left:569.670667pt;}
.x8e{left:572.657333pt;}
.x52{left:575.870667pt;}
.x49{left:579.970667pt;}
.x43{left:582.757333pt;}
.x53{left:585.865333pt;}
.x35{left:587.317333pt;}
.x4a{left:588.464000pt;}
.x44{left:591.896000pt;}
.x71{left:594.333333pt;}
.x4b{left:596.708000pt;}
.x4c{left:599.653333pt;}
.x72{left:602.709333pt;}
.x79{left:604.822667pt;}
.x4d{left:606.630667pt;}
.x36{left:612.973333pt;}
.x82{left:616.302667pt;}
.x8f{left:620.492000pt;}
.x37{left:622.110667pt;}
.x7a{left:625.266667pt;}
.x83{left:626.933333pt;}
.x73{left:630.190667pt;}
.x45{left:631.774667pt;}
.x90{left:633.974667pt;}
.x74{left:636.066667pt;}
.x7b{left:642.902667pt;}
.x7c{left:651.146667pt;}
.x7d{left:654.092000pt;}
.x96{left:657.853333pt;}
.x7e{left:661.069333pt;}
.x91{left:665.317333pt;}
.x3a{left:674.449333pt;}
.x92{left:676.938667pt;}
.x3b{left:683.586667pt;}
.x95{left:690.034667pt;}
.x93{left:713.240000pt;}
.x94{left:723.437333pt;}
}




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