
    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_8bdc03d6eab3b6feabc7a53e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_e617a26ffbaa998493ce2c93.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.253000;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.253000;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_fbe3fa1ff9f90c36490c278b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907227;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_111858c07b49fba582144436.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027000;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_3a179b80cd0eb7886262138d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_993c2b85e4911283d2d8d55b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a5bd10e7a557f50dfa5a7330.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890625;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_b3078eac90f4af3c9ba2a3a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.253000;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.253000;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_993b3a0b76fa41e9933cb41a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_4a6d3183ffef98a6fd52bac3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_0b7cd7b383ba3c1e55663872.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.fff{font-family:fff;line-height:1.253000;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_833b8820f8dceb9513e7afbc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.730000;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_1b8f3fddd19eb261606a69e5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.882324;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.253000;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_09b4818a8b7fd084843ddc56.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.013000;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_ccb2b35af5f9e1fa117aaca7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.253000;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);}
.v2{vertical-align:-23.119800px;}
.v5{vertical-align:-10.507800px;}
.v6{vertical-align:-1.340400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.245000px;}
.v3{vertical-align:23.119800px;}
.v4{vertical-align:27.454200px;}
.v1{vertical-align:30.344400px;}
.v7{vertical-align:33.000000px;}
.ls75{letter-spacing:-1.197000px;}
.ls72{letter-spacing:-1.140000px;}
.ls74{letter-spacing:-1.083000px;}
.ls87{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.969000px;}
.ls17{letter-spacing:-0.960000px;}
.ls40{letter-spacing:-0.855000px;}
.ls4f{letter-spacing:-0.798000px;}
.ls73{letter-spacing:-0.684000px;}
.ls15{letter-spacing:-0.570000px;}
.ls8a{letter-spacing:-0.540000px;}
.ls76{letter-spacing:-0.513000px;}
.ls78{letter-spacing:-0.503712px;}
.ls3f{letter-spacing:-0.399000px;}
.ls77{letter-spacing:-0.240000px;}
.ls51{letter-spacing:-0.228000px;}
.ls71{letter-spacing:-0.171000px;}
.ls18{letter-spacing:-0.144000px;}
.ls50{letter-spacing:-0.114000px;}
.ls8b{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.057000px;}
.ls8e{letter-spacing:-0.054000px;}
.ls14{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000096px;}
.ls7d{letter-spacing:0.000111px;}
.ls6{letter-spacing:0.057000px;}
.ls11{letter-spacing:0.102000px;}
.ls0{letter-spacing:0.114000px;}
.ls32{letter-spacing:0.171000px;}
.ls67{letter-spacing:0.199500px;}
.lse{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.225504px;}
.ls8{letter-spacing:0.226104px;}
.ls69{letter-spacing:0.228000px;}
.ls27{letter-spacing:0.242511px;}
.ls81{letter-spacing:0.256500px;}
.ls1e{letter-spacing:0.285000px;}
.ls13{letter-spacing:0.306000px;}
.ls7{letter-spacing:0.342000px;}
.ls12{letter-spacing:0.357000px;}
.ls80{letter-spacing:0.370500px;}
.ls9{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.399000px;}
.ls6e{letter-spacing:0.427500px;}
.ls5a{letter-spacing:0.456000px;}
.ls29{letter-spacing:0.513000px;}
.lsb{letter-spacing:0.528000px;}
.ls89{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.570000px;}
.ls6f{letter-spacing:0.588711px;}
.lsd{letter-spacing:0.612000px;}
.ls3d{letter-spacing:0.627000px;}
.ls7b{letter-spacing:0.655500px;}
.ls2c{letter-spacing:0.684000px;}
.ls43{letter-spacing:0.741000px;}
.ls10{letter-spacing:0.790500px;}
.ls3a{letter-spacing:0.798000px;}
.lsf{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.855000px;}
.ls45{letter-spacing:0.883500px;}
.ls19{letter-spacing:0.912000px;}
.ls3c{letter-spacing:0.937311px;}
.ls1{letter-spacing:0.969000px;}
.ls38{letter-spacing:1.026000px;}
.lsc{letter-spacing:1.071000px;}
.ls3e{letter-spacing:1.083000px;}
.ls2f{letter-spacing:1.140000px;}
.ls8c{letter-spacing:1.173000px;}
.ls5{letter-spacing:1.197000px;}
.ls30{letter-spacing:1.219800px;}
.ls6a{letter-spacing:1.225500px;}
.ls39{letter-spacing:1.254000px;}
.ls7c{letter-spacing:1.282500px;}
.ls55{letter-spacing:1.311000px;}
.ls56{letter-spacing:1.326600px;}
.ls33{letter-spacing:1.368000px;}
.ls22{letter-spacing:1.425000px;}
.ls36{letter-spacing:1.482000px;}
.ls57{letter-spacing:1.539000px;}
.ls1f{letter-spacing:1.567500px;}
.ls20{letter-spacing:1.596000px;}
.ls3b{letter-spacing:1.606800px;}
.ls85{letter-spacing:1.624500px;}
.ls25{letter-spacing:1.653000px;}
.ls54{letter-spacing:1.710000px;}
.ls66{letter-spacing:1.767000px;}
.ls21{letter-spacing:1.824000px;}
.ls49{letter-spacing:1.881000px;}
.ls2{letter-spacing:1.938000px;}
.ls23{letter-spacing:1.995000px;}
.ls1b{letter-spacing:2.052000px;}
.ls48{letter-spacing:2.080500px;}
.ls7e{letter-spacing:2.109000px;}
.ls7a{letter-spacing:2.166000px;}
.ls52{letter-spacing:2.223000px;}
.ls46{letter-spacing:2.251500px;}
.ls34{letter-spacing:2.280000px;}
.ls28{letter-spacing:2.337000px;}
.ls2e{letter-spacing:2.394000px;}
.ls86{letter-spacing:2.422500px;}
.ls53{letter-spacing:2.451000px;}
.ls6d{letter-spacing:2.479500px;}
.ls42{letter-spacing:2.508000px;}
.ls6b{letter-spacing:2.565000px;}
.ls35{letter-spacing:2.622000px;}
.ls2d{letter-spacing:2.679000px;}
.ls1c{letter-spacing:2.736000px;}
.ls24{letter-spacing:2.793000px;}
.ls44{letter-spacing:2.850000px;}
.ls58{letter-spacing:2.907000px;}
.ls41{letter-spacing:3.021000px;}
.ls2b{letter-spacing:3.078000px;}
.ls5e{letter-spacing:3.135000px;}
.ls83{letter-spacing:3.192000px;}
.ls70{letter-spacing:3.249000px;}
.ls1a{letter-spacing:3.363000px;}
.ls65{letter-spacing:3.420000px;}
.ls59{letter-spacing:3.477000px;}
.ls88{letter-spacing:3.505500px;}
.ls3{letter-spacing:3.591000px;}
.ls47{letter-spacing:3.705000px;}
.ls82{letter-spacing:3.762000px;}
.ls6c{letter-spacing:3.819000px;}
.ls68{letter-spacing:3.876000px;}
.ls37{letter-spacing:3.933000px;}
.ls84{letter-spacing:3.961500px;}
.ls7f{letter-spacing:4.047000px;}
.ls60{letter-spacing:4.104000px;}
.ls2a{letter-spacing:4.275000px;}
.ls31{letter-spacing:4.332000px;}
.ls5d{letter-spacing:4.902000px;}
.ls8d{letter-spacing:4.947000px;}
.ls5c{letter-spacing:4.987500px;}
.ls79{letter-spacing:6.555000px;}
.ls5b{letter-spacing:7.809000px;}
.ls4b{letter-spacing:68.901096px;}
.ls4c{letter-spacing:78.155496px;}
.ls4d{letter-spacing:110.344896px;}
.ls4e{letter-spacing:137.523096px;}
.ls61{letter-spacing:221.644296px;}
.ls64{letter-spacing:265.276896px;}
.ls62{letter-spacing:273.268296px;}
.ls63{letter-spacing:279.460296px;}
.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;}
}
.ws62{word-spacing:-57.000000px;}
.ws6f{word-spacing:-54.000000px;}
.ws48{word-spacing:-48.000000px;}
.ws0{word-spacing:-18.183000px;}
.ws66{word-spacing:-17.043000px;}
.ws4a{word-spacing:-15.789000px;}
.ws6d{word-spacing:-14.877000px;}
.ws37{word-spacing:-14.763000px;}
.ws19{word-spacing:-14.193000px;}
.ws6e{word-spacing:-13.623000px;}
.ws44{word-spacing:-13.344000px;}
.ws5d{word-spacing:-13.104000px;}
.ws3{word-spacing:-12.960000px;}
.ws61{word-spacing:-12.432000px;}
.ws1{word-spacing:-10.210662px;}
.ws49{word-spacing:-8.606829px;}
.ws5f{word-spacing:-7.779552px;}
.ws60{word-spacing:-7.275840px;}
.ws2{word-spacing:-7.247856px;}
.ws20{word-spacing:-2.280000px;}
.ws70{word-spacing:-2.166000px;}
.ws54{word-spacing:-1.026000px;}
.ws3c{word-spacing:-0.855000px;}
.ws74{word-spacing:-0.540000px;}
.ws42{word-spacing:-0.456000px;}
.ws6b{word-spacing:-0.399000px;}
.ws17{word-spacing:-0.357000px;}
.ws65{word-spacing:-0.342000px;}
.ws4b{word-spacing:-0.228000px;}
.ws69{word-spacing:-0.171000px;}
.ws71{word-spacing:-0.114000px;}
.ws16{word-spacing:-0.102000px;}
.ws1c{word-spacing:-0.057000px;}
.ws4{word-spacing:-0.051000px;}
.ws5{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws3a{word-spacing:0.114000px;}
.ws32{word-spacing:0.171000px;}
.ws26{word-spacing:0.228000px;}
.ws2b{word-spacing:0.285000px;}
.ws22{word-spacing:0.399000px;}
.ws21{word-spacing:0.570000px;}
.ws3f{word-spacing:0.627000px;}
.ws4f{word-spacing:0.684000px;}
.ws23{word-spacing:0.855000px;}
.ws55{word-spacing:0.912000px;}
.ws51{word-spacing:0.969000px;}
.ws10{word-spacing:1.020000px;}
.ws38{word-spacing:1.026000px;}
.ws50{word-spacing:1.140000px;}
.ws53{word-spacing:1.254000px;}
.ws6c{word-spacing:1.311000px;}
.ws28{word-spacing:1.482000px;}
.wse{word-spacing:1.536000px;}
.ws25{word-spacing:1.539000px;}
.ws68{word-spacing:1.596000px;}
.ws59{word-spacing:1.653000px;}
.ws31{word-spacing:1.710000px;}
.ws1a{word-spacing:1.767000px;}
.ws3d{word-spacing:1.881000px;}
.ws30{word-spacing:1.938000px;}
.ws2a{word-spacing:2.109000px;}
.ws67{word-spacing:2.166000px;}
.ws29{word-spacing:2.223000px;}
.ws9{word-spacing:2.280000px;}
.ws15{word-spacing:2.295000px;}
.ws24{word-spacing:2.394000px;}
.ws58{word-spacing:2.451000px;}
.ws4c{word-spacing:2.508000px;}
.ws63{word-spacing:2.622000px;}
.ws3b{word-spacing:2.679000px;}
.ws13{word-spacing:2.703000px;}
.ws64{word-spacing:2.793000px;}
.ws35{word-spacing:2.850000px;}
.ws41{word-spacing:2.907000px;}
.ws72{word-spacing:2.964000px;}
.wsf{word-spacing:3.009000px;}
.ws36{word-spacing:3.021000px;}
.ws52{word-spacing:3.078000px;}
.ws2c{word-spacing:3.249000px;}
.ws43{word-spacing:3.306000px;}
.wsb{word-spacing:3.420000px;}
.ws5a{word-spacing:3.534000px;}
.ws57{word-spacing:3.591000px;}
.ws34{word-spacing:3.648000px;}
.ws8{word-spacing:3.705000px;}
.ws6a{word-spacing:3.876000px;}
.ws14{word-spacing:3.927000px;}
.ws1f{word-spacing:3.933000px;}
.ws4e{word-spacing:3.990000px;}
.ws27{word-spacing:4.047000px;}
.wsd{word-spacing:4.080000px;}
.wsc{word-spacing:4.128000px;}
.ws33{word-spacing:4.218000px;}
.ws39{word-spacing:4.332000px;}
.ws11{word-spacing:4.335000px;}
.ws12{word-spacing:4.386000px;}
.ws1e{word-spacing:4.446000px;}
.ws4d{word-spacing:4.503000px;}
.ws3e{word-spacing:4.560000px;}
.ws1d{word-spacing:4.617000px;}
.ws75{word-spacing:4.641000px;}
.ws40{word-spacing:4.674000px;}
.ws56{word-spacing:4.731000px;}
.ws1b{word-spacing:4.788000px;}
.wsa{word-spacing:4.845000px;}
.ws7{word-spacing:4.902000px;}
.ws73{word-spacing:18.036000px;}
.ws47{word-spacing:97.224000px;}
.ws5e{word-spacing:97.239600px;}
.ws5b{word-spacing:105.795600px;}
.ws2d{word-spacing:139.442400px;}
.ws46{word-spacing:159.315600px;}
.ws45{word-spacing:253.396800px;}
.ws2f{word-spacing:382.989600px;}
.ws2e{word-spacing:393.645600px;}
.ws5c{word-spacing:898.572600px;}
.ws18{word-spacing:977.736000px;}
._1f{margin-left:-25.389000px;}
._20{margin-left:-22.428600px;}
._b{margin-left:-20.256600px;}
._68{margin-left:-18.553200px;}
._c{margin-left:-15.183600px;}
._2{margin-left:-13.188600px;}
._5e{margin-left:-11.765400px;}
._a{margin-left:-10.271400px;}
._3{margin-left:-7.974300px;}
._1{margin-left:-6.300000px;}
._0{margin-left:-4.500000px;}
._9{margin-left:-3.470400px;}
._5{margin-left:-1.938000px;}
._4{width:1.248300px;}
._7{width:3.261300px;}
._6{width:4.487400px;}
._8{width:5.520600px;}
._23{width:11.471400px;}
._6a{width:18.036000px;}
._1c{width:35.373600px;}
._69{width:46.062000px;}
._1a{width:52.633800px;}
._1b{width:61.888800px;}
._60{width:63.930600px;}
._21{width:68.034000px;}
._1d{width:73.293600px;}
._19{width:81.139800px;}
._61{width:82.414800px;}
._49{width:87.425400px;}
._67{width:89.566800px;}
._28{width:100.830600px;}
._1e{width:107.143800px;}
._3f{width:109.621200px;}
._31{width:110.719200px;}
._2e{width:112.770000px;}
._44{width:117.838200px;}
._62{width:119.235000px;}
._63{width:121.582800px;}
._64{width:124.482600px;}
._5f{width:126.027600px;}
._66{width:127.036200px;}
._65{width:137.488800px;}
._37{width:138.618000px;}
._24{width:140.136000px;}
._27{width:142.342800px;}
._59{width:152.112600px;}
._41{width:153.645600px;}
._3a{width:160.317600px;}
._4f{width:166.989600px;}
._e{width:170.977800px;}
._f{width:178.432800px;}
._53{width:185.374800px;}
._45{width:187.308600px;}
._39{width:206.806200px;}
._42{width:208.876800px;}
._2a{width:212.784600px;}
._3b{width:215.548800px;}
._10{width:217.149000px;}
._2b{width:221.830200px;}
._d{width:225.133800px;}
._29{width:235.564800px;}
._32{width:245.452200px;}
._43{width:247.429200px;}
._2c{width:250.126200px;}
._54{width:253.947600px;}
._46{width:259.080600px;}
._4c{width:263.470200px;}
._3e{width:265.197000px;}
._33{width:267.072600px;}
._47{width:268.125000px;}
._4b{width:269.805000px;}
._34{width:276.118200px;}
._48{width:278.060400px;}
._13{width:279.334200px;}
._51{width:291.403800px;}
._5a{width:301.980600px;}
._2d{width:303.403800px;}
._55{width:304.749000px;}
._50{width:307.942800px;}
._4d{width:314.085000px;}
._35{width:315.094200px;}
._3c{width:318.900600px;}
._5b{width:329.251800px;}
._36{width:342.595800px;}
._58{width:364.818600px;}
._17{width:400.250400px;}
._18{width:409.504200px;}
._52{width:421.560600px;}
._16{width:423.021600px;}
._11{width:424.250400px;}
._12{width:433.504200px;}
._14{width:440.282400px;}
._15{width:449.536200px;}
._5c{width:484.693200px;}
._4e{width:499.962600px;}
._22{width:516.695400px;}
._56{width:551.544600px;}
._25{width:565.211400px;}
._38{width:689.077200px;}
._3d{width:738.395400px;}
._57{width:746.168400px;}
._26{width:808.665000px;}
._4a{width:831.511200px;}
._2f{width:965.989200px;}
._5d{width:1274.941200px;}
._40{width:2765.647200px;}
._30{width:3215.472000px;}
.fc5{color:rgb(48,88,159);}
.fc3{color:transparent;}
.fc1{color:rgb(44,76,137);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fsa{font-size:33.231000px;}
.fs4{font-size:36.729000px;}
.fs0{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.768700px;}
.y1{bottom:53.768850px;}
.ya{bottom:108.344250px;}
.y196{bottom:109.680600px;}
.yef{bottom:111.856500px;}
.yc0{bottom:111.856650px;}
.y1b6{bottom:113.027250px;}
.y63{bottom:113.027400px;}
.y1ca{bottom:113.669550px;}
.y1ef{bottom:116.632950px;}
.y181{bottom:117.378600px;}
.y7e{bottom:127.879200px;}
.y9{bottom:128.270850px;}
.y195{bottom:129.180600px;}
.y11{bottom:129.724650px;}
.yee{bottom:131.381400px;}
.ybf{bottom:131.589000px;}
.y14f{bottom:132.527250px;}
.y62{bottom:132.527400px;}
.y1c9{bottom:133.169550px;}
.y1ee{bottom:136.132950px;}
.y180{bottom:142.128450px;}
.y7d{bottom:147.414300px;}
.y8{bottom:148.197600px;}
.y194{bottom:148.680600px;}
.yed{bottom:150.906300px;}
.y10{bottom:151.105200px;}
.ybe{bottom:151.321350px;}
.y14e{bottom:152.027250px;}
.y61{bottom:152.027400px;}
.y1c8{bottom:152.669550px;}
.y1ed{bottom:155.632950px;}
.y122{bottom:158.519850px;}
.y17f{bottom:158.628450px;}
.y1b9{bottom:161.770050px;}
.y7c{bottom:166.949250px;}
.y7{bottom:168.124200px;}
.y193{bottom:168.180600px;}
.yec{bottom:170.431200px;}
.ybd{bottom:171.053700px;}
.y14d{bottom:171.527250px;}
.y60{bottom:171.527400px;}
.y1c7{bottom:172.169550px;}
.yf{bottom:172.485600px;}
.y17e{bottom:175.128450px;}
.y1ec{bottom:175.132950px;}
.y121{bottom:183.275700px;}
.y81{bottom:186.484200px;}
.y192{bottom:187.680600px;}
.y6{bottom:188.050950px;}
.yeb{bottom:189.956100px;}
.ybc{bottom:190.786050px;}
.y14c{bottom:191.027250px;}
.y5f{bottom:191.027400px;}
.y120{bottom:191.531550px;}
.y17d{bottom:191.628450px;}
.y1c6{bottom:191.669550px;}
.ye{bottom:193.866150px;}
.y1eb{bottom:194.632950px;}
.y7b{bottom:196.262100px;}
.y80{bottom:206.019300px;}
.y191{bottom:207.180600px;}
.y5{bottom:207.977550px;}
.y11f{bottom:208.031550px;}
.y17c{bottom:208.128450px;}
.yea{bottom:209.481150px;}
.ybb{bottom:210.518400px;}
.y14b{bottom:210.527250px;}
.y5e{bottom:210.527400px;}
.y1c5{bottom:211.169550px;}
.yd{bottom:215.246700px;}
.y7f{bottom:225.554250px;}
.y190{bottom:226.680600px;}
.y4{bottom:227.904300px;}
.ye9{bottom:229.006050px;}
.y14a{bottom:230.027250px;}
.y5d{bottom:230.027400px;}
.yba{bottom:230.250750px;}
.y1c4{bottom:230.669550px;}
.y11e{bottom:232.787550px;}
.y17b{bottom:232.884450px;}
.yc{bottom:236.627100px;}
.y1b8{bottom:239.770050px;}
.y7a{bottom:245.089200px;}
.y18f{bottom:246.180600px;}
.ye8{bottom:248.530950px;}
.y17a{bottom:249.384450px;}
.y149{bottom:249.527250px;}
.y5c{bottom:249.527400px;}
.yb9{bottom:249.983250px;}
.y1c3{bottom:250.169550px;}
.y11d{bottom:257.543400px;}
.y3{bottom:258.000450px;}
.yb{bottom:258.007650px;}
.y79{bottom:264.624300px;}
.y18e{bottom:265.680600px;}
.y11b{bottom:265.799400px;}
.y179{bottom:265.884450px;}
.ye7{bottom:268.055850px;}
.y148{bottom:269.027250px;}
.y5b{bottom:269.027400px;}
.y1c2{bottom:269.669550px;}
.yb8{bottom:269.715600px;}
.y11c{bottom:274.043400px;}
.y11a{bottom:282.299400px;}
.y178{bottom:282.384450px;}
.y78{bottom:284.159250px;}
.y18d{bottom:285.180600px;}
.ye6{bottom:287.580750px;}
.y147{bottom:288.527250px;}
.y5a{bottom:288.527400px;}
.y1c1{bottom:289.169550px;}
.yb7{bottom:289.447800px;}
.y119{bottom:298.799400px;}
.y177{bottom:298.884450px;}
.y77{bottom:303.694200px;}
.y18c{bottom:304.680600px;}
.ye5{bottom:307.105650px;}
.y146{bottom:308.027250px;}
.y59{bottom:308.027400px;}
.y1c0{bottom:308.669550px;}
.yb6{bottom:309.180150px;}
.y30{bottom:314.454450px;}
.y118{bottom:315.299400px;}
.y176{bottom:315.384450px;}
.y76{bottom:323.229150px;}
.y18b{bottom:324.180600px;}
.ye4{bottom:326.630550px;}
.y145{bottom:327.527250px;}
.y58{bottom:327.527400px;}
.y1bf{bottom:328.169550px;}
.yb5{bottom:328.912650px;}
.y175{bottom:331.884450px;}
.y2f{bottom:333.954450px;}
.y117{bottom:340.055250px;}
.y75{bottom:342.764250px;}
.y18a{bottom:343.680600px;}
.ye3{bottom:346.155450px;}
.y144{bottom:347.027250px;}
.y57{bottom:347.027400px;}
.y1be{bottom:347.669550px;}
.yb4{bottom:348.645000px;}
.y2e{bottom:353.454450px;}
.y116{bottom:356.555250px;}
.y174{bottom:356.640300px;}
.y74{bottom:362.299200px;}
.y189{bottom:363.180600px;}
.ye2{bottom:365.680350px;}
.y143{bottom:366.527250px;}
.y56{bottom:366.527400px;}
.y1bd{bottom:367.169550px;}
.yb3{bottom:368.377350px;}
.y173{bottom:373.140300px;}
.y115{bottom:381.311100px;}
.y73{bottom:381.834150px;}
.y188{bottom:382.680600px;}
.ye1{bottom:385.205250px;}
.y142{bottom:386.027250px;}
.y55{bottom:386.027400px;}
.y1bc{bottom:386.669550px;}
.yb2{bottom:388.109700px;}
.y172{bottom:389.640300px;}
.y2d{bottom:392.448450px;}
.y114{bottom:397.811100px;}
.y72{bottom:401.369250px;}
.y187{bottom:402.180600px;}
.ye0{bottom:404.730150px;}
.y153{bottom:405.527250px;}
.y54{bottom:405.527400px;}
.y171{bottom:406.140300px;}
.y1bb{bottom:406.169550px;}
.yb1{bottom:407.842050px;}
.y141{bottom:415.277250px;}
.y2c{bottom:420.312000px;}
.y71{bottom:420.904200px;}
.y186{bottom:421.680600px;}
.y113{bottom:422.567100px;}
.y170{bottom:422.640300px;}
.ydf{bottom:424.255050px;}
.y152{bottom:425.027250px;}
.y53{bottom:425.027400px;}
.y1ea{bottom:425.669550px;}
.yb0{bottom:427.574400px;}
.y1ba{bottom:435.520050px;}
.y112{bottom:439.067100px;}
.y2b{bottom:439.812000px;}
.y70{bottom:440.439150px;}
.y185{bottom:441.180600px;}
.yde{bottom:443.779950px;}
.y1b5{bottom:444.527250px;}
.y52{bottom:444.527400px;}
.y1e9{bottom:445.169550px;}
.yaf{bottom:447.306750px;}
.y111{bottom:447.322950px;}
.y16f{bottom:447.396150px;}
.y151{bottom:454.270050px;}
.y2a{bottom:459.312000px;}
.y6f{bottom:459.974250px;}
.y184{bottom:460.680600px;}
.ydd{bottom:463.304850px;}
.y110{bottom:463.822950px;}
.y16e{bottom:463.896150px;}
.y140{bottom:464.027250px;}
.y51{bottom:464.027400px;}
.y1e8{bottom:464.669550px;}
.yae{bottom:467.039100px;}
.y29{bottom:478.812000px;}
.y6e{bottom:479.509200px;}
.y183{bottom:480.180600px;}
.y16d{bottom:480.396150px;}
.ydc{bottom:482.829750px;}
.y13f{bottom:483.527250px;}
.y50{bottom:483.527400px;}
.y1e7{bottom:484.169550px;}
.y10f{bottom:488.578800px;}
.yad{bottom:496.753800px;}
.y16c{bottom:496.896150px;}
.y28{bottom:498.312000px;}
.y6d{bottom:499.044150px;}
.y182{bottom:499.680600px;}
.ydb{bottom:502.354650px;}
.y13e{bottom:503.027250px;}
.y4f{bottom:503.027400px;}
.y1e6{bottom:503.669550px;}
.y10e{bottom:505.078800px;}
.y10d{bottom:513.334800px;}
.y16b{bottom:513.396150px;}
.y27{bottom:517.812000px;}
.y6c{bottom:518.579250px;}
.yda{bottom:521.879550px;}
.y13d{bottom:522.527250px;}
.y4e{bottom:522.527400px;}
.y1e5{bottom:523.169550px;}
.yac{bottom:526.461300px;}
.y10c{bottom:529.834800px;}
.y26{bottom:537.312000px;}
.y6b{bottom:538.114200px;}
.y16a{bottom:538.152150px;}
.yd9{bottom:541.404450px;}
.y13c{bottom:542.027250px;}
.y4d{bottom:542.027400px;}
.y1e4{bottom:542.669550px;}
.y10a{bottom:554.590650px;}
.y169{bottom:554.652150px;}
.yab{bottom:555.950850px;}
.y25{bottom:556.812000px;}
.y6a{bottom:557.649150px;}
.yd8{bottom:560.929350px;}
.y13b{bottom:561.527250px;}
.y4c{bottom:561.527400px;}
.y1e3{bottom:562.169550px;}
.y168{bottom:562.908000px;}
.y10b{bottom:571.090650px;}
.y109{bottom:571.116600px;}
.yaa{bottom:575.683200px;}
.y24{bottom:576.312000px;}
.y69{bottom:577.184100px;}
.y167{bottom:579.408000px;}
.y1b4{bottom:579.534900px;}
.yd7{bottom:580.454250px;}
.y13a{bottom:581.027250px;}
.y4b{bottom:581.027400px;}
.y1e2{bottom:581.669550px;}
.ya9{bottom:595.415550px;}
.y23{bottom:595.812000px;}
.y108{bottom:595.872600px;}
.y166{bottom:595.908000px;}
.y1b3{bottom:596.034900px;}
.y68{bottom:596.719200px;}
.yd6{bottom:599.979150px;}
.y139{bottom:600.527250px;}
.y4a{bottom:600.527400px;}
.y1e1{bottom:601.169550px;}
.y107{bottom:612.372600px;}
.y1b2{bottom:612.534900px;}
.ya8{bottom:615.147900px;}
.y22{bottom:615.312000px;}
.y67{bottom:616.254150px;}
.yd5{bottom:619.504200px;}
.y138{bottom:620.027250px;}
.y49{bottom:620.027400px;}
.y165{bottom:620.663850px;}
.y1e0{bottom:620.669550px;}
.y1b1{bottom:629.034900px;}
.y21{bottom:634.812000px;}
.ya7{bottom:634.880250px;}
.y66{bottom:635.789100px;}
.y106{bottom:637.128450px;}
.y164{bottom:637.163850px;}
.yd4{bottom:639.029100px;}
.y137{bottom:639.527250px;}
.y48{bottom:639.527400px;}
.y1df{bottom:640.169550px;}
.y105{bottom:653.628450px;}
.y163{bottom:653.663850px;}
.y1ad{bottom:653.790750px;}
.y20{bottom:654.312000px;}
.ya6{bottom:654.612600px;}
.yd3{bottom:658.554000px;}
.y136{bottom:659.027250px;}
.y47{bottom:659.027400px;}
.y1de{bottom:659.669550px;}
.y104{bottom:661.884450px;}
.y1b0{bottom:662.034900px;}
.y162{bottom:670.163850px;}
.y1ac{bottom:670.290750px;}
.y1f{bottom:673.812000px;}
.ya5{bottom:674.345100px;}
.yd2{bottom:678.078900px;}
.y103{bottom:678.384450px;}
.y135{bottom:678.527250px;}
.y46{bottom:678.527400px;}
.y1af{bottom:678.534900px;}
.y1dd{bottom:679.169550px;}
.y1ab{bottom:686.790750px;}
.y1e{bottom:693.312000px;}
.ya4{bottom:694.077450px;}
.y161{bottom:694.919850px;}
.y1ae{bottom:695.034900px;}
.yd1{bottom:697.603800px;}
.y134{bottom:698.027250px;}
.y45{bottom:698.027400px;}
.y1dc{bottom:698.669550px;}
.y102{bottom:703.140300px;}
.y93{bottom:703.152150px;}
.y1aa{bottom:703.290750px;}
.y160{bottom:711.419850px;}
.y1d{bottom:712.805700px;}
.ya3{bottom:713.809800px;}
.yd0{bottom:717.128700px;}
.y133{bottom:717.527250px;}
.y44{bottom:717.527400px;}
.y1db{bottom:718.169550px;}
.y101{bottom:719.640300px;}
.y92{bottom:719.652150px;}
.y1a9{bottom:719.790750px;}
.y15f{bottom:727.919850px;}
.ya2{bottom:733.542150px;}
.y91{bottom:736.152150px;}
.y1a8{bottom:736.290750px;}
.ycf{bottom:736.653600px;}
.y132{bottom:737.027250px;}
.y43{bottom:737.027400px;}
.y1da{bottom:737.669550px;}
.y100{bottom:744.396300px;}
.y15e{bottom:744.419850px;}
.y1c{bottom:752.454450px;}
.y90{bottom:752.652150px;}
.y1a7{bottom:752.790750px;}
.ya1{bottom:753.274500px;}
.yce{bottom:756.178500px;}
.y131{bottom:756.527250px;}
.y42{bottom:756.527400px;}
.y1d9{bottom:757.169550px;}
.yff{bottom:760.896300px;}
.y15d{bottom:760.919850px;}
.y1b{bottom:771.954450px;}
.ya0{bottom:773.006700px;}
.ycd{bottom:775.703400px;}
.y130{bottom:776.027250px;}
.y41{bottom:776.027400px;}
.y1d8{bottom:776.669550px;}
.yfe{bottom:777.396300px;}
.y8f{bottom:777.408000px;}
.y15c{bottom:777.419850px;}
.y1a6{bottom:777.546750px;}
.y1a{bottom:791.454450px;}
.y9f{bottom:792.739050px;}
.y1a5{bottom:794.046750px;}
.ycc{bottom:795.228300px;}
.y12f{bottom:795.527250px;}
.y40{bottom:795.527400px;}
.y1d7{bottom:796.169550px;}
.yfd{bottom:802.152150px;}
.y15b{bottom:802.175700px;}
.y1a4{bottom:810.546750px;}
.y19{bottom:810.954450px;}
.y9e{bottom:812.471400px;}
.ycb{bottom:814.753200px;}
.y12e{bottom:815.027250px;}
.y3f{bottom:815.027400px;}
.y1d6{bottom:815.669550px;}
.yfc{bottom:818.652150px;}
.y8e{bottom:818.663850px;}
.y15a{bottom:818.675700px;}
.y1b7{bottom:824.770050px;}
.yfb{bottom:826.908000px;}
.y18{bottom:830.454450px;}
.y9d{bottom:832.203900px;}
.yca{bottom:834.278100px;}
.y12d{bottom:834.527250px;}
.y3e{bottom:834.527400px;}
.y1d5{bottom:835.169550px;}
.y159{bottom:835.175700px;}
.y1a3{bottom:835.302600px;}
.yfa{bottom:843.408000px;}
.y8d{bottom:843.419850px;}
.y17{bottom:849.954450px;}
.y158{bottom:851.675700px;}
.y1a2{bottom:851.802600px;}
.y9c{bottom:851.936100px;}
.yc9{bottom:853.803000px;}
.y12c{bottom:854.027250px;}
.y3d{bottom:854.027400px;}
.y1d4{bottom:854.669550px;}
.y8c{bottom:859.919850px;}
.yf9{bottom:868.163850px;}
.y157{bottom:868.175700px;}
.y1a1{bottom:868.302600px;}
.y9b{bottom:871.668450px;}
.yc8{bottom:873.327900px;}
.y12b{bottom:873.527250px;}
.y3c{bottom:873.527400px;}
.y1d3{bottom:874.169550px;}
.y16{bottom:875.234400px;}
.yf8{bottom:876.419850px;}
.y8b{bottom:884.675700px;}
.y9a{bottom:891.400800px;}
.yc7{bottom:892.852800px;}
.yf7{bottom:892.919850px;}
.y156{bottom:892.931700px;}
.y12a{bottom:893.027250px;}
.y3b{bottom:893.027400px;}
.y1a0{bottom:893.058600px;}
.y1d2{bottom:893.669550px;}
.y15{bottom:905.242650px;}
.y8a{bottom:909.431700px;}
.y19f{bottom:909.558600px;}
.y99{bottom:911.133150px;}
.yc6{bottom:912.377850px;}
.y129{bottom:912.527250px;}
.y3a{bottom:912.527400px;}
.y1d1{bottom:913.169550px;}
.yf6{bottom:917.675700px;}
.y155{bottom:917.687550px;}
.y89{bottom:925.931700px;}
.y19e{bottom:926.058600px;}
.y98{bottom:930.865500px;}
.yc5{bottom:931.902900px;}
.y128{bottom:932.027250px;}
.y39{bottom:932.027400px;}
.y1d0{bottom:932.669550px;}
.y154{bottom:934.187550px;}
.yf5{bottom:942.431700px;}
.y19d{bottom:942.558600px;}
.y97{bottom:950.597850px;}
.y88{bottom:950.687550px;}
.yc4{bottom:951.427800px;}
.y127{bottom:951.527250px;}
.y38{bottom:951.527400px;}
.y14{bottom:952.164450px;}
.y1cf{bottom:952.169550px;}
.yf4{bottom:967.187550px;}
.y19a{bottom:967.314450px;}
.y96{bottom:970.330200px;}
.yc3{bottom:970.952700px;}
.y126{bottom:971.027250px;}
.y37{bottom:971.027400px;}
.y1ce{bottom:971.669550px;}
.yf3{bottom:975.437550px;}
.y87{bottom:975.443550px;}
.y19c{bottom:975.564450px;}
.yf1{bottom:979.565550px;}
.y64{bottom:980.770200px;}
.y84{bottom:983.693550px;}
.y198{bottom:983.814450px;}
.y13{bottom:986.664450px;}
.yf0{bottom:987.815550px;}
.y95{bottom:990.062550px;}
.yc2{bottom:990.477600px;}
.y125{bottom:990.527250px;}
.y36{bottom:990.527400px;}
.y1cd{bottom:991.169550px;}
.y86{bottom:991.943550px;}
.y19b{bottom:992.064450px;}
.yf2{bottom:996.065550px;}
.y83{bottom:1000.193550px;}
.y199{bottom:1000.314450px;}
.y85{bottom:1008.443550px;}
.y94{bottom:1009.795050px;}
.yc1{bottom:1010.002500px;}
.y124{bottom:1010.027250px;}
.y35{bottom:1010.027400px;}
.y1cc{bottom:1010.669550px;}
.y12{bottom:1021.164450px;}
.y197{bottom:1025.076450px;}
.y150{bottom:1028.027250px;}
.y123{bottom:1029.527250px;}
.y34{bottom:1029.527400px;}
.y1cb{bottom:1030.169550px;}
.y82{bottom:1031.454450px;}
.y33{bottom:1069.692150px;}
.y65{bottom:1069.716000px;}
.y32{bottom:1077.306600px;}
.y31{bottom:1248.126600px;}
.h8{height:27.452304px;}
.h13{height:34.195312px;}
.h14{height:35.088000px;}
.h11{height:35.183400px;}
.hd{height:38.505000px;}
.hb{height:38.530200px;}
.h10{height:39.474000px;}
.h1c{height:40.770000px;}
.h3{height:41.664551px;}
.h17{height:41.724000px;}
.h1a{height:42.180000px;}
.h5{height:43.035000px;}
.h15{height:43.585704px;}
.h16{height:43.586304px;}
.h2{height:44.145000px;}
.ha{height:47.088000px;}
.he{height:47.112000px;}
.hc{height:50.031000px;}
.h9{height:50.572104px;}
.h1b{height:52.974000px;}
.h4{height:55.917000px;}
.h7{height:58.221711px;}
.h12{height:60.053811px;}
.h18{height:68.088000px;}
.h6{height:70.176000px;}
.hf{height:70.632000px;}
.h19{height:101.088000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x1f{left:70.157550px;}
.x6{left:76.535400px;}
.x7{left:85.039350px;}
.x49{left:93.543300px;}
.x29{left:148.443750px;}
.x5{left:153.070800px;}
.x1a{left:177.119700px;}
.xa{left:179.015850px;}
.x19{left:180.803550px;}
.x9{left:184.775400px;}
.x3f{left:186.185400px;}
.x40{left:189.515400px;}
.x3e{left:190.847250px;}
.x48{left:193.187100px;}
.x18{left:223.684950px;}
.x17{left:225.016950px;}
.x41{left:247.405200px;}
.x42{left:254.407200px;}
.xd{left:300.912750px;}
.x1b{left:306.444150px;}
.x47{left:309.163650px;}
.x1c{left:310.218150px;}
.x43{left:312.091500px;}
.xc{left:315.894450px;}
.x46{left:325.543050px;}
.xb{left:334.097850px;}
.x21{left:341.502750px;}
.x2a{left:345.048300px;}
.x44{left:401.102400px;}
.x31{left:422.538000px;}
.x1{left:423.784650px;}
.x20{left:425.910600px;}
.x2b{left:432.989850px;}
.x33{left:434.987700px;}
.x34{left:438.432000px;}
.x1d{left:443.614200px;}
.x10{left:444.616200px;}
.x22{left:446.435850px;}
.x30{left:448.769550px;}
.xf{left:452.374200px;}
.xe{left:456.508350px;}
.x3{left:463.464600px;}
.x4b{left:471.968400px;}
.x4{left:480.472500px;}
.x4a{left:488.976300px;}
.x35{left:527.000550px;}
.x3b{left:543.116250px;}
.x3a{left:561.217500px;}
.x13{left:563.589900px;}
.x12{left:581.919450px;}
.x11{left:585.603450px;}
.x26{left:661.587450px;}
.x45{left:674.645550px;}
.x16{left:697.038000px;}
.x15{left:698.273850px;}
.x14{left:720.281400px;}
.x27{left:784.268850px;}
.x8{left:798.186600px;}
.x1e{left:800.312550px;}
.x3d{left:850.413300px;}
.x23{left:866.145900px;}
.x3c{left:867.638700px;}
.x28{left:1006.565250px;}
.x2d{left:1180.882500px;}
.x2e{left:1183.756200px;}
.x24{left:1186.666500px;}
.x36{left:1198.533900px;}
.x2f{left:1199.536050px;}
.x2c{left:1301.102250px;}
.x25{left:1454.203800px;}
.x37{left:1663.349850px;}
.x39{left:1669.463700px;}
.x38{left:1674.467700px;}
.x32{left:1676.135550px;}
@media print{
.v2{vertical-align:-20.550933pt;}
.v5{vertical-align:-9.340267pt;}
.v6{vertical-align:-1.191467pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.106667pt;}
.v3{vertical-align:20.550933pt;}
.v4{vertical-align:24.403733pt;}
.v1{vertical-align:26.972800pt;}
.v7{vertical-align:29.333333pt;}
.ls75{letter-spacing:-1.064000pt;}
.ls72{letter-spacing:-1.013333pt;}
.ls74{letter-spacing:-0.962667pt;}
.ls87{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.861333pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls40{letter-spacing:-0.760000pt;}
.ls4f{letter-spacing:-0.709333pt;}
.ls73{letter-spacing:-0.608000pt;}
.ls15{letter-spacing:-0.506667pt;}
.ls8a{letter-spacing:-0.480000pt;}
.ls76{letter-spacing:-0.456000pt;}
.ls78{letter-spacing:-0.447744pt;}
.ls3f{letter-spacing:-0.354667pt;}
.ls77{letter-spacing:-0.213333pt;}
.ls51{letter-spacing:-0.202667pt;}
.ls71{letter-spacing:-0.152000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls50{letter-spacing:-0.101333pt;}
.ls8b{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.050667pt;}
.ls8e{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000085pt;}
.ls7d{letter-spacing:0.000099pt;}
.ls6{letter-spacing:0.050667pt;}
.ls11{letter-spacing:0.090667pt;}
.ls0{letter-spacing:0.101333pt;}
.ls32{letter-spacing:0.152000pt;}
.ls67{letter-spacing:0.177333pt;}
.lse{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.200448pt;}
.ls8{letter-spacing:0.200981pt;}
.ls69{letter-spacing:0.202667pt;}
.ls27{letter-spacing:0.215565pt;}
.ls81{letter-spacing:0.228000pt;}
.ls1e{letter-spacing:0.253333pt;}
.ls13{letter-spacing:0.272000pt;}
.ls7{letter-spacing:0.304000pt;}
.ls12{letter-spacing:0.317333pt;}
.ls80{letter-spacing:0.329333pt;}
.ls9{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.354667pt;}
.ls6e{letter-spacing:0.380000pt;}
.ls5a{letter-spacing:0.405333pt;}
.ls29{letter-spacing:0.456000pt;}
.lsb{letter-spacing:0.469333pt;}
.ls89{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.506667pt;}
.ls6f{letter-spacing:0.523299pt;}
.lsd{letter-spacing:0.544000pt;}
.ls3d{letter-spacing:0.557333pt;}
.ls7b{letter-spacing:0.582667pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls43{letter-spacing:0.658667pt;}
.ls10{letter-spacing:0.702667pt;}
.ls3a{letter-spacing:0.709333pt;}
.lsf{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.760000pt;}
.ls45{letter-spacing:0.785333pt;}
.ls19{letter-spacing:0.810667pt;}
.ls3c{letter-spacing:0.833165pt;}
.ls1{letter-spacing:0.861333pt;}
.ls38{letter-spacing:0.912000pt;}
.lsc{letter-spacing:0.952000pt;}
.ls3e{letter-spacing:0.962667pt;}
.ls2f{letter-spacing:1.013333pt;}
.ls8c{letter-spacing:1.042667pt;}
.ls5{letter-spacing:1.064000pt;}
.ls30{letter-spacing:1.084267pt;}
.ls6a{letter-spacing:1.089333pt;}
.ls39{letter-spacing:1.114667pt;}
.ls7c{letter-spacing:1.140000pt;}
.ls55{letter-spacing:1.165333pt;}
.ls56{letter-spacing:1.179200pt;}
.ls33{letter-spacing:1.216000pt;}
.ls22{letter-spacing:1.266667pt;}
.ls36{letter-spacing:1.317333pt;}
.ls57{letter-spacing:1.368000pt;}
.ls1f{letter-spacing:1.393333pt;}
.ls20{letter-spacing:1.418667pt;}
.ls3b{letter-spacing:1.428267pt;}
.ls85{letter-spacing:1.444000pt;}
.ls25{letter-spacing:1.469333pt;}
.ls54{letter-spacing:1.520000pt;}
.ls66{letter-spacing:1.570667pt;}
.ls21{letter-spacing:1.621333pt;}
.ls49{letter-spacing:1.672000pt;}
.ls2{letter-spacing:1.722667pt;}
.ls23{letter-spacing:1.773333pt;}
.ls1b{letter-spacing:1.824000pt;}
.ls48{letter-spacing:1.849333pt;}
.ls7e{letter-spacing:1.874667pt;}
.ls7a{letter-spacing:1.925333pt;}
.ls52{letter-spacing:1.976000pt;}
.ls46{letter-spacing:2.001333pt;}
.ls34{letter-spacing:2.026667pt;}
.ls28{letter-spacing:2.077333pt;}
.ls2e{letter-spacing:2.128000pt;}
.ls86{letter-spacing:2.153333pt;}
.ls53{letter-spacing:2.178667pt;}
.ls6d{letter-spacing:2.204000pt;}
.ls42{letter-spacing:2.229333pt;}
.ls6b{letter-spacing:2.280000pt;}
.ls35{letter-spacing:2.330667pt;}
.ls2d{letter-spacing:2.381333pt;}
.ls1c{letter-spacing:2.432000pt;}
.ls24{letter-spacing:2.482667pt;}
.ls44{letter-spacing:2.533333pt;}
.ls58{letter-spacing:2.584000pt;}
.ls41{letter-spacing:2.685333pt;}
.ls2b{letter-spacing:2.736000pt;}
.ls5e{letter-spacing:2.786667pt;}
.ls83{letter-spacing:2.837333pt;}
.ls70{letter-spacing:2.888000pt;}
.ls1a{letter-spacing:2.989333pt;}
.ls65{letter-spacing:3.040000pt;}
.ls59{letter-spacing:3.090667pt;}
.ls88{letter-spacing:3.116000pt;}
.ls3{letter-spacing:3.192000pt;}
.ls47{letter-spacing:3.293333pt;}
.ls82{letter-spacing:3.344000pt;}
.ls6c{letter-spacing:3.394667pt;}
.ls68{letter-spacing:3.445333pt;}
.ls37{letter-spacing:3.496000pt;}
.ls84{letter-spacing:3.521333pt;}
.ls7f{letter-spacing:3.597333pt;}
.ls60{letter-spacing:3.648000pt;}
.ls2a{letter-spacing:3.800000pt;}
.ls31{letter-spacing:3.850667pt;}
.ls5d{letter-spacing:4.357333pt;}
.ls8d{letter-spacing:4.397333pt;}
.ls5c{letter-spacing:4.433333pt;}
.ls79{letter-spacing:5.826667pt;}
.ls5b{letter-spacing:6.941333pt;}
.ls4b{letter-spacing:61.245419pt;}
.ls4c{letter-spacing:69.471552pt;}
.ls4d{letter-spacing:98.084352pt;}
.ls4e{letter-spacing:122.242752pt;}
.ls61{letter-spacing:197.017152pt;}
.ls64{letter-spacing:235.801685pt;}
.ls62{letter-spacing:242.905152pt;}
.ls63{letter-spacing:248.409152pt;}
.ws62{word-spacing:-50.666667pt;}
.ws6f{word-spacing:-48.000000pt;}
.ws48{word-spacing:-42.666667pt;}
.ws0{word-spacing:-16.162667pt;}
.ws66{word-spacing:-15.149333pt;}
.ws4a{word-spacing:-14.034667pt;}
.ws6d{word-spacing:-13.224000pt;}
.ws37{word-spacing:-13.122667pt;}
.ws19{word-spacing:-12.616000pt;}
.ws6e{word-spacing:-12.109333pt;}
.ws44{word-spacing:-11.861333pt;}
.ws5d{word-spacing:-11.648000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws61{word-spacing:-11.050667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws49{word-spacing:-7.650515pt;}
.ws5f{word-spacing:-6.915157pt;}
.ws60{word-spacing:-6.467413pt;}
.ws2{word-spacing:-6.442539pt;}
.ws20{word-spacing:-2.026667pt;}
.ws70{word-spacing:-1.925333pt;}
.ws54{word-spacing:-0.912000pt;}
.ws3c{word-spacing:-0.760000pt;}
.ws74{word-spacing:-0.480000pt;}
.ws42{word-spacing:-0.405333pt;}
.ws6b{word-spacing:-0.354667pt;}
.ws17{word-spacing:-0.317333pt;}
.ws65{word-spacing:-0.304000pt;}
.ws4b{word-spacing:-0.202667pt;}
.ws69{word-spacing:-0.152000pt;}
.ws71{word-spacing:-0.101333pt;}
.ws16{word-spacing:-0.090667pt;}
.ws1c{word-spacing:-0.050667pt;}
.ws4{word-spacing:-0.045333pt;}
.ws5{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.101333pt;}
.ws32{word-spacing:0.152000pt;}
.ws26{word-spacing:0.202667pt;}
.ws2b{word-spacing:0.253333pt;}
.ws22{word-spacing:0.354667pt;}
.ws21{word-spacing:0.506667pt;}
.ws3f{word-spacing:0.557333pt;}
.ws4f{word-spacing:0.608000pt;}
.ws23{word-spacing:0.760000pt;}
.ws55{word-spacing:0.810667pt;}
.ws51{word-spacing:0.861333pt;}
.ws10{word-spacing:0.906667pt;}
.ws38{word-spacing:0.912000pt;}
.ws50{word-spacing:1.013333pt;}
.ws53{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.165333pt;}
.ws28{word-spacing:1.317333pt;}
.wse{word-spacing:1.365333pt;}
.ws25{word-spacing:1.368000pt;}
.ws68{word-spacing:1.418667pt;}
.ws59{word-spacing:1.469333pt;}
.ws31{word-spacing:1.520000pt;}
.ws1a{word-spacing:1.570667pt;}
.ws3d{word-spacing:1.672000pt;}
.ws30{word-spacing:1.722667pt;}
.ws2a{word-spacing:1.874667pt;}
.ws67{word-spacing:1.925333pt;}
.ws29{word-spacing:1.976000pt;}
.ws9{word-spacing:2.026667pt;}
.ws15{word-spacing:2.040000pt;}
.ws24{word-spacing:2.128000pt;}
.ws58{word-spacing:2.178667pt;}
.ws4c{word-spacing:2.229333pt;}
.ws63{word-spacing:2.330667pt;}
.ws3b{word-spacing:2.381333pt;}
.ws13{word-spacing:2.402667pt;}
.ws64{word-spacing:2.482667pt;}
.ws35{word-spacing:2.533333pt;}
.ws41{word-spacing:2.584000pt;}
.ws72{word-spacing:2.634667pt;}
.wsf{word-spacing:2.674667pt;}
.ws36{word-spacing:2.685333pt;}
.ws52{word-spacing:2.736000pt;}
.ws2c{word-spacing:2.888000pt;}
.ws43{word-spacing:2.938667pt;}
.wsb{word-spacing:3.040000pt;}
.ws5a{word-spacing:3.141333pt;}
.ws57{word-spacing:3.192000pt;}
.ws34{word-spacing:3.242667pt;}
.ws8{word-spacing:3.293333pt;}
.ws6a{word-spacing:3.445333pt;}
.ws14{word-spacing:3.490667pt;}
.ws1f{word-spacing:3.496000pt;}
.ws4e{word-spacing:3.546667pt;}
.ws27{word-spacing:3.597333pt;}
.wsd{word-spacing:3.626667pt;}
.wsc{word-spacing:3.669333pt;}
.ws33{word-spacing:3.749333pt;}
.ws39{word-spacing:3.850667pt;}
.ws11{word-spacing:3.853333pt;}
.ws12{word-spacing:3.898667pt;}
.ws1e{word-spacing:3.952000pt;}
.ws4d{word-spacing:4.002667pt;}
.ws3e{word-spacing:4.053333pt;}
.ws1d{word-spacing:4.104000pt;}
.ws75{word-spacing:4.125333pt;}
.ws40{word-spacing:4.154667pt;}
.ws56{word-spacing:4.205333pt;}
.ws1b{word-spacing:4.256000pt;}
.wsa{word-spacing:4.306667pt;}
.ws7{word-spacing:4.357333pt;}
.ws73{word-spacing:16.032000pt;}
.ws47{word-spacing:86.421333pt;}
.ws5e{word-spacing:86.435200pt;}
.ws5b{word-spacing:94.040533pt;}
.ws2d{word-spacing:123.948800pt;}
.ws46{word-spacing:141.613867pt;}
.ws45{word-spacing:225.241600pt;}
.ws2f{word-spacing:340.435200pt;}
.ws2e{word-spacing:349.907200pt;}
.ws5c{word-spacing:798.731200pt;}
.ws18{word-spacing:869.098667pt;}
._1f{margin-left:-22.568000pt;}
._20{margin-left:-19.936533pt;}
._b{margin-left:-18.005867pt;}
._68{margin-left:-16.491733pt;}
._c{margin-left:-13.496533pt;}
._2{margin-left:-11.723200pt;}
._5e{margin-left:-10.458133pt;}
._a{margin-left:-9.130133pt;}
._3{margin-left:-7.088267pt;}
._1{margin-left:-5.600000pt;}
._0{margin-left:-4.000000pt;}
._9{margin-left:-3.084800pt;}
._5{margin-left:-1.722667pt;}
._4{width:1.109600pt;}
._7{width:2.898933pt;}
._6{width:3.988800pt;}
._8{width:4.907200pt;}
._23{width:10.196800pt;}
._6a{width:16.032000pt;}
._1c{width:31.443200pt;}
._69{width:40.944000pt;}
._1a{width:46.785600pt;}
._1b{width:55.012267pt;}
._60{width:56.827200pt;}
._21{width:60.474667pt;}
._1d{width:65.149867pt;}
._19{width:72.124267pt;}
._61{width:73.257600pt;}
._49{width:77.711467pt;}
._67{width:79.614933pt;}
._28{width:89.627200pt;}
._1e{width:95.238933pt;}
._3f{width:97.441067pt;}
._31{width:98.417067pt;}
._2e{width:100.240000pt;}
._44{width:104.745067pt;}
._62{width:105.986667pt;}
._63{width:108.073600pt;}
._64{width:110.651200pt;}
._5f{width:112.024533pt;}
._66{width:112.921067pt;}
._65{width:122.212267pt;}
._37{width:123.216000pt;}
._24{width:124.565333pt;}
._27{width:126.526933pt;}
._59{width:135.211200pt;}
._41{width:136.573867pt;}
._3a{width:142.504533pt;}
._4f{width:148.435200pt;}
._e{width:151.980267pt;}
._f{width:158.606933pt;}
._53{width:164.777600pt;}
._45{width:166.496533pt;}
._39{width:183.827733pt;}
._42{width:185.668267pt;}
._2a{width:189.141867pt;}
._3b{width:191.598933pt;}
._10{width:193.021333pt;}
._2b{width:197.182400pt;}
._d{width:200.118933pt;}
._29{width:209.390933pt;}
._32{width:218.179733pt;}
._43{width:219.937067pt;}
._2c{width:222.334400pt;}
._54{width:225.731200pt;}
._46{width:230.293867pt;}
._4c{width:234.195733pt;}
._3e{width:235.730667pt;}
._33{width:237.397867pt;}
._47{width:238.333333pt;}
._4b{width:239.826667pt;}
._34{width:245.438400pt;}
._48{width:247.164800pt;}
._13{width:248.297067pt;}
._51{width:259.025600pt;}
._5a{width:268.427200pt;}
._2d{width:269.692267pt;}
._55{width:270.888000pt;}
._50{width:273.726933pt;}
._4d{width:279.186667pt;}
._35{width:280.083733pt;}
._3c{width:283.467200pt;}
._5b{width:292.668267pt;}
._36{width:304.529600pt;}
._58{width:324.283200pt;}
._17{width:355.778133pt;}
._18{width:364.003733pt;}
._52{width:374.720533pt;}
._16{width:376.019200pt;}
._11{width:377.111467pt;}
._12{width:385.337067pt;}
._14{width:391.362133pt;}
._15{width:399.587733pt;}
._5c{width:430.838400pt;}
._4e{width:444.411200pt;}
._22{width:459.284800pt;}
._56{width:490.261867pt;}
._25{width:502.410133pt;}
._38{width:612.513067pt;}
._3d{width:656.351467pt;}
._57{width:663.260800pt;}
._26{width:718.813333pt;}
._4a{width:739.121067pt;}
._2f{width:858.657067pt;}
._5d{width:1133.281067pt;}
._40{width:2458.353067pt;}
._30{width:2858.197333pt;}
.fs5{font-size:24.874667pt;}
.fsa{font-size:29.538667pt;}
.fs4{font-size:32.648000pt;}
.fs0{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.794400pt;}
.y1{bottom:47.794533pt;}
.ya{bottom:96.306000pt;}
.y196{bottom:97.493867pt;}
.yef{bottom:99.428000pt;}
.yc0{bottom:99.428133pt;}
.y1b6{bottom:100.468667pt;}
.y63{bottom:100.468800pt;}
.y1ca{bottom:101.039600pt;}
.y1ef{bottom:103.673733pt;}
.y181{bottom:104.336533pt;}
.y7e{bottom:113.670400pt;}
.y9{bottom:114.018533pt;}
.y195{bottom:114.827200pt;}
.y11{bottom:115.310800pt;}
.yee{bottom:116.783467pt;}
.ybf{bottom:116.968000pt;}
.y14f{bottom:117.802000pt;}
.y62{bottom:117.802133pt;}
.y1c9{bottom:118.372933pt;}
.y1ee{bottom:121.007067pt;}
.y180{bottom:126.336400pt;}
.y7d{bottom:131.034933pt;}
.y8{bottom:131.731200pt;}
.y194{bottom:132.160533pt;}
.yed{bottom:134.138933pt;}
.y10{bottom:134.315733pt;}
.ybe{bottom:134.507867pt;}
.y14e{bottom:135.135333pt;}
.y61{bottom:135.135467pt;}
.y1c8{bottom:135.706267pt;}
.y1ed{bottom:138.340400pt;}
.y122{bottom:140.906533pt;}
.y17f{bottom:141.003067pt;}
.y1b9{bottom:143.795600pt;}
.y7c{bottom:148.399333pt;}
.y7{bottom:149.443733pt;}
.y193{bottom:149.493867pt;}
.yec{bottom:151.494400pt;}
.ybd{bottom:152.047733pt;}
.y14d{bottom:152.468667pt;}
.y60{bottom:152.468800pt;}
.y1c7{bottom:153.039600pt;}
.yf{bottom:153.320533pt;}
.y17e{bottom:155.669733pt;}
.y1ec{bottom:155.673733pt;}
.y121{bottom:162.911733pt;}
.y81{bottom:165.763733pt;}
.y192{bottom:166.827200pt;}
.y6{bottom:167.156400pt;}
.yeb{bottom:168.849867pt;}
.ybc{bottom:169.587600pt;}
.y14c{bottom:169.802000pt;}
.y5f{bottom:169.802133pt;}
.y120{bottom:170.250267pt;}
.y17d{bottom:170.336400pt;}
.y1c6{bottom:170.372933pt;}
.ye{bottom:172.325467pt;}
.y1eb{bottom:173.007067pt;}
.y7b{bottom:174.455200pt;}
.y80{bottom:183.128267pt;}
.y191{bottom:184.160533pt;}
.y5{bottom:184.868933pt;}
.y11f{bottom:184.916933pt;}
.y17c{bottom:185.003067pt;}
.yea{bottom:186.205467pt;}
.ybb{bottom:187.127467pt;}
.y14b{bottom:187.135333pt;}
.y5e{bottom:187.135467pt;}
.y1c5{bottom:187.706267pt;}
.yd{bottom:191.330400pt;}
.y7f{bottom:200.492667pt;}
.y190{bottom:201.493867pt;}
.y4{bottom:202.581600pt;}
.ye9{bottom:203.560933pt;}
.y14a{bottom:204.468667pt;}
.y5d{bottom:204.468800pt;}
.yba{bottom:204.667333pt;}
.y1c4{bottom:205.039600pt;}
.y11e{bottom:206.922267pt;}
.y17b{bottom:207.008400pt;}
.yc{bottom:210.335200pt;}
.y1b8{bottom:213.128933pt;}
.y7a{bottom:217.857067pt;}
.y18f{bottom:218.827200pt;}
.ye8{bottom:220.916400pt;}
.y17a{bottom:221.675067pt;}
.y149{bottom:221.802000pt;}
.y5c{bottom:221.802133pt;}
.yb9{bottom:222.207333pt;}
.y1c3{bottom:222.372933pt;}
.y11d{bottom:228.927467pt;}
.y3{bottom:229.333733pt;}
.yb{bottom:229.340133pt;}
.y79{bottom:235.221600pt;}
.y18e{bottom:236.160533pt;}
.y11b{bottom:236.266133pt;}
.y179{bottom:236.341733pt;}
.ye7{bottom:238.271867pt;}
.y148{bottom:239.135333pt;}
.y5b{bottom:239.135467pt;}
.y1c2{bottom:239.706267pt;}
.yb8{bottom:239.747200pt;}
.y11c{bottom:243.594133pt;}
.y11a{bottom:250.932800pt;}
.y178{bottom:251.008400pt;}
.y78{bottom:252.586000pt;}
.y18d{bottom:253.493867pt;}
.ye6{bottom:255.627333pt;}
.y147{bottom:256.468667pt;}
.y5a{bottom:256.468800pt;}
.y1c1{bottom:257.039600pt;}
.yb7{bottom:257.286933pt;}
.y119{bottom:265.599467pt;}
.y177{bottom:265.675067pt;}
.y77{bottom:269.950400pt;}
.y18c{bottom:270.827200pt;}
.ye5{bottom:272.982800pt;}
.y146{bottom:273.802000pt;}
.y59{bottom:273.802133pt;}
.y1c0{bottom:274.372933pt;}
.yb6{bottom:274.826800pt;}
.y30{bottom:279.515067pt;}
.y118{bottom:280.266133pt;}
.y176{bottom:280.341733pt;}
.y76{bottom:287.314800pt;}
.y18b{bottom:288.160533pt;}
.ye4{bottom:290.338267pt;}
.y145{bottom:291.135333pt;}
.y58{bottom:291.135467pt;}
.y1bf{bottom:291.706267pt;}
.yb5{bottom:292.366800pt;}
.y175{bottom:295.008400pt;}
.y2f{bottom:296.848400pt;}
.y117{bottom:302.271333pt;}
.y75{bottom:304.679333pt;}
.y18a{bottom:305.493867pt;}
.ye3{bottom:307.693733pt;}
.y144{bottom:308.468667pt;}
.y57{bottom:308.468800pt;}
.y1be{bottom:309.039600pt;}
.yb4{bottom:309.906667pt;}
.y2e{bottom:314.181733pt;}
.y116{bottom:316.938000pt;}
.y174{bottom:317.013600pt;}
.y74{bottom:322.043733pt;}
.y189{bottom:322.827200pt;}
.ye2{bottom:325.049200pt;}
.y143{bottom:325.802000pt;}
.y56{bottom:325.802133pt;}
.y1bd{bottom:326.372933pt;}
.yb3{bottom:327.446533pt;}
.y173{bottom:331.680267pt;}
.y115{bottom:338.943200pt;}
.y73{bottom:339.408133pt;}
.y188{bottom:340.160533pt;}
.ye1{bottom:342.404667pt;}
.y142{bottom:343.135333pt;}
.y55{bottom:343.135467pt;}
.y1bc{bottom:343.706267pt;}
.yb2{bottom:344.986400pt;}
.y172{bottom:346.346933pt;}
.y2d{bottom:348.843067pt;}
.y114{bottom:353.609867pt;}
.y72{bottom:356.772667pt;}
.y187{bottom:357.493867pt;}
.ye0{bottom:359.760133pt;}
.y153{bottom:360.468667pt;}
.y54{bottom:360.468800pt;}
.y171{bottom:361.013600pt;}
.y1bb{bottom:361.039600pt;}
.yb1{bottom:362.526267pt;}
.y141{bottom:369.135333pt;}
.y2c{bottom:373.610667pt;}
.y71{bottom:374.137067pt;}
.y186{bottom:374.827200pt;}
.y113{bottom:375.615200pt;}
.y170{bottom:375.680267pt;}
.ydf{bottom:377.115600pt;}
.y152{bottom:377.802000pt;}
.y53{bottom:377.802133pt;}
.y1ea{bottom:378.372933pt;}
.yb0{bottom:380.066133pt;}
.y1ba{bottom:387.128933pt;}
.y112{bottom:390.281867pt;}
.y2b{bottom:390.944000pt;}
.y70{bottom:391.501467pt;}
.y185{bottom:392.160533pt;}
.yde{bottom:394.471067pt;}
.y1b5{bottom:395.135333pt;}
.y52{bottom:395.135467pt;}
.y1e9{bottom:395.706267pt;}
.yaf{bottom:397.606000pt;}
.y111{bottom:397.620400pt;}
.y16f{bottom:397.685467pt;}
.y151{bottom:403.795600pt;}
.y2a{bottom:408.277333pt;}
.y6f{bottom:408.866000pt;}
.y184{bottom:409.493867pt;}
.ydd{bottom:411.826533pt;}
.y110{bottom:412.287067pt;}
.y16e{bottom:412.352133pt;}
.y140{bottom:412.468667pt;}
.y51{bottom:412.468800pt;}
.y1e8{bottom:413.039600pt;}
.yae{bottom:415.145867pt;}
.y29{bottom:425.610667pt;}
.y6e{bottom:426.230400pt;}
.y183{bottom:426.827200pt;}
.y16d{bottom:427.018800pt;}
.ydc{bottom:429.182000pt;}
.y13f{bottom:429.802000pt;}
.y50{bottom:429.802133pt;}
.y1e7{bottom:430.372933pt;}
.y10f{bottom:434.292267pt;}
.yad{bottom:441.558933pt;}
.y16c{bottom:441.685467pt;}
.y28{bottom:442.944000pt;}
.y6d{bottom:443.594800pt;}
.y182{bottom:444.160533pt;}
.ydb{bottom:446.537467pt;}
.y13e{bottom:447.135333pt;}
.y4f{bottom:447.135467pt;}
.y1e6{bottom:447.706267pt;}
.y10e{bottom:448.958933pt;}
.y10d{bottom:456.297600pt;}
.y16b{bottom:456.352133pt;}
.y27{bottom:460.277333pt;}
.y6c{bottom:460.959333pt;}
.yda{bottom:463.892933pt;}
.y13d{bottom:464.468667pt;}
.y4e{bottom:464.468800pt;}
.y1e5{bottom:465.039600pt;}
.yac{bottom:467.965600pt;}
.y10c{bottom:470.964267pt;}
.y26{bottom:477.610667pt;}
.y6b{bottom:478.323733pt;}
.y16a{bottom:478.357467pt;}
.yd9{bottom:481.248400pt;}
.y13c{bottom:481.802000pt;}
.y4d{bottom:481.802133pt;}
.y1e4{bottom:482.372933pt;}
.y10a{bottom:492.969467pt;}
.y169{bottom:493.024133pt;}
.yab{bottom:494.178533pt;}
.y25{bottom:494.944000pt;}
.y6a{bottom:495.688133pt;}
.yd8{bottom:498.603867pt;}
.y13b{bottom:499.135333pt;}
.y4c{bottom:499.135467pt;}
.y1e3{bottom:499.706267pt;}
.y168{bottom:500.362667pt;}
.y10b{bottom:507.636133pt;}
.y109{bottom:507.659200pt;}
.yaa{bottom:511.718400pt;}
.y24{bottom:512.277333pt;}
.y69{bottom:513.052533pt;}
.y167{bottom:515.029333pt;}
.y1b4{bottom:515.142133pt;}
.yd7{bottom:515.959333pt;}
.y13a{bottom:516.468667pt;}
.y4b{bottom:516.468800pt;}
.y1e2{bottom:517.039600pt;}
.ya9{bottom:529.258267pt;}
.y23{bottom:529.610667pt;}
.y108{bottom:529.664533pt;}
.y166{bottom:529.696000pt;}
.y1b3{bottom:529.808800pt;}
.y68{bottom:530.417067pt;}
.yd6{bottom:533.314800pt;}
.y139{bottom:533.802000pt;}
.y4a{bottom:533.802133pt;}
.y1e1{bottom:534.372933pt;}
.y107{bottom:544.331200pt;}
.y1b2{bottom:544.475467pt;}
.ya8{bottom:546.798133pt;}
.y22{bottom:546.944000pt;}
.y67{bottom:547.781467pt;}
.yd5{bottom:550.670400pt;}
.y138{bottom:551.135333pt;}
.y49{bottom:551.135467pt;}
.y165{bottom:551.701200pt;}
.y1e0{bottom:551.706267pt;}
.y1b1{bottom:559.142133pt;}
.y21{bottom:564.277333pt;}
.ya7{bottom:564.338000pt;}
.y66{bottom:565.145867pt;}
.y106{bottom:566.336400pt;}
.y164{bottom:566.367867pt;}
.yd4{bottom:568.025867pt;}
.y137{bottom:568.468667pt;}
.y48{bottom:568.468800pt;}
.y1df{bottom:569.039600pt;}
.y105{bottom:581.003067pt;}
.y163{bottom:581.034533pt;}
.y1ad{bottom:581.147333pt;}
.y20{bottom:581.610667pt;}
.ya6{bottom:581.877867pt;}
.yd3{bottom:585.381333pt;}
.y136{bottom:585.802000pt;}
.y47{bottom:585.802133pt;}
.y1de{bottom:586.372933pt;}
.y104{bottom:588.341733pt;}
.y1b0{bottom:588.475467pt;}
.y162{bottom:595.701200pt;}
.y1ac{bottom:595.814000pt;}
.y1f{bottom:598.944000pt;}
.ya5{bottom:599.417867pt;}
.yd2{bottom:602.736800pt;}
.y103{bottom:603.008400pt;}
.y135{bottom:603.135333pt;}
.y46{bottom:603.135467pt;}
.y1af{bottom:603.142133pt;}
.y1dd{bottom:603.706267pt;}
.y1ab{bottom:610.480667pt;}
.y1e{bottom:616.277333pt;}
.ya4{bottom:616.957733pt;}
.y161{bottom:617.706533pt;}
.y1ae{bottom:617.808800pt;}
.yd1{bottom:620.092267pt;}
.y134{bottom:620.468667pt;}
.y45{bottom:620.468800pt;}
.y1dc{bottom:621.039600pt;}
.y102{bottom:625.013600pt;}
.y93{bottom:625.024133pt;}
.y1aa{bottom:625.147333pt;}
.y160{bottom:632.373200pt;}
.y1d{bottom:633.605067pt;}
.ya3{bottom:634.497600pt;}
.yd0{bottom:637.447733pt;}
.y133{bottom:637.802000pt;}
.y44{bottom:637.802133pt;}
.y1db{bottom:638.372933pt;}
.y101{bottom:639.680267pt;}
.y92{bottom:639.690800pt;}
.y1a9{bottom:639.814000pt;}
.y15f{bottom:647.039867pt;}
.ya2{bottom:652.037467pt;}
.y91{bottom:654.357467pt;}
.y1a8{bottom:654.480667pt;}
.ycf{bottom:654.803200pt;}
.y132{bottom:655.135333pt;}
.y43{bottom:655.135467pt;}
.y1da{bottom:655.706267pt;}
.y100{bottom:661.685600pt;}
.y15e{bottom:661.706533pt;}
.y1c{bottom:668.848400pt;}
.y90{bottom:669.024133pt;}
.y1a7{bottom:669.147333pt;}
.ya1{bottom:669.577333pt;}
.yce{bottom:672.158667pt;}
.y131{bottom:672.468667pt;}
.y42{bottom:672.468800pt;}
.y1d9{bottom:673.039600pt;}
.yff{bottom:676.352267pt;}
.y15d{bottom:676.373200pt;}
.y1b{bottom:686.181733pt;}
.ya0{bottom:687.117067pt;}
.ycd{bottom:689.514133pt;}
.y130{bottom:689.802000pt;}
.y41{bottom:689.802133pt;}
.y1d8{bottom:690.372933pt;}
.yfe{bottom:691.018933pt;}
.y8f{bottom:691.029333pt;}
.y15c{bottom:691.039867pt;}
.y1a6{bottom:691.152667pt;}
.y1a{bottom:703.515067pt;}
.y9f{bottom:704.656933pt;}
.y1a5{bottom:705.819333pt;}
.ycc{bottom:706.869600pt;}
.y12f{bottom:707.135333pt;}
.y40{bottom:707.135467pt;}
.y1d7{bottom:707.706267pt;}
.yfd{bottom:713.024133pt;}
.y15b{bottom:713.045067pt;}
.y1a4{bottom:720.486000pt;}
.y19{bottom:720.848400pt;}
.y9e{bottom:722.196800pt;}
.ycb{bottom:724.225067pt;}
.y12e{bottom:724.468667pt;}
.y3f{bottom:724.468800pt;}
.y1d6{bottom:725.039600pt;}
.yfc{bottom:727.690800pt;}
.y8e{bottom:727.701200pt;}
.y15a{bottom:727.711733pt;}
.y1b7{bottom:733.128933pt;}
.yfb{bottom:735.029333pt;}
.y18{bottom:738.181733pt;}
.y9d{bottom:739.736800pt;}
.yca{bottom:741.580533pt;}
.y12d{bottom:741.802000pt;}
.y3e{bottom:741.802133pt;}
.y1d5{bottom:742.372933pt;}
.y159{bottom:742.378400pt;}
.y1a3{bottom:742.491200pt;}
.yfa{bottom:749.696000pt;}
.y8d{bottom:749.706533pt;}
.y17{bottom:755.515067pt;}
.y158{bottom:757.045067pt;}
.y1a2{bottom:757.157867pt;}
.y9c{bottom:757.276533pt;}
.yc9{bottom:758.936000pt;}
.y12c{bottom:759.135333pt;}
.y3d{bottom:759.135467pt;}
.y1d4{bottom:759.706267pt;}
.y8c{bottom:764.373200pt;}
.yf9{bottom:771.701200pt;}
.y157{bottom:771.711733pt;}
.y1a1{bottom:771.824533pt;}
.y9b{bottom:774.816400pt;}
.yc8{bottom:776.291467pt;}
.y12b{bottom:776.468667pt;}
.y3c{bottom:776.468800pt;}
.y1d3{bottom:777.039600pt;}
.y16{bottom:777.986133pt;}
.yf8{bottom:779.039867pt;}
.y8b{bottom:786.378400pt;}
.y9a{bottom:792.356267pt;}
.yc7{bottom:793.646933pt;}
.yf7{bottom:793.706533pt;}
.y156{bottom:793.717067pt;}
.y12a{bottom:793.802000pt;}
.y3b{bottom:793.802133pt;}
.y1a0{bottom:793.829867pt;}
.y1d2{bottom:794.372933pt;}
.y15{bottom:804.660133pt;}
.y8a{bottom:808.383733pt;}
.y19f{bottom:808.496533pt;}
.y99{bottom:809.896133pt;}
.yc6{bottom:811.002533pt;}
.y129{bottom:811.135333pt;}
.y3a{bottom:811.135467pt;}
.y1d1{bottom:811.706267pt;}
.yf6{bottom:815.711733pt;}
.y155{bottom:815.722267pt;}
.y89{bottom:823.050400pt;}
.y19e{bottom:823.163200pt;}
.y98{bottom:827.436000pt;}
.yc5{bottom:828.358133pt;}
.y128{bottom:828.468667pt;}
.y39{bottom:828.468800pt;}
.y1d0{bottom:829.039600pt;}
.y154{bottom:830.388933pt;}
.yf5{bottom:837.717067pt;}
.y19d{bottom:837.829867pt;}
.y97{bottom:844.975867pt;}
.y88{bottom:845.055600pt;}
.yc4{bottom:845.713600pt;}
.y127{bottom:845.802000pt;}
.y38{bottom:845.802133pt;}
.y14{bottom:846.368400pt;}
.y1cf{bottom:846.372933pt;}
.yf4{bottom:859.722267pt;}
.y19a{bottom:859.835067pt;}
.y96{bottom:862.515733pt;}
.yc3{bottom:863.069067pt;}
.y126{bottom:863.135333pt;}
.y37{bottom:863.135467pt;}
.y1ce{bottom:863.706267pt;}
.yf3{bottom:867.055600pt;}
.y87{bottom:867.060933pt;}
.y19c{bottom:867.168400pt;}
.yf1{bottom:870.724933pt;}
.y64{bottom:871.795733pt;}
.y84{bottom:874.394267pt;}
.y198{bottom:874.501733pt;}
.y13{bottom:877.035067pt;}
.yf0{bottom:878.058267pt;}
.y95{bottom:880.055600pt;}
.yc2{bottom:880.424533pt;}
.y125{bottom:880.468667pt;}
.y36{bottom:880.468800pt;}
.y1cd{bottom:881.039600pt;}
.y86{bottom:881.727600pt;}
.y19b{bottom:881.835067pt;}
.yf2{bottom:885.391600pt;}
.y83{bottom:889.060933pt;}
.y199{bottom:889.168400pt;}
.y85{bottom:896.394267pt;}
.y94{bottom:897.595600pt;}
.yc1{bottom:897.780000pt;}
.y124{bottom:897.802000pt;}
.y35{bottom:897.802133pt;}
.y1cc{bottom:898.372933pt;}
.y12{bottom:907.701733pt;}
.y197{bottom:911.179067pt;}
.y150{bottom:913.802000pt;}
.y123{bottom:915.135333pt;}
.y34{bottom:915.135467pt;}
.y1cb{bottom:915.706267pt;}
.y82{bottom:916.848400pt;}
.y33{bottom:950.837467pt;}
.y65{bottom:950.858667pt;}
.y32{bottom:957.605867pt;}
.y31{bottom:1109.445867pt;}
.h8{height:24.402048pt;}
.h13{height:30.395833pt;}
.h14{height:31.189333pt;}
.h11{height:31.274133pt;}
.hd{height:34.226667pt;}
.hb{height:34.249067pt;}
.h10{height:35.088000pt;}
.h1c{height:36.240000pt;}
.h3{height:37.035156pt;}
.h17{height:37.088000pt;}
.h1a{height:37.493333pt;}
.h5{height:38.253333pt;}
.h15{height:38.742848pt;}
.h16{height:38.743381pt;}
.h2{height:39.240000pt;}
.ha{height:41.856000pt;}
.he{height:41.877333pt;}
.hc{height:44.472000pt;}
.h9{height:44.952981pt;}
.h1b{height:47.088000pt;}
.h4{height:49.704000pt;}
.h7{height:51.752632pt;}
.h12{height:53.381165pt;}
.h18{height:60.522667pt;}
.h6{height:62.378667pt;}
.hf{height:62.784000pt;}
.h19{height:89.856000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x1f{left:62.362267pt;}
.x6{left:68.031467pt;}
.x7{left:75.590533pt;}
.x49{left:83.149600pt;}
.x29{left:131.950000pt;}
.x5{left:136.062933pt;}
.x1a{left:157.439733pt;}
.xa{left:159.125200pt;}
.x19{left:160.714267pt;}
.x9{left:164.244800pt;}
.x3f{left:165.498133pt;}
.x40{left:168.458133pt;}
.x3e{left:169.642000pt;}
.x48{left:171.721867pt;}
.x18{left:198.831067pt;}
.x17{left:200.015067pt;}
.x41{left:219.915733pt;}
.x42{left:226.139733pt;}
.xd{left:267.478000pt;}
.x1b{left:272.394800pt;}
.x47{left:274.812133pt;}
.x1c{left:275.749467pt;}
.x43{left:277.414667pt;}
.xc{left:280.795067pt;}
.x46{left:289.371600pt;}
.xb{left:296.975867pt;}
.x21{left:303.558000pt;}
.x2a{left:306.709600pt;}
.x44{left:356.535467pt;}
.x31{left:375.589333pt;}
.x1{left:376.697467pt;}
.x20{left:378.587200pt;}
.x2b{left:384.879867pt;}
.x33{left:386.655733pt;}
.x34{left:389.717333pt;}
.x1d{left:394.323733pt;}
.x10{left:395.214400pt;}
.x22{left:396.831867pt;}
.x30{left:398.906267pt;}
.xf{left:402.110400pt;}
.xe{left:405.785200pt;}
.x3{left:411.968533pt;}
.x4b{left:419.527467pt;}
.x4{left:427.086667pt;}
.x4a{left:434.645600pt;}
.x35{left:468.444933pt;}
.x3b{left:482.770000pt;}
.x3a{left:498.860000pt;}
.x13{left:500.968800pt;}
.x12{left:517.261733pt;}
.x11{left:520.536400pt;}
.x26{left:588.077733pt;}
.x45{left:599.684933pt;}
.x16{left:619.589333pt;}
.x15{left:620.687867pt;}
.x14{left:640.250133pt;}
.x27{left:697.127867pt;}
.x8{left:709.499200pt;}
.x1e{left:711.388933pt;}
.x3d{left:755.922933pt;}
.x23{left:769.907467pt;}
.x3c{left:771.234400pt;}
.x28{left:894.724667pt;}
.x2d{left:1049.673333pt;}
.x2e{left:1052.227733pt;}
.x24{left:1054.814667pt;}
.x36{left:1065.363467pt;}
.x2f{left:1066.254267pt;}
.x2c{left:1156.535333pt;}
.x25{left:1292.625600pt;}
.x37{left:1478.533200pt;}
.x39{left:1483.967733pt;}
.x38{left:1488.415733pt;}
.x32{left:1489.898267pt;}
}




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