
    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_ae72f14f531ffbf75dc91439.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_21c3be32c5c23811d860cc77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_06d6830a5bbb9574bbb284ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bc2d36bf1e29f64ffa66cf5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_21cd36f2216f765dfe7266ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_f3d721e316d197ad6d5aa9a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_5e625e4d3492046be35ffe84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_c7f9bb63442c51d4e13ab122.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675000;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_aa5354cc08977d0289be0c21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_fb330cd09001d3be04b6cd4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.031000;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_2256fcaf169d6effd840e415.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3aa56665fee786bb6fca40ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7ebc085be05ece3583c2547a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909000;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_7c2830ca11879abd2bab40e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_36206fb5f26f467265239ae7.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_da273ce8aa0bf34b1d8b1b42.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4e0ff39036ba3220036f3e5f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.794000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5c912c4a7ac4126e6398cbf8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_202c72995540bbb00773ff15.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c324ad00d31a820dc0ff776e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5d22310de89140371d953c91.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4e58f2a79bd7251e4242d3d4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fef9141fdf85be9dfee28beb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c3806b39d119372d930098a3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_02af3184c24f80e7c06853f3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-22.854000px;}
.v8{vertical-align:-13.320000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.586000px;}
.v7{vertical-align:21.690000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v2{vertical-align:29.688000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000141px;}
.ls8{letter-spacing:0.001500px;}
.ls49{letter-spacing:0.002682px;}
.ls4a{letter-spacing:0.002700px;}
.ls5b{letter-spacing:0.002712px;}
.ls37{letter-spacing:0.002915px;}
.ls4{letter-spacing:0.003113px;}
.ls56{letter-spacing:0.004200px;}
.ls55{letter-spacing:0.004738px;}
.ls2{letter-spacing:0.006141px;}
.lse{letter-spacing:0.704915px;}
.lsa{letter-spacing:2.982651px;}
.ls3{letter-spacing:2.983500px;}
.lsb{letter-spacing:2.984208px;}
.ls2a{letter-spacing:2.984486px;}
.ls2d{letter-spacing:2.984525px;}
.ls10{letter-spacing:2.984915px;}
.ls14{letter-spacing:2.985113px;}
.ls11{letter-spacing:2.985490px;}
.ls13{letter-spacing:2.986387px;}
.ls24{letter-spacing:2.986441px;}
.ls16{letter-spacing:2.986528px;}
.ls25{letter-spacing:2.986714px;}
.ls20{letter-spacing:2.986850px;}
.ls26{letter-spacing:2.987587px;}
.lsd{letter-spacing:2.988141px;}
.ls22{letter-spacing:2.988482px;}
.ls1a{letter-spacing:2.988532px;}
.ls6{letter-spacing:2.989500px;}
.lsf{letter-spacing:2.989641px;}
.lsc{letter-spacing:2.990208px;}
.ls23{letter-spacing:2.990400px;}
.ls21{letter-spacing:2.990486px;}
.ls1c{letter-spacing:2.990623px;}
.ls15{letter-spacing:2.990915px;}
.ls36{letter-spacing:2.991056px;}
.ls7{letter-spacing:2.991113px;}
.ls19{letter-spacing:2.991490px;}
.ls1b{letter-spacing:2.992441px;}
.ls18{letter-spacing:2.992528px;}
.ls27{letter-spacing:2.992714px;}
.ls12{letter-spacing:2.994141px;}
.ls1f{letter-spacing:2.994482px;}
.ls53{letter-spacing:3.320172px;}
.ls2b{letter-spacing:3.326172px;}
.ls43{letter-spacing:3.454878px;}
.ls29{letter-spacing:3.564582px;}
.ls28{letter-spacing:3.566486px;}
.ls1e{letter-spacing:3.570532px;}
.ls44{letter-spacing:3.638154px;}
.ls17{letter-spacing:3.692208px;}
.ls9{letter-spacing:3.692915px;}
.ls42{letter-spacing:4.682690px;}
.ls32{letter-spacing:4.688646px;}
.ls2f{letter-spacing:4.694646px;}
.ls3b{letter-spacing:5.138158px;}
.ls48{letter-spacing:5.807786px;}
.ls1d{letter-spacing:5.890850px;}
.ls4d{letter-spacing:10.800009px;}
.ls41{letter-spacing:10.849050px;}
.ls5c{letter-spacing:10.865464px;}
.ls45{letter-spacing:14.661830px;}
.ls62{letter-spacing:16.602538px;}
.ls31{letter-spacing:17.207864px;}
.ls59{letter-spacing:17.657864px;}
.ls65{letter-spacing:19.202316px;}
.ls50{letter-spacing:19.229412px;}
.ls64{letter-spacing:19.916316px;}
.ls60{letter-spacing:19.922316px;}
.ls30{letter-spacing:21.093010px;}
.ls33{letter-spacing:21.099010px;}
.ls38{letter-spacing:21.164915px;}
.ls5a{letter-spacing:21.170915px;}
.ls3e{letter-spacing:21.413468px;}
.ls34{letter-spacing:21.545864px;}
.ls4f{letter-spacing:22.226915px;}
.ls35{letter-spacing:22.907864px;}
.ls3a{letter-spacing:22.909110px;}
.ls47{letter-spacing:23.013056px;}
.ls61{letter-spacing:23.118305px;}
.ls2c{letter-spacing:24.158172px;}
.ls63{letter-spacing:24.201175px;}
.ls5e{letter-spacing:24.693056px;}
.ls40{letter-spacing:25.743056px;}
.ls54{letter-spacing:26.717864px;}
.ls3f{letter-spacing:27.294568px;}
.ls39{letter-spacing:27.363229px;}
.ls5d{letter-spacing:27.779412px;}
.ls58{letter-spacing:27.803864px;}
.ls57{letter-spacing:28.499864px;}
.ls4b{letter-spacing:28.599056px;}
.ls4c{letter-spacing:28.605056px;}
.ls3d{letter-spacing:28.797056px;}
.ls3c{letter-spacing:29.768652px;}
.ls52{letter-spacing:30.723056px;}
.ls51{letter-spacing:30.729056px;}
.ls5f{letter-spacing:33.363056px;}
.ls4e{letter-spacing:34.065056px;}
.ls46{letter-spacing:37.190690px;}
.ls2e{letter-spacing:38.520305px;}
.ls1{letter-spacing:44.702915px;}
.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;}
}
.ws28{word-spacing:-42.637126px;}
.ws29{word-spacing:-33.211407px;}
.ws58{word-spacing:-32.544027px;}
.ws11{word-spacing:-29.881822px;}
.ws1f{word-spacing:-27.641618px;}
.ws78{word-spacing:-21.744018px;}
.ws0{word-spacing:-18.984000px;}
.ws27{word-spacing:-18.183288px;}
.ws4c{word-spacing:-17.947651px;}
.ws1c{word-spacing:-16.605662px;}
.ws32{word-spacing:-16.376741px;}
.ws85{word-spacing:-15.787650px;}
.ws18{word-spacing:-15.655230px;}
.ws6f{word-spacing:-15.236800px;}
.ws70{word-spacing:-15.210381px;}
.ws8f{word-spacing:-15.133104px;}
.ws80{word-spacing:-14.740376px;}
.ws74{word-spacing:-14.413103px;}
.ws2c{word-spacing:-13.496739px;}
.ws1d{word-spacing:-13.443532px;}
.ws2b{word-spacing:-13.431284px;}
.ws76{word-spacing:-12.645829px;}
.ws57{word-spacing:-12.540834px;}
.ws56{word-spacing:-12.514920px;}
.ws82{word-spacing:-12.449465px;}
.ws42{word-spacing:-11.991283px;}
.ws41{word-spacing:-11.973417px;}
.ws81{word-spacing:-11.860374px;}
.ws54{word-spacing:-11.533101px;}
.ws53{word-spacing:-11.522385px;}
.ws55{word-spacing:-11.467646px;}
.ws1a{word-spacing:-11.351386px;}
.ws1b{word-spacing:-11.328381px;}
.ws23{word-spacing:-11.205828px;}
.ws8c{word-spacing:-11.140373px;}
.ws71{word-spacing:-11.009464px;}
.ws3d{word-spacing:-10.878555px;}
.ws9e{word-spacing:-10.873764px;}
.wsa0{word-spacing:-10.873182px;}
.ws4{word-spacing:-10.813100px;}
.ws86{word-spacing:-10.682191px;}
.ws68{word-spacing:-10.634079px;}
.ws6a{word-spacing:-10.602613px;}
.ws69{word-spacing:-10.601517px;}
.ws8e{word-spacing:-10.420372px;}
.ws83{word-spacing:-10.354918px;}
.ws60{word-spacing:-10.224009px;}
.ws3b{word-spacing:-10.158554px;}
.ws6b{word-spacing:-10.155874px;}
.ws51{word-spacing:-10.129783px;}
.ws98{word-spacing:-9.980573px;}
.ws97{word-spacing:-9.979870px;}
.ws96{word-spacing:-9.978048px;}
.wsb{word-spacing:-9.976548px;}
.ws9b{word-spacing:-9.975886px;}
.wsa2{word-spacing:-9.974967px;}
.wsa1{word-spacing:-9.971557px;}
.ws9c{word-spacing:-9.965531px;}
.ws94{word-spacing:-9.962260px;}
.ws40{word-spacing:-9.962190px;}
.ws9a{word-spacing:-9.956701px;}
.ws1e{word-spacing:-9.956243px;}
.ws99{word-spacing:-9.916772px;}
.ws3f{word-spacing:-9.896736px;}
.ws24{word-spacing:-9.831281px;}
.ws59{word-spacing:-9.700372px;}
.ws2f{word-spacing:-9.634917px;}
.ws2d{word-spacing:-9.611096px;}
.ws30{word-spacing:-9.569463px;}
.ws3e{word-spacing:-9.307644px;}
.ws37{word-spacing:-9.251349px;}
.wsd{word-spacing:-9.242565px;}
.ws38{word-spacing:-9.242190px;}
.wsc{word-spacing:-9.188767px;}
.ws4e{word-spacing:-9.111280px;}
.ws10{word-spacing:-9.079914px;}
.ws12{word-spacing:-9.020138px;}
.ws47{word-spacing:-8.718553px;}
.ws33{word-spacing:-8.327992px;}
.ws46{word-spacing:-8.064007px;}
.ws66{word-spacing:-7.944177px;}
.ws45{word-spacing:-7.933098px;}
.ws21{word-spacing:-7.540370px;}
.ws7a{word-spacing:-7.335888px;}
.ws22{word-spacing:-7.082188px;}
.ws5a{word-spacing:-6.951279px;}
.ws5b{word-spacing:-6.938296px;}
.ws26{word-spacing:-6.754915px;}
.ws67{word-spacing:-6.150909px;}
.ws7f{word-spacing:-6.100369px;}
.ws4b{word-spacing:-5.904005px;}
.ws13{word-spacing:-5.314051px;}
.ws39{word-spacing:-5.249459px;}
.ws63{word-spacing:-5.184004px;}
.ws79{word-spacing:-5.126296px;}
.ws7b{word-spacing:-5.118550px;}
.ws6e{word-spacing:-5.074948px;}
.ws3c{word-spacing:-4.987641px;}
.ws25{word-spacing:-4.791277px;}
.ws62{word-spacing:-4.776802px;}
.ws3a{word-spacing:-4.594913px;}
.ws6d{word-spacing:-4.368381px;}
.ws6c{word-spacing:-4.357641px;}
.ws84{word-spacing:-4.333095px;}
.ws43{word-spacing:-4.267640px;}
.ws44{word-spacing:-4.202185px;}
.ws61{word-spacing:-4.005822px;}
.ws73{word-spacing:-3.940367px;}
.ws8a{word-spacing:-3.613094px;}
.ws9d{word-spacing:-3.328717px;}
.ws8b{word-spacing:-3.285821px;}
.ws95{word-spacing:-3.281680px;}
.ws4d{word-spacing:-2.893093px;}
.ws89{word-spacing:-2.762184px;}
.ws4a{word-spacing:-2.434911px;}
.ws49{word-spacing:-2.369457px;}
.ws7e{word-spacing:-2.181505px;}
.ws7d{word-spacing:-2.174296px;}
.ws7c{word-spacing:-2.173093px;}
.ws87{word-spacing:-2.042184px;}
.ws5d{word-spacing:-1.518547px;}
.ws5e{word-spacing:-1.453092px;}
.ws8d{word-spacing:-1.060365px;}
.ws14{word-spacing:-0.711330px;}
.ws16{word-spacing:-0.710265px;}
.ws8{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.065455px;}
.ws90{word-spacing:-0.059776px;}
.ws35{word-spacing:-0.053798px;}
.ws6{word-spacing:-0.047821px;}
.ws17{word-spacing:-0.041843px;}
.ws50{word-spacing:-0.038296px;}
.ws4f{word-spacing:-0.037175px;}
.ws52{word-spacing:-0.013091px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.011955px;}
.ws2a{word-spacing:0.013091px;}
.ws5c{word-spacing:0.248727px;}
.ws2e{word-spacing:2.042184px;}
.ws88{word-spacing:2.343275px;}
.ws48{word-spacing:2.736002px;}
.ws72{word-spacing:3.322224px;}
.ws5f{word-spacing:4.148112px;}
.ws31{word-spacing:6.885824px;}
.ws36{word-spacing:9.085891px;}
.ws15{word-spacing:12.581331px;}
.ws75{word-spacing:18.058791px;}
.ws77{word-spacing:19.841881px;}
.ws91{word-spacing:19.868004px;}
.ws93{word-spacing:19.880164px;}
.ws34{word-spacing:20.497190px;}
.ws9f{word-spacing:20.503031px;}
.wsf{word-spacing:21.280114px;}
.wse{word-spacing:21.339889px;}
.ws2{word-spacing:21.665473px;}
.ws65{word-spacing:22.535401px;}
.wsa{word-spacing:24.218202px;}
.ws9{word-spacing:24.283657px;}
.ws92{word-spacing:24.767477px;}
.ws20{word-spacing:24.872748px;}
.ws7{word-spacing:27.521228px;}
.ws5{word-spacing:27.544781px;}
.ws64{word-spacing:720.254251px;}
._6{margin-left:-8.822938px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-5.844941px;}
._3{margin-left:-4.284000px;}
._7{margin-left:-3.059405px;}
._1{margin-left:-1.996800px;}
._d{width:1.034688px;}
._4{width:2.194033px;}
._12{width:3.735800px;}
._0{width:5.587200px;}
._1d{width:9.982525px;}
._b{width:17.423328px;}
._a{width:19.419533px;}
._1e{width:20.929938px;}
._14{width:22.393440px;}
._c{width:23.623757px;}
._9{width:25.308231px;}
._10{width:26.341196px;}
._11{width:27.984015px;}
._17{width:29.292238px;}
._f{width:31.946329px;}
._13{width:33.288722px;}
._1a{width:35.705919px;}
._19{width:36.741114px;}
._20{width:41.662288px;}
._1f{width:43.127056px;}
._16{width:45.818220px;}
._18{width:48.927748px;}
._1c{width:50.085355px;}
._e{width:54.915274px;}
._1b{width:57.130082px;}
._5{width:236.256341px;}
._15{width:255.498006px;}
.fc6{color:rgb(128,0,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,102,204);}
.fc3{color:rgb(64,102,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y20{bottom:-187.215000px;}
.y1f{bottom:-165.135000px;}
.y1e{bottom:-143.055000px;}
.y1d{bottom:-120.975000px;}
.y1c{bottom:-98.910000px;}
.y1b{bottom:-76.830000px;}
.y1a{bottom:-54.750000px;}
.y19{bottom:-32.670000px;}
.y18{bottom:-10.590000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.285000px;}
.yc{bottom:8.040000px;}
.y17{bottom:11.475000px;}
.y28{bottom:25.365000px;}
.y16{bottom:33.555000px;}
.y27{bottom:47.445000px;}
.y56{bottom:51.957000px;}
.y15{bottom:55.635000px;}
.y26{bottom:69.510000px;}
.y14{bottom:77.715000px;}
.yb1{bottom:87.768000px;}
.y25{bottom:91.590000px;}
.y80{bottom:93.204000px;}
.ycf{bottom:96.787500px;}
.ya8{bottom:96.789000px;}
.y13{bottom:99.795000px;}
.y55{bottom:102.502500px;}
.yb0{bottom:106.872000px;}
.y54{bottom:112.240500px;}
.yce{bottom:113.644500px;}
.y24{bottom:113.670000px;}
.y7f{bottom:114.370500px;}
.ya7{bottom:115.893000px;}
.yaf{bottom:125.976000px;}
.y53{bottom:133.405500px;}
.ycd{bottom:134.985000px;}
.ya6{bottom:134.997000px;}
.y23{bottom:135.750000px;}
.y7e{bottom:138.988500px;}
.y52{bottom:143.145000px;}
.yae{bottom:145.080000px;}
.ya5{bottom:154.101000px;}
.y21{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.ycc{bottom:156.325500px;}
.y22{bottom:157.830000px;}
.y7d{bottom:158.092500px;}
.yad{bottom:164.185500px;}
.y51{bottom:164.310000px;}
.ya4{bottom:173.206500px;}
.y50{bottom:174.049500px;}
.y7c{bottom:177.198000px;}
.ycb{bottom:177.664500px;}
.y4f{bottom:189.501000px;}
.ya3{bottom:192.310500px;}
.y7b{bottom:196.302000px;}
.yca{bottom:199.005000px;}
.y4e{bottom:210.666000px;}
.ya2{bottom:211.414500px;}
.y7a{bottom:215.406000px;}
.yc9{bottom:215.862000px;}
.y4d{bottom:220.405500px;}
.ya1{bottom:231.132000px;}
.y79{bottom:234.510000px;}
.y4c{bottom:241.570500px;}
.ya0{bottom:250.236000px;}
.y78{bottom:253.615500px;}
.yc8{bottom:255.676500px;}
.y4b{bottom:257.023500px;}
.y9f{bottom:269.340000px;}
.y4a{bottom:272.475000px;}
.y77{bottom:272.719500px;}
.y49{bottom:287.926500px;}
.y9e{bottom:288.445500px;}
.y76{bottom:291.823500px;}
.y48{bottom:303.379500px;}
.yc7{bottom:304.861500px;}
.y9d{bottom:307.549500px;}
.y75{bottom:310.929000px;}
.y47{bottom:318.831000px;}
.yc6{bottom:323.965500px;}
.y9c{bottom:326.653500px;}
.y46{bottom:334.284000px;}
.y74{bottom:339.529500px;}
.yc5{bottom:343.069500px;}
.ya{bottom:344.680500px;}
.y9b{bottom:345.757500px;}
.y45{bottom:349.735500px;}
.yc4{bottom:362.173500px;}
.y9a{bottom:375.208500px;}
.y44{bottom:376.482000px;}
.yc3{bottom:381.279000px;}
.y73{bottom:385.017000px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.yc2{bottom:400.383000px;}
.y43{bottom:410.773500px;}
.y99{bottom:416.088000px;}
.yc1{bottom:419.487000px;}
.y72{bottom:422.374500px;}
.y42{bottom:429.877500px;}
.yb{bottom:434.850000px;}
.y98{bottom:435.193500px;}
.yc0{bottom:438.591000px;}
.y71{bottom:439.231500px;}
.y8{bottom:446.698500px;}
.y41{bottom:448.983000px;}
.y97{bottom:454.297500px;}
.y70{bottom:456.088500px;}
.ybf{bottom:457.696500px;}
.y40{bottom:468.087000px;}
.y6f{bottom:472.945500px;}
.y96{bottom:473.401500px;}
.ybe{bottom:476.800500px;}
.y3f{bottom:487.191000px;}
.y10{bottom:488.055000px;}
.y6e{bottom:489.802500px;}
.y95{bottom:492.505500px;}
.ybd{bottom:495.904500px;}
.y7{bottom:497.707500px;}
.y3e{bottom:506.295000px;}
.y6d{bottom:506.659500px;}
.y94{bottom:511.611000px;}
.ybc{bottom:515.008500px;}
.y6c{bottom:523.516500px;}
.y3d{bottom:525.400500px;}
.y93{bottom:530.715000px;}
.ybb{bottom:534.114000px;}
.y11{bottom:538.230000px;}
.ye0{bottom:543.376500px;}
.y3c{bottom:544.504500px;}
.y6{bottom:548.716500px;}
.y92{bottom:549.819000px;}
.yba{bottom:553.218000px;}
.y6b{bottom:559.180500px;}
.y3b{bottom:563.608500px;}
.ydf{bottom:564.717000px;}
.y91{bottom:569.536500px;}
.yb9{bottom:572.322000px;}
.y6a{bottom:578.284500px;}
.yde{bottom:581.572500px;}
.y3a{bottom:582.712500px;}
.y90{bottom:588.640500px;}
.y2a{bottom:589.605000px;}
.yb8{bottom:591.427500px;}
.y5{bottom:599.725500px;}
.y39{bottom:601.818000px;}
.ydd{bottom:602.913000px;}
.yac{bottom:604.762500px;}
.y8f{bottom:607.744500px;}
.y69{bottom:615.799500px;}
.ydc{bottom:619.770000px;}
.y38{bottom:620.922000px;}
.yab{bottom:623.868000px;}
.y68{bottom:625.537500px;}
.y8e{bottom:626.850000px;}
.ye{bottom:631.920000px;}
.y37{bottom:640.026000px;}
.ydb{bottom:641.110500px;}
.yb7{bottom:641.245500px;}
.yaa{bottom:642.972000px;}
.y8d{bottom:645.954000px;}
.y67{bottom:646.704000px;}
.y66{bottom:656.442000px;}
.y36{bottom:659.130000px;}
.yb6{bottom:660.349500px;}
.ya9{bottom:662.076000px;}
.yda{bottom:662.449500px;}
.y8c{bottom:665.058000px;}
.y65{bottom:677.608500px;}
.y35{bottom:678.235500px;}
.yd9{bottom:679.306500px;}
.yb5{bottom:679.453500px;}
.y8b{bottom:684.162000px;}
.y64{bottom:693.060000px;}
.y34{bottom:697.339500px;}
.yb4{bottom:698.557500px;}
.yd8{bottom:700.647000px;}
.y63{bottom:708.511500px;}
.y8a{bottom:713.614500px;}
.y33{bottom:716.443500px;}
.yb3{bottom:717.663000px;}
.y62{bottom:718.251000px;}
.yd7{bottom:721.987500px;}
.y32{bottom:735.547500px;}
.y61{bottom:739.416000px;}
.yd6{bottom:743.326500px;}
.yb2{bottom:747.769500px;}
.y60{bottom:749.155500px;}
.y89{bottom:754.492500px;}
.y31{bottom:754.653000px;}
.yd5{bottom:764.667000px;}
.y5f{bottom:770.320500px;}
.y88{bottom:773.598000px;}
.y30{bottom:773.757000px;}
.y4{bottom:778.225500px;}
.y5e{bottom:780.058500px;}
.yd4{bottom:786.007500px;}
.y87{bottom:792.702000px;}
.y5d{bottom:801.225000px;}
.y2f{bottom:805.899000px;}
.yd3{bottom:807.346500px;}
.y2e{bottom:810.295500px;}
.y5c{bottom:810.963000px;}
.y86{bottom:811.806000px;}
.y12{bottom:815.670000px;}
.yd2{bottom:828.687000px;}
.y2d{bottom:829.962000px;}
.y85{bottom:830.910000px;}
.y5b{bottom:832.129500px;}
.yd1{bottom:845.544000px;}
.y5a{bottom:847.581000px;}
.y2c{bottom:849.628500px;}
.y84{bottom:850.015500px;}
.y59{bottom:863.032500px;}
.yd0{bottom:866.884500px;}
.y83{bottom:869.119500px;}
.y58{bottom:872.772000px;}
.y82{bottom:888.223500px;}
.y57{bottom:893.937000px;}
.y3{bottom:905.716500px;}
.y81{bottom:928.572000px;}
.y2b{bottom:930.798000px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h1b{height:17.548598px;}
.h15{height:25.249382px;}
.h4{height:33.000000px;}
.h16{height:40.402598px;}
.h1c{height:41.544042px;}
.h17{height:42.859105px;}
.h14{height:44.891476px;}
.h1a{height:45.818220px;}
.hb{height:49.156405px;}
.h18{height:49.975733px;}
.h19{height:49.981733px;}
.hd{height:51.216077px;}
.h13{height:57.413702px;}
.h12{height:57.419702px;}
.h3{height:58.406250px;}
.h11{height:59.613450px;}
.h10{height:59.619450px;}
.hc{height:59.693702px;}
.he{height:63.353702px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:89.241043px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:999.000000px;}
.h9{height:999.213000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:680.250000px;}
.w9{width:680.314500px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x28{left:72.135000px;}
.xa{left:73.629000px;}
.x3b{left:79.605000px;}
.x3a{left:81.099000px;}
.x14{left:87.846000px;}
.x30{left:90.555000px;}
.x32{left:93.469500px;}
.x16{left:94.702500px;}
.x1c{left:98.329500px;}
.x12{left:100.752000px;}
.x19{left:102.505500px;}
.x3c{left:103.557000px;}
.x13{left:105.291000px;}
.x10{left:108.096000px;}
.x2e{left:109.098000px;}
.xf{left:112.158000px;}
.x1a{left:113.923500px;}
.x11{left:115.482000px;}
.xc{left:117.949500px;}
.x15{left:120.283500px;}
.x1e{left:121.576500px;}
.x1d{left:122.838000px;}
.x17{left:124.665000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x18{left:130.725000px;}
.x20{left:140.052000px;}
.xb{left:146.689500px;}
.x29{left:149.487000px;}
.x1b{left:153.402000px;}
.x33{left:158.616000px;}
.x24{left:160.498500px;}
.x21{left:161.743500px;}
.x22{left:165.559500px;}
.x1f{left:169.246500px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x23{left:192.783000px;}
.x7{left:200.715000px;}
.x25{left:208.570500px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x2c{left:221.139000px;}
.x6{left:222.480000px;}
.x2d{left:232.989000px;}
.x34{left:236.808000px;}
.x2a{left:241.528500px;}
.xd{left:247.305000px;}
.x26{left:263.757000px;}
.x2f{left:267.444000px;}
.x31{left:268.495500px;}
.x2b{left:273.979500px;}
.x38{left:276.333000px;}
.x35{left:278.161500px;}
.x39{left:286.405500px;}
.x36{left:309.090000px;}
.x27{left:310.584000px;}
.x37{left:318.993000px;}
.xe{left:342.330000px;}
@media print{
.v5{vertical-align:-20.314667pt;}
.v8{vertical-align:-11.840000pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.632000pt;}
.v7{vertical-align:19.280000pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v2{vertical-align:26.389333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000125pt;}
.ls8{letter-spacing:0.001333pt;}
.ls49{letter-spacing:0.002384pt;}
.ls4a{letter-spacing:0.002400pt;}
.ls5b{letter-spacing:0.002411pt;}
.ls37{letter-spacing:0.002591pt;}
.ls4{letter-spacing:0.002767pt;}
.ls56{letter-spacing:0.003733pt;}
.ls55{letter-spacing:0.004212pt;}
.ls2{letter-spacing:0.005459pt;}
.lse{letter-spacing:0.626591pt;}
.lsa{letter-spacing:2.651245pt;}
.ls3{letter-spacing:2.652000pt;}
.lsb{letter-spacing:2.652629pt;}
.ls2a{letter-spacing:2.652877pt;}
.ls2d{letter-spacing:2.652911pt;}
.ls10{letter-spacing:2.653258pt;}
.ls14{letter-spacing:2.653433pt;}
.ls11{letter-spacing:2.653768pt;}
.ls13{letter-spacing:2.654566pt;}
.ls24{letter-spacing:2.654614pt;}
.ls16{letter-spacing:2.654692pt;}
.ls25{letter-spacing:2.654857pt;}
.ls20{letter-spacing:2.654978pt;}
.ls26{letter-spacing:2.655633pt;}
.lsd{letter-spacing:2.656125pt;}
.ls22{letter-spacing:2.656428pt;}
.ls1a{letter-spacing:2.656473pt;}
.ls6{letter-spacing:2.657333pt;}
.lsf{letter-spacing:2.657458pt;}
.lsc{letter-spacing:2.657962pt;}
.ls23{letter-spacing:2.658133pt;}
.ls21{letter-spacing:2.658210pt;}
.ls1c{letter-spacing:2.658331pt;}
.ls15{letter-spacing:2.658591pt;}
.ls36{letter-spacing:2.658717pt;}
.ls7{letter-spacing:2.658767pt;}
.ls19{letter-spacing:2.659102pt;}
.ls1b{letter-spacing:2.659948pt;}
.ls18{letter-spacing:2.660025pt;}
.ls27{letter-spacing:2.660190pt;}
.ls12{letter-spacing:2.661459pt;}
.ls1f{letter-spacing:2.661762pt;}
.ls53{letter-spacing:2.951264pt;}
.ls2b{letter-spacing:2.956597pt;}
.ls43{letter-spacing:3.071003pt;}
.ls29{letter-spacing:3.168517pt;}
.ls28{letter-spacing:3.170210pt;}
.ls1e{letter-spacing:3.173806pt;}
.ls44{letter-spacing:3.233914pt;}
.ls17{letter-spacing:3.281962pt;}
.ls9{letter-spacing:3.282591pt;}
.ls42{letter-spacing:4.162391pt;}
.ls32{letter-spacing:4.167686pt;}
.ls2f{letter-spacing:4.173019pt;}
.ls3b{letter-spacing:4.567251pt;}
.ls48{letter-spacing:5.162476pt;}
.ls1d{letter-spacing:5.236311pt;}
.ls4d{letter-spacing:9.600008pt;}
.ls41{letter-spacing:9.643600pt;}
.ls5c{letter-spacing:9.658190pt;}
.ls45{letter-spacing:13.032738pt;}
.ls62{letter-spacing:14.757812pt;}
.ls31{letter-spacing:15.295879pt;}
.ls59{letter-spacing:15.695879pt;}
.ls65{letter-spacing:17.068725pt;}
.ls50{letter-spacing:17.092811pt;}
.ls64{letter-spacing:17.703392pt;}
.ls60{letter-spacing:17.708725pt;}
.ls30{letter-spacing:18.749342pt;}
.ls33{letter-spacing:18.754675pt;}
.ls38{letter-spacing:18.813258pt;}
.ls5a{letter-spacing:18.818591pt;}
.ls3e{letter-spacing:19.034194pt;}
.ls34{letter-spacing:19.151879pt;}
.ls4f{letter-spacing:19.757258pt;}
.ls35{letter-spacing:20.362546pt;}
.ls3a{letter-spacing:20.363653pt;}
.ls47{letter-spacing:20.456050pt;}
.ls61{letter-spacing:20.549605pt;}
.ls2c{letter-spacing:21.473931pt;}
.ls63{letter-spacing:21.512156pt;}
.ls5e{letter-spacing:21.949383pt;}
.ls40{letter-spacing:22.882717pt;}
.ls54{letter-spacing:23.749213pt;}
.ls3f{letter-spacing:24.261838pt;}
.ls39{letter-spacing:24.322870pt;}
.ls5d{letter-spacing:24.692811pt;}
.ls58{letter-spacing:24.714546pt;}
.ls57{letter-spacing:25.333213pt;}
.ls4b{letter-spacing:25.421383pt;}
.ls4c{letter-spacing:25.426717pt;}
.ls3d{letter-spacing:25.597383pt;}
.ls3c{letter-spacing:26.461024pt;}
.ls52{letter-spacing:27.309383pt;}
.ls51{letter-spacing:27.314717pt;}
.ls5f{letter-spacing:29.656050pt;}
.ls4e{letter-spacing:30.280050pt;}
.ls46{letter-spacing:33.058391pt;}
.ls2e{letter-spacing:34.240271pt;}
.ls1{letter-spacing:39.735925pt;}
.ws28{word-spacing:-37.899668pt;}
.ws29{word-spacing:-29.521250pt;}
.ws58{word-spacing:-28.928024pt;}
.ws11{word-spacing:-26.561620pt;}
.ws1f{word-spacing:-24.570327pt;}
.ws78{word-spacing:-19.328016pt;}
.ws0{word-spacing:-16.874667pt;}
.ws27{word-spacing:-16.162923pt;}
.ws4c{word-spacing:-15.953468pt;}
.ws1c{word-spacing:-14.760588pt;}
.ws32{word-spacing:-14.557103pt;}
.ws85{word-spacing:-14.033466pt;}
.ws18{word-spacing:-13.915760pt;}
.ws6f{word-spacing:-13.543823pt;}
.ws70{word-spacing:-13.520339pt;}
.ws8f{word-spacing:-13.451648pt;}
.ws80{word-spacing:-13.102556pt;}
.ws74{word-spacing:-12.811647pt;}
.ws2c{word-spacing:-11.997101pt;}
.ws1d{word-spacing:-11.949807pt;}
.ws2b{word-spacing:-11.938919pt;}
.ws76{word-spacing:-11.240737pt;}
.ws57{word-spacing:-11.147408pt;}
.ws56{word-spacing:-11.124373pt;}
.ws82{word-spacing:-11.066191pt;}
.ws42{word-spacing:-10.658918pt;}
.ws41{word-spacing:-10.643038pt;}
.ws81{word-spacing:-10.542554pt;}
.ws54{word-spacing:-10.251645pt;}
.ws53{word-spacing:-10.242120pt;}
.ws55{word-spacing:-10.193463pt;}
.ws1a{word-spacing:-10.090121pt;}
.ws1b{word-spacing:-10.069672pt;}
.ws23{word-spacing:-9.960736pt;}
.ws8c{word-spacing:-9.902554pt;}
.ws71{word-spacing:-9.786190pt;}
.ws3d{word-spacing:-9.669826pt;}
.ws9e{word-spacing:-9.665568pt;}
.wsa0{word-spacing:-9.665050pt;}
.ws4{word-spacing:-9.611644pt;}
.ws86{word-spacing:-9.495281pt;}
.ws68{word-spacing:-9.452515pt;}
.ws6a{word-spacing:-9.424545pt;}
.ws69{word-spacing:-9.423571pt;}
.ws8e{word-spacing:-9.262553pt;}
.ws83{word-spacing:-9.204371pt;}
.ws60{word-spacing:-9.088008pt;}
.ws3b{word-spacing:-9.029826pt;}
.ws6b{word-spacing:-9.027444pt;}
.ws51{word-spacing:-9.004252pt;}
.ws98{word-spacing:-8.871621pt;}
.ws97{word-spacing:-8.870996pt;}
.ws96{word-spacing:-8.869376pt;}
.wsb{word-spacing:-8.868042pt;}
.ws9b{word-spacing:-8.867454pt;}
.wsa2{word-spacing:-8.866637pt;}
.wsa1{word-spacing:-8.863606pt;}
.ws9c{word-spacing:-8.858250pt;}
.ws94{word-spacing:-8.855342pt;}
.ws40{word-spacing:-8.855280pt;}
.ws9a{word-spacing:-8.850401pt;}
.ws1e{word-spacing:-8.849994pt;}
.ws99{word-spacing:-8.814908pt;}
.ws3f{word-spacing:-8.797098pt;}
.ws24{word-spacing:-8.738916pt;}
.ws59{word-spacing:-8.622553pt;}
.ws2f{word-spacing:-8.564371pt;}
.ws2d{word-spacing:-8.543197pt;}
.ws30{word-spacing:-8.506189pt;}
.ws3e{word-spacing:-8.273461pt;}
.ws37{word-spacing:-8.223421pt;}
.wsd{word-spacing:-8.215613pt;}
.ws38{word-spacing:-8.215280pt;}
.wsc{word-spacing:-8.167793pt;}
.ws4e{word-spacing:-8.098916pt;}
.ws10{word-spacing:-8.071034pt;}
.ws12{word-spacing:-8.017900pt;}
.ws47{word-spacing:-7.749825pt;}
.ws33{word-spacing:-7.402660pt;}
.ws46{word-spacing:-7.168006pt;}
.ws66{word-spacing:-7.061491pt;}
.ws45{word-spacing:-7.051642pt;}
.ws21{word-spacing:-6.702551pt;}
.ws7a{word-spacing:-6.520789pt;}
.ws22{word-spacing:-6.295278pt;}
.ws5a{word-spacing:-6.178914pt;}
.ws5b{word-spacing:-6.167375pt;}
.ws26{word-spacing:-6.004369pt;}
.ws67{word-spacing:-5.467475pt;}
.ws7f{word-spacing:-5.422550pt;}
.ws4b{word-spacing:-5.248004pt;}
.ws13{word-spacing:-4.723601pt;}
.ws39{word-spacing:-4.666186pt;}
.ws63{word-spacing:-4.608004pt;}
.ws79{word-spacing:-4.556708pt;}
.ws7b{word-spacing:-4.549822pt;}
.ws6e{word-spacing:-4.511065pt;}
.ws3c{word-spacing:-4.433458pt;}
.ws25{word-spacing:-4.258913pt;}
.ws62{word-spacing:-4.246046pt;}
.ws3a{word-spacing:-4.084367pt;}
.ws6d{word-spacing:-3.883006pt;}
.ws6c{word-spacing:-3.873459pt;}
.ws84{word-spacing:-3.851640pt;}
.ws43{word-spacing:-3.793458pt;}
.ws44{word-spacing:-3.735276pt;}
.ws61{word-spacing:-3.560730pt;}
.ws73{word-spacing:-3.502548pt;}
.ws8a{word-spacing:-3.211639pt;}
.ws9d{word-spacing:-2.958859pt;}
.ws8b{word-spacing:-2.920730pt;}
.ws95{word-spacing:-2.917049pt;}
.ws4d{word-spacing:-2.571639pt;}
.ws89{word-spacing:-2.455275pt;}
.ws4a{word-spacing:-2.164365pt;}
.ws49{word-spacing:-2.106184pt;}
.ws7e{word-spacing:-1.939116pt;}
.ws7d{word-spacing:-1.932708pt;}
.ws7c{word-spacing:-1.931638pt;}
.ws87{word-spacing:-1.815274pt;}
.ws5d{word-spacing:-1.349819pt;}
.ws5e{word-spacing:-1.291637pt;}
.ws8d{word-spacing:-0.942546pt;}
.ws14{word-spacing:-0.632293pt;}
.ws16{word-spacing:-0.631347pt;}
.ws8{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.058182pt;}
.ws90{word-spacing:-0.053134pt;}
.ws35{word-spacing:-0.047821pt;}
.ws6{word-spacing:-0.042507pt;}
.ws17{word-spacing:-0.037194pt;}
.ws50{word-spacing:-0.034041pt;}
.ws4f{word-spacing:-0.033045pt;}
.ws52{word-spacing:-0.011636pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.010627pt;}
.ws2a{word-spacing:0.011636pt;}
.ws5c{word-spacing:0.221091pt;}
.ws2e{word-spacing:1.815274pt;}
.ws88{word-spacing:2.082911pt;}
.ws48{word-spacing:2.432002pt;}
.ws72{word-spacing:2.953088pt;}
.ws5f{word-spacing:3.687211pt;}
.ws31{word-spacing:6.120732pt;}
.ws36{word-spacing:8.076348pt;}
.ws15{word-spacing:11.183405pt;}
.ws75{word-spacing:16.052259pt;}
.ws77{word-spacing:17.637228pt;}
.ws91{word-spacing:17.660448pt;}
.ws93{word-spacing:17.671257pt;}
.ws34{word-spacing:18.219725pt;}
.ws9f{word-spacing:18.224916pt;}
.wsf{word-spacing:18.915657pt;}
.wse{word-spacing:18.968790pt;}
.ws2{word-spacing:19.258198pt;}
.ws65{word-spacing:20.031468pt;}
.wsa{word-spacing:21.527291pt;}
.ws9{word-spacing:21.585473pt;}
.ws92{word-spacing:22.015535pt;}
.ws20{word-spacing:22.109109pt;}
.ws7{word-spacing:24.463314pt;}
.ws5{word-spacing:24.484250pt;}
.ws64{word-spacing:640.226001pt;}
._6{margin-left:-7.842611pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.195503pt;}
._3{margin-left:-3.808000pt;}
._7{margin-left:-2.719471pt;}
._1{margin-left:-1.774933pt;}
._d{width:0.919723pt;}
._4{width:1.950252pt;}
._12{width:3.320711pt;}
._0{width:4.966400pt;}
._1d{width:8.873356pt;}
._b{width:15.487403pt;}
._a{width:17.261807pt;}
._1e{width:18.604389pt;}
._14{width:19.905280pt;}
._c{width:20.998895pt;}
._9{width:22.496206pt;}
._10{width:23.414397pt;}
._11{width:24.874680pt;}
._17{width:26.037545pt;}
._f{width:28.396737pt;}
._13{width:29.589975pt;}
._1a{width:31.738595pt;}
._19{width:32.658768pt;}
._20{width:37.033145pt;}
._1f{width:38.335161pt;}
._16{width:40.727307pt;}
._18{width:43.491332pt;}
._1c{width:44.520315pt;}
._e{width:48.813577pt;}
._1b{width:50.782295pt;}
._5{width:210.005636pt;}
._15{width:227.109339pt;}
.fs7{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y20{bottom:-166.413333pt;}
.y1f{bottom:-146.786667pt;}
.y1e{bottom:-127.160000pt;}
.y1d{bottom:-107.533333pt;}
.y1c{bottom:-87.920000pt;}
.y1b{bottom:-68.293333pt;}
.y1a{bottom:-48.666667pt;}
.y19{bottom:-29.040000pt;}
.y18{bottom:-9.413333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.920000pt;}
.yc{bottom:7.146667pt;}
.y17{bottom:10.200000pt;}
.y28{bottom:22.546667pt;}
.y16{bottom:29.826667pt;}
.y27{bottom:42.173333pt;}
.y56{bottom:46.184000pt;}
.y15{bottom:49.453333pt;}
.y26{bottom:61.786667pt;}
.y14{bottom:69.080000pt;}
.yb1{bottom:78.016000pt;}
.y25{bottom:81.413333pt;}
.y80{bottom:82.848000pt;}
.ycf{bottom:86.033333pt;}
.ya8{bottom:86.034667pt;}
.y13{bottom:88.706667pt;}
.y55{bottom:91.113333pt;}
.yb0{bottom:94.997333pt;}
.y54{bottom:99.769333pt;}
.yce{bottom:101.017333pt;}
.y24{bottom:101.040000pt;}
.y7f{bottom:101.662667pt;}
.ya7{bottom:103.016000pt;}
.yaf{bottom:111.978667pt;}
.y53{bottom:118.582667pt;}
.ycd{bottom:119.986667pt;}
.ya6{bottom:119.997333pt;}
.y23{bottom:120.666667pt;}
.y7e{bottom:123.545333pt;}
.y52{bottom:127.240000pt;}
.yae{bottom:128.960000pt;}
.ya5{bottom:136.978667pt;}
.y21{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.ycc{bottom:138.956000pt;}
.y22{bottom:140.293333pt;}
.y7d{bottom:140.526667pt;}
.yad{bottom:145.942667pt;}
.y51{bottom:146.053333pt;}
.ya4{bottom:153.961333pt;}
.y50{bottom:154.710667pt;}
.y7c{bottom:157.509333pt;}
.ycb{bottom:157.924000pt;}
.y4f{bottom:168.445333pt;}
.ya3{bottom:170.942667pt;}
.y7b{bottom:174.490667pt;}
.yca{bottom:176.893333pt;}
.y4e{bottom:187.258667pt;}
.ya2{bottom:187.924000pt;}
.y7a{bottom:191.472000pt;}
.yc9{bottom:191.877333pt;}
.y4d{bottom:195.916000pt;}
.ya1{bottom:205.450667pt;}
.y79{bottom:208.453333pt;}
.y4c{bottom:214.729333pt;}
.ya0{bottom:222.432000pt;}
.y78{bottom:225.436000pt;}
.yc8{bottom:227.268000pt;}
.y4b{bottom:228.465333pt;}
.y9f{bottom:239.413333pt;}
.y4a{bottom:242.200000pt;}
.y77{bottom:242.417333pt;}
.y49{bottom:255.934667pt;}
.y9e{bottom:256.396000pt;}
.y76{bottom:259.398667pt;}
.y48{bottom:269.670667pt;}
.yc7{bottom:270.988000pt;}
.y9d{bottom:273.377333pt;}
.y75{bottom:276.381333pt;}
.y47{bottom:283.405333pt;}
.yc6{bottom:287.969333pt;}
.y9c{bottom:290.358667pt;}
.y46{bottom:297.141333pt;}
.y74{bottom:301.804000pt;}
.yc5{bottom:304.950667pt;}
.ya{bottom:306.382667pt;}
.y9b{bottom:307.340000pt;}
.y45{bottom:310.876000pt;}
.yc4{bottom:321.932000pt;}
.y9a{bottom:333.518667pt;}
.y44{bottom:334.650667pt;}
.yc3{bottom:338.914667pt;}
.y73{bottom:342.237333pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.yc2{bottom:355.896000pt;}
.y43{bottom:365.132000pt;}
.y99{bottom:369.856000pt;}
.yc1{bottom:372.877333pt;}
.y72{bottom:375.444000pt;}
.y42{bottom:382.113333pt;}
.yb{bottom:386.533333pt;}
.y98{bottom:386.838667pt;}
.yc0{bottom:389.858667pt;}
.y71{bottom:390.428000pt;}
.y8{bottom:397.065333pt;}
.y41{bottom:399.096000pt;}
.y97{bottom:403.820000pt;}
.y70{bottom:405.412000pt;}
.ybf{bottom:406.841333pt;}
.y40{bottom:416.077333pt;}
.y6f{bottom:420.396000pt;}
.y96{bottom:420.801333pt;}
.ybe{bottom:423.822667pt;}
.y3f{bottom:433.058667pt;}
.y10{bottom:433.826667pt;}
.y6e{bottom:435.380000pt;}
.y95{bottom:437.782667pt;}
.ybd{bottom:440.804000pt;}
.y7{bottom:442.406667pt;}
.y3e{bottom:450.040000pt;}
.y6d{bottom:450.364000pt;}
.y94{bottom:454.765333pt;}
.ybc{bottom:457.785333pt;}
.y6c{bottom:465.348000pt;}
.y3d{bottom:467.022667pt;}
.y93{bottom:471.746667pt;}
.ybb{bottom:474.768000pt;}
.y11{bottom:478.426667pt;}
.ye0{bottom:483.001333pt;}
.y3c{bottom:484.004000pt;}
.y6{bottom:487.748000pt;}
.y92{bottom:488.728000pt;}
.yba{bottom:491.749333pt;}
.y6b{bottom:497.049333pt;}
.y3b{bottom:500.985333pt;}
.ydf{bottom:501.970667pt;}
.y91{bottom:506.254667pt;}
.yb9{bottom:508.730667pt;}
.y6a{bottom:514.030667pt;}
.yde{bottom:516.953333pt;}
.y3a{bottom:517.966667pt;}
.y90{bottom:523.236000pt;}
.y2a{bottom:524.093333pt;}
.yb8{bottom:525.713333pt;}
.y5{bottom:533.089333pt;}
.y39{bottom:534.949333pt;}
.ydd{bottom:535.922667pt;}
.yac{bottom:537.566667pt;}
.y8f{bottom:540.217333pt;}
.y69{bottom:547.377333pt;}
.ydc{bottom:550.906667pt;}
.y38{bottom:551.930667pt;}
.yab{bottom:554.549333pt;}
.y68{bottom:556.033333pt;}
.y8e{bottom:557.200000pt;}
.ye{bottom:561.706667pt;}
.y37{bottom:568.912000pt;}
.ydb{bottom:569.876000pt;}
.yb7{bottom:569.996000pt;}
.yaa{bottom:571.530667pt;}
.y8d{bottom:574.181333pt;}
.y67{bottom:574.848000pt;}
.y66{bottom:583.504000pt;}
.y36{bottom:585.893333pt;}
.yb6{bottom:586.977333pt;}
.ya9{bottom:588.512000pt;}
.yda{bottom:588.844000pt;}
.y8c{bottom:591.162667pt;}
.y65{bottom:602.318667pt;}
.y35{bottom:602.876000pt;}
.yd9{bottom:603.828000pt;}
.yb5{bottom:603.958667pt;}
.y8b{bottom:608.144000pt;}
.y64{bottom:616.053333pt;}
.y34{bottom:619.857333pt;}
.yb4{bottom:620.940000pt;}
.yd8{bottom:622.797333pt;}
.y63{bottom:629.788000pt;}
.y8a{bottom:634.324000pt;}
.y33{bottom:636.838667pt;}
.yb3{bottom:637.922667pt;}
.y62{bottom:638.445333pt;}
.yd7{bottom:641.766667pt;}
.y32{bottom:653.820000pt;}
.y61{bottom:657.258667pt;}
.yd6{bottom:660.734667pt;}
.yb2{bottom:664.684000pt;}
.y60{bottom:665.916000pt;}
.y89{bottom:670.660000pt;}
.y31{bottom:670.802667pt;}
.yd5{bottom:679.704000pt;}
.y5f{bottom:684.729333pt;}
.y88{bottom:687.642667pt;}
.y30{bottom:687.784000pt;}
.y4{bottom:691.756000pt;}
.y5e{bottom:693.385333pt;}
.yd4{bottom:698.673333pt;}
.y87{bottom:704.624000pt;}
.y5d{bottom:712.200000pt;}
.y2f{bottom:716.354667pt;}
.yd3{bottom:717.641333pt;}
.y2e{bottom:720.262667pt;}
.y5c{bottom:720.856000pt;}
.y86{bottom:721.605333pt;}
.y12{bottom:725.040000pt;}
.yd2{bottom:736.610667pt;}
.y2d{bottom:737.744000pt;}
.y85{bottom:738.586667pt;}
.y5b{bottom:739.670667pt;}
.yd1{bottom:751.594667pt;}
.y5a{bottom:753.405333pt;}
.y2c{bottom:755.225333pt;}
.y84{bottom:755.569333pt;}
.y59{bottom:767.140000pt;}
.yd0{bottom:770.564000pt;}
.y83{bottom:772.550667pt;}
.y58{bottom:775.797333pt;}
.y82{bottom:789.532000pt;}
.y57{bottom:794.610667pt;}
.y3{bottom:805.081333pt;}
.y81{bottom:825.397333pt;}
.y2b{bottom:827.376000pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h1b{height:15.598754pt;}
.h15{height:22.443895pt;}
.h4{height:29.333333pt;}
.h16{height:35.913421pt;}
.h1c{height:36.928037pt;}
.h17{height:38.096982pt;}
.h14{height:39.903534pt;}
.h1a{height:40.727307pt;}
.hb{height:43.694582pt;}
.h18{height:44.422874pt;}
.h19{height:44.428207pt;}
.hd{height:45.525402pt;}
.h13{height:51.034402pt;}
.h12{height:51.039735pt;}
.h3{height:51.916667pt;}
.h11{height:52.989733pt;}
.h10{height:52.995067pt;}
.hc{height:53.061069pt;}
.he{height:56.314402pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:79.325372pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:888.000000pt;}
.h9{height:888.189333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:604.666667pt;}
.w9{width:604.724000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x28{left:64.120000pt;}
.xa{left:65.448000pt;}
.x3b{left:70.760000pt;}
.x3a{left:72.088000pt;}
.x14{left:78.085333pt;}
.x30{left:80.493333pt;}
.x32{left:83.084000pt;}
.x16{left:84.180000pt;}
.x1c{left:87.404000pt;}
.x12{left:89.557333pt;}
.x19{left:91.116000pt;}
.x3c{left:92.050667pt;}
.x13{left:93.592000pt;}
.x10{left:96.085333pt;}
.x2e{left:96.976000pt;}
.xf{left:99.696000pt;}
.x1a{left:101.265333pt;}
.x11{left:102.650667pt;}
.xc{left:104.844000pt;}
.x15{left:106.918667pt;}
.x1e{left:108.068000pt;}
.x1d{left:109.189333pt;}
.x17{left:110.813333pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x18{left:116.200000pt;}
.x20{left:124.490667pt;}
.xb{left:130.390667pt;}
.x29{left:132.877333pt;}
.x1b{left:136.357333pt;}
.x33{left:140.992000pt;}
.x24{left:142.665333pt;}
.x21{left:143.772000pt;}
.x22{left:147.164000pt;}
.x1f{left:150.441333pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x23{left:171.362667pt;}
.x7{left:178.413333pt;}
.x25{left:185.396000pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x2c{left:196.568000pt;}
.x6{left:197.760000pt;}
.x2d{left:207.101333pt;}
.x34{left:210.496000pt;}
.x2a{left:214.692000pt;}
.xd{left:219.826667pt;}
.x26{left:234.450667pt;}
.x2f{left:237.728000pt;}
.x31{left:238.662667pt;}
.x2b{left:243.537333pt;}
.x38{left:245.629333pt;}
.x35{left:247.254667pt;}
.x39{left:254.582667pt;}
.x36{left:274.746667pt;}
.x27{left:276.074667pt;}
.x37{left:283.549333pt;}
.xe{left:304.293333pt;}
}




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