
    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_8b9a9616cdf9e7c6953099dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_af62c6154fdb0d4da53052bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.865000;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_137a2a135862a2a6c4eab848.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.653000;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_f5f8ac09c4b5373124a76e55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_a99b40a70960c122c2c2954a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858000;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_92f103c84dffc5aeaa079b74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_9915213e808726a934e0ce4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_e75d5ecb6af637a14cf741fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_dd88ea091ff1d11dd11eb000.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_f51a5b4febad04d030885296.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d02a92103c65c1dfe741360.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_41cf33617197b0b5443cfbf8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_b225af5e25946f1c4bb5aa62.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_de2380800aae98867eea09df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e34371e5e3576fe073778c8a.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;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_caf430290012b108b4eace6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.706055;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_0f9efcfb26ca0740f0a39096.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;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_7cb3606321b224831723a9c9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.977061;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_1b7c8b07a8d73c464c75ded5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.012695;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_367037758f2d553572d18ae0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.031738;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_c4a1b674a3e5355344799c06.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.730957;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_997919bf49bfc9ed28708700.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919434;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_eb23ccc2eff4fdbbe6e01e75.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.014648;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_94e912d62ddfdc060aa90a78.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.850586;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_a21381dd3aaf6a05d2208413.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_739f68051bacfdaf6f9c2920.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.842773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_63b0030e6575c8ce296da44e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.840820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_76eedb1e1d38485e94ba7399.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_21612ffcaded6593effb608a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5bbb3ad4d9134e3840d1e1ef.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.960938;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);}
.v4{vertical-align:-94.284000px;}
.v8{vertical-align:-24.517440px;}
.v7{vertical-align:-18.000000px;}
.v2{vertical-align:-9.767520px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.519800px;}
.v5{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.v9{vertical-align:47.472000px;}
.v1{vertical-align:59.353800px;}
.ls96{letter-spacing:-14.625360px;}
.ls37{letter-spacing:-10.701360px;}
.ls3a{letter-spacing:-10.065600px;}
.ls75{letter-spacing:-8.928000px;}
.ls62{letter-spacing:-6.542640px;}
.ls2a{letter-spacing:-6.511680px;}
.ls63{letter-spacing:-5.724000px;}
.ls9d{letter-spacing:-5.391360px;}
.ls95{letter-spacing:-4.315680px;}
.ls42{letter-spacing:-4.176000px;}
.lsa8{letter-spacing:-3.967920px;}
.ls67{letter-spacing:-3.268080px;}
.ls28{letter-spacing:-3.071520px;}
.ls79{letter-spacing:-2.448000px;}
.ls9a{letter-spacing:-2.274480px;}
.ls1d{letter-spacing:-2.160000px;}
.lsb6{letter-spacing:-2.052000px;}
.ls86{letter-spacing:-1.738080px;}
.ls84{letter-spacing:-1.730160px;}
.lsba{letter-spacing:-1.677600px;}
.lsb7{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.045440px;}
.ls10{letter-spacing:-1.013040px;}
.ls78{letter-spacing:-1.008000px;}
.ls77{letter-spacing:-0.864000px;}
.ls3c{letter-spacing:-0.838800px;}
.ls85{letter-spacing:-0.511200px;}
.ls5c{letter-spacing:-0.397440px;}
.ls66{letter-spacing:-0.384480px;}
.ls35{letter-spacing:-0.360720px;}
.ls48{letter-spacing:-0.358560px;}
.ls1a{letter-spacing:-0.348480px;}
.ls24{letter-spacing:-0.341280px;}
.lsaf{letter-spacing:-0.337680px;}
.ls9c{letter-spacing:-0.336960px;}
.ls23{letter-spacing:-0.335520px;}
.ls7{letter-spacing:-0.324000px;}
.ls9e{letter-spacing:-0.316800px;}
.ls6b{letter-spacing:-0.306720px;}
.ls51{letter-spacing:-0.299520px;}
.lse{letter-spacing:-0.298800px;}
.lsae{letter-spacing:-0.289440px;}
.ls76{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.287280px;}
.ls14{letter-spacing:-0.264240px;}
.ls9f{letter-spacing:-0.253440px;}
.ls97{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.240480px;}
.ls94{letter-spacing:-0.239760px;}
.ls4e{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.204480px;}
.ls5b{letter-spacing:-0.198720px;}
.lsb1{letter-spacing:-0.192960px;}
.ls68{letter-spacing:-0.192240px;}
.ls3{letter-spacing:-0.191520px;}
.ls2e{letter-spacing:-0.179280px;}
.ls19{letter-spacing:-0.174240px;}
.ls98{letter-spacing:-0.168480px;}
.ls22{letter-spacing:-0.167760px;}
.ls6{letter-spacing:-0.162000px;}
.lsbd{letter-spacing:-0.149760px;}
.lsb2{letter-spacing:-0.144720px;}
.lsb{letter-spacing:-0.144000px;}
.ls87{letter-spacing:-0.135360px;}
.ls3e{letter-spacing:-0.132480px;}
.lsa0{letter-spacing:-0.126720px;}
.ls49{letter-spacing:-0.119520px;}
.ls27{letter-spacing:-0.113760px;}
.ls38{letter-spacing:-0.108000px;}
.ls6a{letter-spacing:-0.102240px;}
.lsb0{letter-spacing:-0.096480px;}
.ls1{letter-spacing:-0.095760px;}
.ls99{letter-spacing:-0.084240px;}
.ls36{letter-spacing:-0.079920px;}
.ls5a{letter-spacing:-0.066240px;}
.ls2f{letter-spacing:-0.059760px;}
.ls71{letter-spacing:-0.054000px;}
.ls3d{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.lsb4{letter-spacing:0.048240px;}
.ls4f{letter-spacing:0.059760px;}
.lsa3{letter-spacing:0.063360px;}
.ls18{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.095760px;}
.ls7b{letter-spacing:0.102240px;}
.lsc{letter-spacing:0.108000px;}
.lsbe{letter-spacing:0.112320px;}
.ls26{letter-spacing:0.113760px;}
.ls31{letter-spacing:0.119520px;}
.lsa9{letter-spacing:0.120240px;}
.lsa4{letter-spacing:0.126720px;}
.ls59{letter-spacing:0.132480px;}
.lsab{letter-spacing:0.135072px;}
.ls4d{letter-spacing:0.143424px;}
.lsbf{letter-spacing:0.144000px;}
.lsaa{letter-spacing:0.144720px;}
.lsad{letter-spacing:0.154368px;}
.ls2b{letter-spacing:0.167760px;}
.ls9b{letter-spacing:0.168480px;}
.ls1c{letter-spacing:0.174240px;}
.lsac{letter-spacing:0.178488px;}
.ls30{letter-spacing:0.179280px;}
.ls92{letter-spacing:0.190080px;}
.ls29{letter-spacing:0.191520px;}
.ls45{letter-spacing:0.192240px;}
.lsb3{letter-spacing:0.192960px;}
.ls6c{letter-spacing:0.204480px;}
.ls44{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.227520px;}
.ls4c{letter-spacing:0.239040px;}
.ls93{letter-spacing:0.239760px;}
.lsa7{letter-spacing:0.240480px;}
.ls16{letter-spacing:0.243936px;}
.lsa2{letter-spacing:0.253440px;}
.ls4b{letter-spacing:0.256968px;}
.ls55{letter-spacing:0.264960px;}
.ls65{letter-spacing:0.265824px;}
.ls39{letter-spacing:0.270000px;}
.ls70{letter-spacing:0.287280px;}
.ls2{letter-spacing:0.288000px;}
.ls7e{letter-spacing:0.306720px;}
.ls8{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.335520px;}
.ls8d{letter-spacing:0.336960px;}
.ls20{letter-spacing:0.341280px;}
.ls15{letter-spacing:0.348480px;}
.lsa{letter-spacing:0.360720px;}
.ls6f{letter-spacing:0.378000px;}
.lsa1{letter-spacing:0.380160px;}
.lsb5{letter-spacing:0.604800px;}
.ls82{letter-spacing:0.613440px;}
.ls6d{letter-spacing:0.615600px;}
.ls6e{letter-spacing:0.648000px;}
.ls60{letter-spacing:0.671040px;}
.ls72{letter-spacing:0.720000px;}
.ls7d{letter-spacing:0.836640px;}
.ls4a{letter-spacing:0.896400px;}
.ls7c{letter-spacing:0.908352px;}
.ls8a{letter-spacing:1.026000px;}
.ls41{letter-spacing:1.063800px;}
.ls5e{letter-spacing:1.325304px;}
.ls83{letter-spacing:1.329120px;}
.lsb9{letter-spacing:1.342080px;}
.ls21{letter-spacing:1.417248px;}
.ls73{letter-spacing:1.425600px;}
.ls74{letter-spacing:1.440000px;}
.ls40{letter-spacing:1.593720px;}
.ls11{letter-spacing:1.640160px;}
.ls89{letter-spacing:1.746000px;}
.ls8e{letter-spacing:1.769040px;}
.ls13{letter-spacing:1.784880px;}
.ls3f{letter-spacing:2.180880px;}
.ls5d{letter-spacing:2.281536px;}
.ls2c{letter-spacing:2.330640px;}
.ls88{letter-spacing:2.466000px;}
.ls12{letter-spacing:2.508480px;}
.ls5f{letter-spacing:2.851920px;}
.lsb8{letter-spacing:3.623616px;}
.lsf{letter-spacing:3.859200px;}
.ls8f{letter-spacing:14.002560px;}
.ls80{letter-spacing:14.880240px;}
.ls33{letter-spacing:14.904000px;}
.ls91{letter-spacing:15.269760px;}
.ls90{letter-spacing:15.586560px;}
.ls81{letter-spacing:15.597360px;}
.ls7f{letter-spacing:15.657120px;}
.ls54{letter-spacing:16.493760px;}
.ls34{letter-spacing:17.884800px;}
.ls50{letter-spacing:18.144000px;}
.ls17{letter-spacing:19.440000px;}
.ls7a{letter-spacing:21.368160px;}
.ls8c{letter-spacing:22.660560px;}
.lsbb{letter-spacing:23.081760px;}
.ls52{letter-spacing:23.760000px;}
.ls8b{letter-spacing:23.924160px;}
.ls53{letter-spacing:24.516000px;}
.ls56{letter-spacing:29.484000px;}
.ls57{letter-spacing:30.240000px;}
.ls1f{letter-spacing:31.625280px;}
.ls61{letter-spacing:31.719600px;}
.lsa6{letter-spacing:33.306480px;}
.ls47{letter-spacing:39.132000px;}
.ls5{letter-spacing:65.891520px;}
.lsa5{letter-spacing:65.916000px;}
.ls1e{letter-spacing:68.184000px;}
.ls4{letter-spacing:70.200000px;}
.ls64{letter-spacing:72.216000px;}
.ls46{letter-spacing:97.560000px;}
.ls58{letter-spacing:127.080000px;}
.lsbc{letter-spacing:130.536000px;}
.ls43{letter-spacing:186.804000px;}
.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;}
}
.ws37{word-spacing:-74.501280px;}
.ws84{word-spacing:-72.666000px;}
.wsd{word-spacing:-72.401760px;}
.ws10a{word-spacing:-66.173760px;}
.ws10b{word-spacing:-65.694240px;}
.ws10c{word-spacing:-61.618320px;}
.wsb4{word-spacing:-53.058240px;}
.wsc6{word-spacing:-52.481520px;}
.ws10d{word-spacing:-51.308640px;}
.wsc7{word-spacing:-49.597920px;}
.ws1b{word-spacing:-48.264480px;}
.ws1c{word-spacing:-47.741760px;}
.ws1d{word-spacing:-47.567520px;}
.ws1e{word-spacing:-46.870560px;}
.ws7b{word-spacing:-46.469520px;}
.ws7c{word-spacing:-46.301760px;}
.ws9d{word-spacing:-46.134000px;}
.wsc0{word-spacing:-45.966240px;}
.ws6b{word-spacing:-45.798480px;}
.ws147{word-spacing:-44.456400px;}
.wse6{word-spacing:-39.888000px;}
.ws2{word-spacing:-39.744000px;}
.wse7{word-spacing:-39.600000px;}
.wse4{word-spacing:-39.456000px;}
.wse3{word-spacing:-39.312000px;}
.wse5{word-spacing:-37.152000px;}
.ws148{word-spacing:-36.068400px;}
.ws61{word-spacing:-32.945760px;}
.ws5f{word-spacing:-32.705280px;}
.ws2e{word-spacing:-31.739040px;}
.ws30{word-spacing:-31.284000px;}
.ws31{word-spacing:-31.170240px;}
.ws35{word-spacing:-29.808000px;}
.ws86{word-spacing:-29.700000px;}
.ws34{word-spacing:-29.592000px;}
.ws141{word-spacing:-29.484000px;}
.ws9{word-spacing:-29.376000px;}
.wsd6{word-spacing:-29.268000px;}
.ws12f{word-spacing:-28.977840px;}
.wsf9{word-spacing:-28.422720px;}
.wsfe{word-spacing:-28.320480px;}
.wsfc{word-spacing:-28.218240px;}
.ws32{word-spacing:-28.212480px;}
.ws143{word-spacing:-28.080000px;}
.wsfd{word-spacing:-28.013760px;}
.wsff{word-spacing:-27.911520px;}
.wsc8{word-spacing:-27.809280px;}
.ws142{word-spacing:-27.540000px;}
.ws3a{word-spacing:-26.621280px;}
.ws112{word-spacing:-26.568000px;}
.wsfa{word-spacing:-26.480160px;}
.ws113{word-spacing:-26.460000px;}
.ws38{word-spacing:-26.429760px;}
.ws14f{word-spacing:-26.334000px;}
.ws13a{word-spacing:-26.238240px;}
.wsc5{word-spacing:-24.084000px;}
.wsac{word-spacing:-23.976000px;}
.ws111{word-spacing:-23.755680px;}
.wsd9{word-spacing:-23.748480px;}
.wsae{word-spacing:-23.652000px;}
.wsab{word-spacing:-23.544000px;}
.wsad{word-spacing:-23.436000px;}
.ws10f{word-spacing:-23.334480px;}
.ws110{word-spacing:-23.081760px;}
.ws60{word-spacing:-21.818160px;}
.ws39{word-spacing:-20.016000px;}
.ws1f{word-spacing:-19.800000px;}
.ws20{word-spacing:-19.584000px;}
.wsfb{word-spacing:-18.544320px;}
.wsb8{word-spacing:-18.348480px;}
.wsb6{word-spacing:-18.149760px;}
.wsc9{word-spacing:-18.083520px;}
.wsb7{word-spacing:-18.017280px;}
.wsba{word-spacing:-16.553520px;}
.ws9e{word-spacing:-16.493760px;}
.ws52{word-spacing:-16.374240px;}
.ws50{word-spacing:-16.314480px;}
.ws91{word-spacing:-16.254720px;}
.ws4f{word-spacing:-16.194960px;}
.ws9f{word-spacing:-16.075440px;}
.ws115{word-spacing:-15.840000px;}
.ws11c{word-spacing:-15.713280px;}
.ws7d{word-spacing:-15.552000px;}
.ws116{word-spacing:-15.459840px;}
.ws11b{word-spacing:-15.396480px;}
.wsd8{word-spacing:-15.174000px;}
.wsf7{word-spacing:-15.137208px;}
.wsd7{word-spacing:-14.742000px;}
.ws67{word-spacing:-14.688000px;}
.ws8{word-spacing:-14.634000px;}
.wsf5{word-spacing:-14.581440px;}
.ws7e{word-spacing:-14.472000px;}
.wsf6{word-spacing:-14.402160px;}
.ws100{word-spacing:-13.446000px;}
.ws13d{word-spacing:-13.410720px;}
.ws13f{word-spacing:-13.362480px;}
.ws13e{word-spacing:-13.266000px;}
.ws136{word-spacing:-13.169520px;}
.ws139{word-spacing:-13.121280px;}
.ws13c{word-spacing:-13.073040px;}
.ws13b{word-spacing:-13.024800px;}
.ws137{word-spacing:-12.928320px;}
.ws138{word-spacing:-12.880080px;}
.wsec{word-spacing:-12.310560px;}
.wsed{word-spacing:-12.250800px;}
.wsb9{word-spacing:-11.047680px;}
.ws17{word-spacing:-3.859200px;}
.wsc3{word-spacing:-3.024000px;}
.ws28{word-spacing:-2.736000px;}
.wsbb{word-spacing:-2.691360px;}
.wsbd{word-spacing:-2.583360px;}
.wsc{word-spacing:-2.556720px;}
.ws29{word-spacing:-2.520000px;}
.wsd3{word-spacing:-2.453760px;}
.ws126{word-spacing:-2.376000px;}
.ws12c{word-spacing:-2.154240px;}
.ws5{word-spacing:-2.113920px;}
.ws33{word-spacing:-2.095200px;}
.ws46{word-spacing:-2.052000px;}
.ws44{word-spacing:-2.047680px;}
.wscd{word-spacing:-2.044800px;}
.wsaa{word-spacing:-1.944000px;}
.wsee{word-spacing:-1.922400px;}
.ws27{word-spacing:-1.800000px;}
.wsf4{word-spacing:-1.792800px;}
.ws19{word-spacing:-1.784880px;}
.ws87{word-spacing:-1.730160px;}
.ws125{word-spacing:-1.728000px;}
.ws79{word-spacing:-1.722240px;}
.wsb5{word-spacing:-1.715616px;}
.wsb{word-spacing:-1.688400px;}
.ws14c{word-spacing:-1.684800px;}
.ws11a{word-spacing:-1.679040px;}
.ws104{word-spacing:-1.635840px;}
.ws13{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.584000px;}
.ws131{word-spacing:-1.442880px;}
.ws9c{word-spacing:-1.434240px;}
.ws21{word-spacing:-1.393920px;}
.ws14e{word-spacing:-1.347840px;}
.ws56{word-spacing:-1.340640px;}
.ws109{word-spacing:-1.321200px;}
.ws14{word-spacing:-1.296000px;}
.ws6e{word-spacing:-1.202400px;}
.ws93{word-spacing:-1.188000px;}
.ws140{word-spacing:-1.179360px;}
.ws144{word-spacing:-1.153440px;}
.wsd4{word-spacing:-1.124640px;}
.ws14a{word-spacing:-1.120392px;}
.ws4d{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.059840px;}
.ws10e{word-spacing:-1.044576px;}
.ws65{word-spacing:-1.026000px;}
.wsd2{word-spacing:-1.022400px;}
.ws7a{word-spacing:-0.993600px;}
.ws146{word-spacing:-0.972000px;}
.ws25{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.841680px;}
.wsf2{word-spacing:-0.836640px;}
.ws8f{word-spacing:-0.776880px;}
.ws11f{word-spacing:-0.758160px;}
.wsb1{word-spacing:-0.756000px;}
.wsa1{word-spacing:-0.747000px;}
.ws134{word-spacing:-0.721440px;}
.ws5d{word-spacing:-0.717120px;}
.wsf0{word-spacing:-0.715680px;}
.ws72{word-spacing:-0.702000px;}
.ws85{word-spacing:-0.671040px;}
.ws8b{word-spacing:-0.657360px;}
.wsb0{word-spacing:-0.648000px;}
.wsf1{word-spacing:-0.613440px;}
.ws132{word-spacing:-0.601200px;}
.ws11d{word-spacing:-0.589680px;}
.ws26{word-spacing:-0.576000px;}
.wsde{word-spacing:-0.574560px;}
.ws127{word-spacing:-0.570240px;}
.ws45{word-spacing:-0.540000px;}
.ws5a{word-spacing:-0.537840px;}
.ws108{word-spacing:-0.528480px;}
.ws6f{word-spacing:-0.480960px;}
.ws4a{word-spacing:-0.478800px;}
.ws97{word-spacing:-0.478080px;}
.ws42{word-spacing:-0.455040px;}
.ws94{word-spacing:-0.432000px;}
.wscc{word-spacing:-0.408960px;}
.wsf8{word-spacing:-0.406368px;}
.wsca{word-spacing:-0.384480px;}
.ws12a{word-spacing:-0.380160px;}
.ws6d{word-spacing:-0.360720px;}
.ws2c{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.352296px;}
.ws14b{word-spacing:-0.336960px;}
.wsc4{word-spacing:-0.324000px;}
.wsd1{word-spacing:-0.306720px;}
.ws102{word-spacing:-0.298800px;}
.wsa9{word-spacing:-0.288000px;}
.ws0{word-spacing:-0.269647px;}
.ws14d{word-spacing:-0.252720px;}
.ws10{word-spacing:-0.240480px;}
.ws95{word-spacing:-0.239040px;}
.ws3e{word-spacing:-0.227520px;}
.ws12{word-spacing:-0.216000px;}
.ws105{word-spacing:-0.204480px;}
.ws77{word-spacing:-0.192960px;}
.wsaf{word-spacing:-0.192240px;}
.ws5b{word-spacing:-0.191520px;}
.ws129{word-spacing:-0.190080px;}
.ws5e{word-spacing:-0.179280px;}
.ws24{word-spacing:-0.174240px;}
.ws54{word-spacing:-0.167760px;}
.ws2b{word-spacing:-0.144000px;}
.ws135{word-spacing:-0.120240px;}
.wsf3{word-spacing:-0.119520px;}
.wsf{word-spacing:-0.108000px;}
.ws106{word-spacing:-0.102240px;}
.wsda{word-spacing:-0.095760px;}
.ws2d{word-spacing:-0.072000px;}
.ws8c{word-spacing:-0.059760px;}
.ws130{word-spacing:-0.054000px;}
.wsa{word-spacing:-0.048240px;}
.wsa3{word-spacing:-0.029880px;}
.ws1{word-spacing:0.000000px;}
.ws9b{word-spacing:0.059760px;}
.ws121{word-spacing:0.084240px;}
.wsdc{word-spacing:0.095760px;}
.wsea{word-spacing:0.102240px;}
.ws47{word-spacing:0.108000px;}
.ws41{word-spacing:0.113760px;}
.ws128{word-spacing:0.126720px;}
.ws82{word-spacing:0.144000px;}
.ws117{word-spacing:0.164736px;}
.ws80{word-spacing:0.167760px;}
.ws11e{word-spacing:0.168480px;}
.ws22{word-spacing:0.174240px;}
.wsa5{word-spacing:0.179280px;}
.ws4c{word-spacing:0.191520px;}
.wscb{word-spacing:0.192240px;}
.wsce{word-spacing:0.204480px;}
.ws15{word-spacing:0.216000px;}
.ws57{word-spacing:0.239040px;}
.ws78{word-spacing:0.240480px;}
.ws1a{word-spacing:0.264240px;}
.ws103{word-spacing:0.298800px;}
.wsd0{word-spacing:0.306720px;}
.ws12b{word-spacing:0.316800px;}
.ws70{word-spacing:0.324000px;}
.ws81{word-spacing:0.335520px;}
.ws122{word-spacing:0.336960px;}
.ws3f{word-spacing:0.341280px;}
.ws23{word-spacing:0.348480px;}
.ws107{word-spacing:0.358560px;}
.wsdd{word-spacing:0.383040px;}
.wsbe{word-spacing:0.397440px;}
.wscf{word-spacing:0.408960px;}
.ws16{word-spacing:0.418320px;}
.ws2a{word-spacing:0.432000px;}
.ws2f{word-spacing:0.455040px;}
.wsbf{word-spacing:0.463680px;}
.ws9a{word-spacing:0.478080px;}
.ws71{word-spacing:0.486000px;}
.ws118{word-spacing:0.500544px;}
.ws76{word-spacing:0.503280px;}
.wse{word-spacing:0.540000px;}
.ws43{word-spacing:0.568800px;}
.ws7{word-spacing:0.574560px;}
.ws83{word-spacing:0.648000px;}
.ws68{word-spacing:0.671040px;}
.wsef{word-spacing:0.715680px;}
.ws12d{word-spacing:0.719280px;}
.ws48{word-spacing:0.756000px;}
.ws49{word-spacing:0.766080px;}
.ws59{word-spacing:0.776880px;}
.ws3b{word-spacing:0.838800px;}
.ws133{word-spacing:0.841680px;}
.ws88{word-spacing:0.864000px;}
.wsa8{word-spacing:0.898560px;}
.ws3d{word-spacing:0.910080px;}
.ws98{word-spacing:0.956160px;}
.ws4b{word-spacing:0.957600px;}
.ws3c{word-spacing:1.006560px;}
.wse9{word-spacing:1.008000px;}
.ws12e{word-spacing:1.009800px;}
.ws18{word-spacing:1.013040px;}
.wsd5{word-spacing:1.022400px;}
.wse0{word-spacing:1.053360px;}
.ws5c{word-spacing:1.075680px;}
.ws124{word-spacing:1.080000px;}
.ws90{word-spacing:1.093608px;}
.ws53{word-spacing:1.174320px;}
.ws74{word-spacing:1.188000px;}
.ws4{word-spacing:1.244880px;}
.ws145{word-spacing:1.296000px;}
.wsa4{word-spacing:1.314720px;}
.wsdb{word-spacing:1.340640px;}
.ws149{word-spacing:1.342080px;}
.ws66{word-spacing:1.350000px;}
.ws63{word-spacing:1.478952px;}
.wsa6{word-spacing:1.494000px;}
.wsc2{word-spacing:1.509840px;}
.wsdf{word-spacing:1.537920px;}
.ws40{word-spacing:1.592640px;}
.wsb2{word-spacing:1.620000px;}
.wsa7{word-spacing:1.673280px;}
.ws7f{word-spacing:1.677600px;}
.wse1{word-spacing:1.723680px;}
.ws101{word-spacing:1.730160px;}
.ws6a{word-spacing:1.845360px;}
.ws3{word-spacing:1.915200px;}
.wsa2{word-spacing:2.031840px;}
.ws73{word-spacing:2.106000px;}
.ws58{word-spacing:2.151360px;}
.wsb3{word-spacing:2.160000px;}
.ws120{word-spacing:2.274480px;}
.ws55{word-spacing:2.348640px;}
.wsa0{word-spacing:2.402352px;}
.ws96{word-spacing:2.569680px;}
.wse2{word-spacing:2.585520px;}
.ws92{word-spacing:3.011904px;}
.ws36{word-spacing:3.064320px;}
.ws6c{word-spacing:3.159000px;}
.ws99{word-spacing:3.286800px;}
.ws8a{word-spacing:3.501936px;}
.ws8e{word-spacing:4.219056px;}
.ws123{word-spacing:5.391360px;}
.ws4e{word-spacing:6.511680px;}
.wsc1{word-spacing:6.542640px;}
.wse8{word-spacing:8.928000px;}
.ws75{word-spacing:10.065600px;}
.wseb{word-spacing:17.646624px;}
.ws62{word-spacing:21.775464px;}
.ws119{word-spacing:40.901760px;}
.ws114{word-spacing:43.689600px;}
.ws89{word-spacing:94.650480px;}
.ws8d{word-spacing:94.829760px;}
.ws64{word-spacing:107.352000px;}
.ws51{word-spacing:854.753760px;}
._9{margin-left:-22.011192px;}
._1b{margin-left:-19.185552px;}
._15{margin-left:-15.907248px;}
._1{margin-left:-12.673390px;}
._7{margin-left:-11.667150px;}
._13{margin-left:-10.115928px;}
._0{margin-left:-8.898338px;}
._10{margin-left:-7.709234px;}
._5{margin-left:-6.312163px;}
._6{margin-left:-5.272427px;}
._2{margin-left:-3.235759px;}
._4{margin-left:-2.201381px;}
._3{margin-left:-1.107070px;}
._8{width:1.037839px;}
._a{width:2.483856px;}
._c{width:3.667608px;}
._d{width:4.721189px;}
._f{width:6.008081px;}
._19{width:7.293014px;}
._1c{width:8.640000px;}
._e{width:10.122358px;}
._b{width:11.150928px;}
._14{width:14.856787px;}
._16{width:17.477702px;}
._12{width:23.173920px;}
._1a{width:27.829282px;}
._1d{width:29.720962px;}
._18{width:200.595562px;}
._17{width:586.575070px;}
._1e{width:1476.328385px;}
._11{width:2014.662922px;}
.fc18{color:rgb(206,21,17);}
.fc17{color:rgb(247,154,74);}
.fc16{color:rgb(15,15,15);}
.fc14{color:rgb(27,21,52);}
.fc12{color:rgb(192,0,0);}
.fc15{color:rgb(75,75,75);}
.fc11{color:rgb(191,191,191);}
.fcf{color:rgb(59,56,56);}
.fcd{color:rgb(34,34,34);}
.fc13{color:rgb(39,52,58);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(127,127,127);}
.fc10{color:rgb(21,21,21);}
.fc8{color:rgb(137,137,137);}
.fc2{color:rgb(40,128,194);}
.fcc{color:rgb(36,36,36);}
.fc3{color:rgb(32,33,34);}
.fc4{color:rgb(255,0,0);}
.fca{color:rgb(0,176,80);}
.fc5{color:rgb(231,230,230);}
.fc6{color:rgb(35,129,196);}
.fce{color:rgb(117,117,122);}
.fc9{color:rgb(5,99,193);}
.fcb{color:transparent;}
.fs1a{font-size:40.320000px;}
.fs13{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs12{font-size:59.760000px;}
.fs1f{font-size:63.360000px;}
.fs17{font-size:66.240000px;}
.fs1c{font-size:67.680000px;}
.fs11{font-size:72.000000px;}
.fs4{font-size:79.900800px;}
.fs16{font-size:79.920000px;}
.fs1e{font-size:84.240000px;}
.fs3{font-size:91.901400px;}
.fsa{font-size:95.760000px;}
.fs6{font-size:102.003000px;}
.fs1b{font-size:102.240000px;}
.fsf{font-size:108.000000px;}
.fs5{font-size:108.003000px;}
.fs20{font-size:112.320000px;}
.fs15{font-size:113.760000px;}
.fs2{font-size:117.713400px;}
.fs10{font-size:120.240000px;}
.fs1{font-size:135.713400px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:148.435200px;}
.fs19{font-size:149.760000px;}
.fs7{font-size:154.435200px;}
.fs8{font-size:166.435800px;}
.fsd{font-size:167.760000px;}
.fs14{font-size:174.240000px;}
.fs18{font-size:192.240000px;}
.fs1d{font-size:239.760000px;}
.fsb{font-size:264.240000px;}
.fs0{font-size:269.646600px;}
.y0{bottom:0.000000px;}
.y9a{bottom:7.063350px;}
.y48{bottom:9.101250px;}
.y5a{bottom:10.010490px;}
.yb1{bottom:12.293700px;}
.y55{bottom:12.323700px;}
.yda{bottom:12.520050px;}
.y166{bottom:12.661950px;}
.y15e{bottom:12.860310px;}
.y160{bottom:13.608030px;}
.y137{bottom:14.122200px;}
.ybd{bottom:14.381100px;}
.yb7{bottom:18.801300px;}
.y10b{bottom:19.459500px;}
.y1e{bottom:19.563450px;}
.y41{bottom:19.828320px;}
.y156{bottom:20.178750px;}
.y8d{bottom:20.729250px;}
.y136{bottom:20.974200px;}
.y93{bottom:23.325000px;}
.y14e{bottom:26.240700px;}
.y18d{bottom:26.761350px;}
.y15b{bottom:27.259950px;}
.y98{bottom:27.526650px;}
.y18f{bottom:27.548550px;}
.y59{bottom:29.816250px;}
.y2c{bottom:30.029850px;}
.y15f{bottom:30.890010px;}
.y53{bottom:32.568750px;}
.y16b{bottom:32.979750px;}
.y46{bottom:33.268620px;}
.y176{bottom:33.691950px;}
.yac{bottom:36.656850px;}
.y155{bottom:38.181450px;}
.y57{bottom:38.308800px;}
.y8c{bottom:38.729250px;}
.yaa{bottom:38.927100px;}
.y3e{bottom:39.876450px;}
.y66{bottom:40.603350px;}
.y5e{bottom:42.017250px;}
.ye2{bottom:42.478350px;}
.y108{bottom:46.032150px;}
.y52{bottom:48.768750px;}
.yaf{bottom:49.400550px;}
.y146{bottom:50.983350px;}
.yeb{bottom:52.006950px;}
.y2b{bottom:52.295850px;}
.y135{bottom:53.374200px;}
.y24{bottom:54.349200px;}
.y56{bottom:54.508800px;}
.y154{bottom:56.184150px;}
.y8b{bottom:56.729250px;}
.y65{bottom:56.803350px;}
.y3d{bottom:59.316450px;}
.y45{bottom:62.356800px;}
.y40{bottom:63.303360px;}
.y7a{bottom:63.771750px;}
.y107{bottom:64.034850px;}
.y51{bottom:64.968600px;}
.y16a{bottom:65.379750px;}
.y119{bottom:66.880200px;}
.y145{bottom:67.183350px;}
.y5d{bottom:67.194600px;}
.yea{bottom:68.206950px;}
.yab{bottom:69.056850px;}
.ya9{bottom:71.327100px;}
.y64{bottom:73.003350px;}
.y153{bottom:74.186850px;}
.ye1{bottom:74.878350px;}
.y170{bottom:75.011400px;}
.y23{bottom:75.049050px;}
.y17c{bottom:76.272660px;}
.y2d{bottom:78.449850px;}
.y3c{bottom:78.756450px;}
.y50{bottom:81.168750px;}
.yae{bottom:81.800550px;}
.y106{bottom:82.037550px;}
.y134{bottom:85.774200px;}
.y16e{bottom:87.958650px;}
.y8a{bottom:88.743450px;}
.ycd{bottom:93.578700px;}
.y7c{bottom:93.973200px;}
.y16{bottom:98.266380px;}
.yf8{bottom:99.381450px;}
.y6{bottom:99.416475px;}
.y105{bottom:100.040250px;}
.y17b{bottom:101.481480px;}
.y120{bottom:102.544110px;}
.y123{bottom:105.379710px;}
.yf1{bottom:113.940900px;}
.y133{bottom:118.174200px;}
.y25{bottom:120.018000px;}
.y89{bottom:121.143450px;}
.ycc{bottom:125.978700px;}
.y17a{bottom:126.690300px;}
.y15{bottom:127.066200px;}
.y11f{bottom:127.752930px;}
.yba{bottom:128.082900px;}
.y169{bottom:130.179750px;}
.y122{bottom:130.588530px;}
.yf7{bottom:131.781450px;}
.y79{bottom:135.942750px;}
.yb6{bottom:139.379700px;}
.yad{bottom:140.651550px;}
.yd9{bottom:142.436340px;}
.y7b{bottom:142.573200px;}
.y5{bottom:143.559000px;}
.y9c{bottom:144.092550px;}
.y9e{bottom:146.549550px;}
.y140{bottom:148.638000px;}
.y132{bottom:150.574200px;}
.y11e{bottom:152.961750px;}
.y142{bottom:153.984000px;}
.y6e{bottom:154.857750px;}
.y3f{bottom:155.137200px;}
.y121{bottom:155.797350px;}
.yc9{bottom:158.378700px;}
.y116{bottom:161.284080px;}
.yb{bottom:161.869230px;}
.y168{bottom:162.579750px;}
.yf6{bottom:164.181450px;}
.y2a{bottom:171.343200px;}
.yf0{bottom:171.540540px;}
.y88{bottom:171.543450px;}
.yb5{bottom:171.779700px;}
.y9b{bottom:176.492550px;}
.yb9{bottom:176.682900px;}
.y9d{bottom:178.949550px;}
.yd8{bottom:182.207700px;}
.y131{bottom:182.974200px;}
.y78{bottom:184.542750px;}
.ya{bottom:185.839470px;}
.y6d{bottom:187.257750px;}
.y4{bottom:187.701450px;}
.yc8{bottom:190.778700px;}
.y115{bottom:191.879400px;}
.y11a{bottom:192.065700px;}
.yf5{bottom:196.581450px;}
.y13f{bottom:197.238000px;}
.y34{bottom:197.568750px;}
.yef{bottom:200.340360px;}
.y141{bottom:202.584000px;}
.y187{bottom:202.904100px;}
.y29{bottom:203.743200px;}
.y1b{bottom:203.795370px;}
.yb4{bottom:204.179700px;}
.y72{bottom:205.705680px;}
.y15a{bottom:207.074460px;}
.y16f{bottom:208.933200px;}
.y9{bottom:209.809710px;}
.y6c{bottom:219.657750px;}
.y87{bottom:221.943450px;}
.yc7{bottom:223.178700px;}
.yb8{bottom:225.282900px;}
.y15d{bottom:225.812280px;}
.y33{bottom:226.728750px;}
.yf4{bottom:228.981450px;}
.y159{bottom:232.283280px;}
.y8{bottom:233.779950px;}
.y130{bottom:235.536000px;}
.yd7{bottom:236.936340px;}
.y114{bottom:237.603930px;}
.y4f{bottom:241.435350px;}
.y104{bottom:243.049320px;}
.y1a{bottom:244.660950px;}
.yb3{bottom:245.579700px;}
.y18b{bottom:249.666900px;}
.y18e{bottom:251.316900px;}
.y6b{bottom:252.057750px;}
.y86{bottom:254.343450px;}
.y15c{bottom:254.612100px;}
.ycb{bottom:255.578700px;}
.y158{bottom:257.492100px;}
.y7{bottom:257.750100px;}
.yee{bottom:257.940000px;}
.y103{bottom:264.468600px;}
.y12f{bottom:267.936000px;}
.y113{bottom:268.199250px;}
.y11{bottom:271.577250px;}
.y97{bottom:272.495400px;}
.ya8{bottom:276.454800px;}
.ydc{bottom:276.490500px;}
.yd6{bottom:276.707700px;}
.ye0{bottom:278.215350px;}
.y18a{bottom:282.066900px;}
.y39{bottom:285.723750px;}
.yed{bottom:287.460000px;}
.yc6{bottom:287.978700px;}
.yb2{bottom:289.213650px;}
.y12e{bottom:300.336000px;}
.y102{bottom:301.009470px;}
.y22{bottom:301.544700px;}
.y10{bottom:303.978150px;}
.y85{bottom:304.743450px;}
.y96{bottom:304.895400px;}
.ya7{bottom:308.854800px;}
.y4e{bottom:310.555350px;}
.ydf{bottom:310.615350px;}
.y124{bottom:310.740150px;}
.y189{bottom:314.466900px;}
.y38{bottom:314.523570px;}
.ya4{bottom:315.726300px;}
.yec{bottom:319.860000px;}
.yc5{bottom:320.378700px;}
.y101{bottom:322.428750px;}
.y21{bottom:325.844700px;}
.y19{bottom:327.101100px;}
.yd5{bottom:331.616340px;}
.yf{bottom:336.379050px;}
.y95{bottom:337.295400px;}
.ya6{bottom:340.874850px;}
.y165{bottom:342.942000px;}
.ya1{bottom:345.925200px;}
.ya3{bottom:348.126300px;}
.y5b{bottom:350.601750px;}
.y37{bottom:352.324830px;}
.yca{bottom:352.778700px;}
.y84{bottom:355.143450px;}
.y12d{bottom:357.237300px;}
.y112{bottom:359.283930px;}
.y186{bottom:360.232350px;}
.y71{bottom:364.280820px;}
.y6a{bottom:365.564700px;}
.y77{bottom:365.928750px;}
.y36{bottom:366.286200px;}
.y18c{bottom:366.873900px;}
.ye{bottom:368.779950px;}
.y94{bottom:369.695400px;}
.y13c{bottom:370.466250px;}
.y13e{bottom:370.956000px;}
.yd4{bottom:371.387700px;}
.yde{bottom:371.395500px;}
.ya5{bottom:373.274850px;}
.y164{bottom:375.342000px;}
.ya0{bottom:378.325200px;}
.y4d{bottom:379.495350px;}
.ya2{bottom:380.526300px;}
.yc4{bottom:385.178700px;}
.y35{bottom:385.726200px;}
.y69{bottom:387.164700px;}
.y83{bottom:387.543450px;}
.y12c{bottom:389.637300px;}
.y111{bottom:389.888610px;}
.y3b{bottom:390.389430px;}
.y185{bottom:392.632350px;}
.y18{bottom:397.993560px;}
.yd{bottom:401.180850px;}
.ydd{bottom:403.795500px;}
.y68{bottom:408.764700px;}
.y20{bottom:409.301250px;}
.y143{bottom:410.377500px;}
.y76{bottom:414.528750px;}
.yc3{bottom:417.578700px;}
.y13d{bottom:419.556000px;}
.y14d{bottom:420.092370px;}
.y110{bottom:420.483930px;}
.y12b{bottom:422.037300px;}
.yd3{bottom:426.124980px;}
.y75{bottom:426.273750px;}
.y7d{bottom:428.023950px;}
.y67{bottom:430.364700px;}
.y100{bottom:431.689320px;}
.yc{bottom:433.581750px;}
.y82{bottom:437.943450px;}
.y4c{bottom:448.444740px;}
.yc2{bottom:449.978700px;}
.y10f{bottom:451.079250px;}
.y14c{bottom:452.497050px;}
.yff{bottom:453.108600px;}
.y12a{bottom:454.437300px;}
.y184{bottom:457.432350px;}
.y91{bottom:457.768200px;}
.y13b{bottom:461.726250px;}
.yd2{bottom:465.896340px;}
.y17{bottom:469.272300px;}
.y163{bottom:472.542000px;}
.y1f{bottom:474.101250px;}
.y74{bottom:474.873750px;}
.y81{bottom:479.343450px;}
.ye8{bottom:482.268120px;}
.yc1{bottom:482.378700px;}
.y3a{bottom:485.646690px;}
.y129{bottom:486.837300px;}
.yfe{bottom:489.468600px;}
.y183{bottom:489.832350px;}
.y10e{bottom:496.799250px;}
.y63{bottom:499.094250px;}
.y14b{bottom:500.017050px;}
.y162{bottom:504.942000px;}
.yd1{bottom:505.667700px;}
.ye7{bottom:511.067940px;}
.yc0{bottom:514.778700px;}
.y4b{bottom:517.552680px;}
.y62{bottom:520.694250px;}
.yfd{bottom:525.830190px;}
.y10a{bottom:534.485700px;}
.y161{bottom:537.342000px;}
.y70{bottom:537.996300px;}
.y32{bottom:540.648750px;}
.y61{bottom:542.294250px;}
.y10d{bottom:542.343930px;}
.yfc{bottom:547.249470px;}
.y14a{bottom:547.357050px;}
.y128{bottom:547.611150px;}
.y182{bottom:554.632350px;}
.y44{bottom:558.758700px;}
.yd0{bottom:560.396340px;}
.y47{bottom:561.023100px;}
.y80{bottom:562.143450px;}
.y60{bottom:563.894250px;}
.y109{bottom:566.885700px;}
.ye6{bottom:568.667580px;}
.yfb{bottom:568.668750px;}
.y10c{bottom:572.939250px;}
.y4a{bottom:578.935200px;}
.y92{bottom:581.684400px;}
.y31{bottom:586.548750px;}
.y181{bottom:587.032350px;}
.y8f{bottom:592.051950px;}
.y7f{bottom:594.543450px;}
.y149{bottom:594.692220px;}
.y118{bottom:596.902650px;}
.ye5{bottom:597.467400px;}
.ycf{bottom:600.167700px;}
.y3{bottom:602.101140px;}
.y175{bottom:604.368750px;}
.y1d{bottom:604.624650px;}
.yfa{bottom:605.208600px;}
.y17e{bottom:606.016350px;}
.y127{bottom:612.411150px;}
.y178{bottom:615.876150px;}
.y151{bottom:620.558100px;}
.y172{bottom:622.306200px;}
.y8e{bottom:624.451950px;}
.ye4{bottom:626.987550px;}
.y148{bottom:627.096900px;}
.y139{bottom:627.576150px;}
.y117{bottom:629.302650px;}
.y11c{bottom:632.255010px;}
.y30{bottom:632.268750px;}
.y174{bottom:633.528750px;}
.y49{bottom:640.495350px;}
.y126{bottom:644.811150px;}
.ybf{bottom:649.190700px;}
.y43{bottom:652.754670px;}
.y150{bottom:652.958100px;}
.y180{bottom:653.092350px;}
.y17d{bottom:654.616350px;}
.ybc{bottom:656.832900px;}
.ye3{bottom:659.387550px;}
.y58{bottom:659.899800px;}
.y138{bottom:659.976150px;}
.y152{bottom:662.354100px;}
.y177{bottom:664.476150px;}
.y6f{bottom:667.893750px;}
.y5c{bottom:667.927500px;}
.y171{bottom:670.906200px;}
.y147{bottom:674.617050px;}
.y125{bottom:677.211150px;}
.y1c{bottom:680.673750px;}
.ybe{bottom:681.590700px;}
.y2{bottom:682.995120px;}
.y13a{bottom:684.479100px;}
.ybb{bottom:689.232900px;}
.yf3{bottom:689.688750px;}
.ydb{bottom:692.817450px;}
.y28{bottom:693.791910px;}
.y73{bottom:694.396950px;}
.y90{bottom:696.589500px;}
.y42{bottom:698.133750px;}
.y16d{bottom:698.144370px;}
.y9f{bottom:703.081200px;}
.y11b{bottom:703.533750px;}
.y157{bottom:705.884700px;}
.y179{bottom:706.310850px;}
.y17f{bottom:707.647950px;}
.y173{bottom:710.581800px;}
.y2f{bottom:711.828900px;}
.yb0{bottom:711.936450px;}
.y167{bottom:712.811400px;}
.y14f{bottom:713.684700px;}
.yce{bottom:717.851100px;}
.y188{bottom:719.893500px;}
.y26{bottom:726.554550px;}
.y54{bottom:728.233200px;}
.yf2{bottom:728.568750px;}
.y7e{bottom:728.873100px;}
.yf9{bottom:730.355250px;}
.y5f{bottom:731.652450px;}
.ye9{bottom:737.301600px;}
.y27{bottom:740.793150px;}
.y144{bottom:740.949300px;}
.y11d{bottom:742.279050px;}
.y16c{bottom:743.523450px;}
.y2e{bottom:757.188750px;}
.y99{bottom:759.906450px;}
.y1{bottom:763.889100px;}
.y14{bottom:1001.498700px;}
.y13{bottom:1046.029200px;}
.y12{bottom:1095.960000px;}
.h34{height:30.279375px;}
.h17{height:33.494766px;}
.h26{height:36.227109px;}
.h40{height:39.830273px;}
.h11{height:40.552734px;}
.h25{height:40.605469px;}
.h41{height:40.909922px;}
.h2a{height:43.506914px;}
.h22{height:44.878359px;}
.h4d{height:44.907039px;}
.h16{height:44.936719px;}
.h24{height:46.828125px;}
.h32{height:47.610000px;}
.h2b{height:47.942227px;}
.h27{height:48.224531px;}
.h38{height:49.744687px;}
.h31{height:49.809375px;}
.h49{height:50.830312px;}
.h4b{height:51.823125px;}
.h2d{height:52.417969px;}
.h5{height:53.213933px;}
.h19{height:54.070312px;}
.h14{height:54.140625px;}
.h4{height:61.206332px;}
.h44{height:61.329023px;}
.h4c{height:63.262266px;}
.h43{height:63.344531px;}
.h20{height:66.863672px;}
.h3e{height:68.143359px;}
.h1f{height:69.715898px;}
.hb{height:71.632969px;}
.he{height:71.913516px;}
.h39{height:72.007031px;}
.h6{height:72.686019px;}
.h4e{height:73.933594px;}
.h3f{height:74.433516px;}
.h2f{height:75.726562px;}
.h3c{height:75.747656px;}
.h36{height:76.779844px;}
.h3b{height:76.823086px;}
.h35{height:76.879688px;}
.h30{height:77.246362px;}
.h12{height:78.626953px;}
.h3{height:79.221118px;}
.h15{height:81.105469px;}
.h1d{height:81.210938px;}
.h46{height:82.266747px;}
.h21{height:83.041875px;}
.h4f{height:84.349688px;}
.h3a{height:85.324219px;}
.h47{height:85.429688px;}
.h33{height:86.470913px;}
.h45{height:86.500312px;}
.h37{height:88.661250px;}
.h13{height:90.297422px;}
.h2{height:91.335118px;}
.h1c{height:93.656250px;}
.h48{height:98.302312px;}
.h1b{height:98.651250px;}
.h9{height:99.896890px;}
.h7{height:103.934890px;}
.h23{height:104.270625px;}
.hd{height:108.140625px;}
.h3d{height:108.210938px;}
.h50{height:109.406250px;}
.h8{height:110.846243px;}
.h2c{height:112.539375px;}
.hf{height:124.875000px;}
.h28{height:125.983828px;}
.h1a{height:126.065742px;}
.h1e{height:129.069698px;}
.h18{height:130.935234px;}
.h10{height:131.553984px;}
.h29{height:144.367734px;}
.h2e{height:144.461602px;}
.h4a{height:180.054141px;}
.h42{height:180.171211px;}
.hc{height:198.567070px;}
.h1{height:237.289008px;}
.ha{height:810.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:46.319400px;}
.x90{left:56.235000px;}
.x2{left:57.277950px;}
.x4{left:58.548300px;}
.x48{left:64.800000px;}
.xe{left:66.087900px;}
.x78{left:68.488200px;}
.x86{left:71.871450px;}
.x60{left:74.894700px;}
.x4f{left:76.724400px;}
.x65{left:79.089450px;}
.xf{left:80.442450px;}
.x7d{left:81.840690px;}
.x26{left:85.762200px;}
.xc{left:87.023700px;}
.x4b{left:88.421250px;}
.x55{left:90.963150px;}
.x10{left:92.668950px;}
.x42{left:95.548800px;}
.x87{left:96.943050px;}
.x2a{left:98.985750px;}
.x20{left:100.034550px;}
.x61{left:101.894700px;}
.x3c{left:104.796000px;}
.x66{left:106.089450px;}
.x13{left:109.800000px;}
.x16{left:112.024800px;}
.x12{left:119.988600px;}
.x75{left:121.615950px;}
.x88{left:123.943050px;}
.x49{left:127.908300px;}
.x5a{left:135.715500px;}
.x17{left:139.024800px;}
.x3d{left:158.796000px;}
.x30{left:163.798560px;}
.x15{left:167.215800px;}
.x44{left:169.916400px;}
.x9{left:186.069600px;}
.x3e{left:192.636000px;}
.x14{left:204.511350px;}
.x27{left:253.417350px;}
.x83{left:257.490900px;}
.x18{left:280.467750px;}
.x7{left:298.182630px;}
.x1d{left:320.375100px;}
.x5b{left:327.388050px;}
.x6c{left:328.907550px;}
.x31{left:339.713550px;}
.x2c{left:344.369700px;}
.x6d{left:412.102500px;}
.x5{left:413.676450px;}
.x6{left:423.828750px;}
.x4c{left:477.142950px;}
.x11{left:478.927950px;}
.x50{left:483.330750px;}
.x29{left:487.318050px;}
.x28{left:538.894500px;}
.x79{left:542.048100px;}
.xa{left:544.259880px;}
.xd{left:547.857900px;}
.x7a{left:555.441300px;}
.x6e{left:560.197500px;}
.x8{left:569.109600px;}
.x1c{left:584.188560px;}
.x1f{left:598.355880px;}
.xb{left:619.945800px;}
.x3f{left:626.284050px;}
.x5c{left:642.873900px;}
.x36{left:656.481750px;}
.x22{left:659.718750px;}
.x3{left:662.557050px;}
.x4a{left:672.324600px;}
.x37{left:676.272750px;}
.x45{left:681.949200px;}
.x69{left:686.536050px;}
.x34{left:691.635750px;}
.x35{left:702.624750px;}
.x46{left:715.789200px;}
.x8c{left:727.856850px;}
.x89{left:730.800000px;}
.x1b{left:731.970180px;}
.x21{left:753.938550px;}
.x58{left:755.873250px;}
.x8f{left:757.271100px;}
.x54{left:777.339900px;}
.x47{left:792.824100px;}
.x1e{left:799.404000px;}
.x8d{left:820.098600px;}
.x81{left:823.839150px;}
.x4d{left:829.901550px;}
.x7e{left:842.224050px;}
.x82{left:857.652150px;}
.x43{left:867.360600px;}
.x7f{left:876.064050px;}
.x23{left:888.023550px;}
.x51{left:895.984050px;}
.x2b{left:901.212300px;}
.x6f{left:904.390350px;}
.x80{left:907.665000px;}
.x70{left:910.681350px;}
.x32{left:914.169750px;}
.x33{left:920.460750px;}
.x5d{left:925.644900px;}
.x25{left:928.362450px;}
.x71{left:933.091350px;}
.x5e{left:934.128450px;}
.x38{left:937.227750px;}
.x64{left:940.817250px;}
.x24{left:942.023550px;}
.x72{left:944.080350px;}
.x1a{left:958.921380px;}
.x2f{left:979.105050px;}
.x5f{left:986.703600px;}
.x67{left:988.755750px;}
.x84{left:997.081200px;}
.x7b{left:1028.159850px;}
.x2e{left:1039.231350px;}
.x7c{left:1041.768450px;}
.x19{left:1054.489860px;}
.x62{left:1088.618100px;}
.x2d{left:1101.529650px;}
.x8e{left:1115.415000px;}
.x6a{left:1127.452350px;}
.x73{left:1130.839350px;}
.x4e{left:1136.016750px;}
.x74{left:1150.630350px;}
.x52{left:1156.820250px;}
.x8a{left:1158.078450px;}
.x3b{left:1160.648400px;}
.x53{left:1167.809250px;}
.x8b{left:1177.869450px;}
.x6b{left:1189.576650px;}
.x39{left:1197.324600px;}
.x56{left:1199.804100px;}
.x63{left:1207.521000px;}
.x3a{left:1215.684600px;}
.x76{left:1218.001200px;}
.x57{left:1219.595100px;}
.x77{left:1224.292200px;}
.x85{left:1238.941050px;}
.x40{left:1244.942550px;}
.x41{left:1263.302550px;}
.x59{left:1306.038900px;}
.x68{left:1312.981350px;}
@media print{
.v4{vertical-align:-83.808000pt;}
.v8{vertical-align:-21.793280pt;}
.v7{vertical-align:-16.000000pt;}
.v2{vertical-align:-8.682240pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.350933pt;}
.v5{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.v9{vertical-align:42.197333pt;}
.v1{vertical-align:52.758933pt;}
.ls96{letter-spacing:-13.000320pt;}
.ls37{letter-spacing:-9.512320pt;}
.ls3a{letter-spacing:-8.947200pt;}
.ls75{letter-spacing:-7.936000pt;}
.ls62{letter-spacing:-5.815680pt;}
.ls2a{letter-spacing:-5.788160pt;}
.ls63{letter-spacing:-5.088000pt;}
.ls9d{letter-spacing:-4.792320pt;}
.ls95{letter-spacing:-3.836160pt;}
.ls42{letter-spacing:-3.712000pt;}
.lsa8{letter-spacing:-3.527040pt;}
.ls67{letter-spacing:-2.904960pt;}
.ls28{letter-spacing:-2.730240pt;}
.ls79{letter-spacing:-2.176000pt;}
.ls9a{letter-spacing:-2.021760pt;}
.ls1d{letter-spacing:-1.920000pt;}
.lsb6{letter-spacing:-1.824000pt;}
.ls86{letter-spacing:-1.544960pt;}
.ls84{letter-spacing:-1.537920pt;}
.lsba{letter-spacing:-1.491200pt;}
.lsb7{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-0.929280pt;}
.ls10{letter-spacing:-0.900480pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls77{letter-spacing:-0.768000pt;}
.ls3c{letter-spacing:-0.745600pt;}
.ls85{letter-spacing:-0.454400pt;}
.ls5c{letter-spacing:-0.353280pt;}
.ls66{letter-spacing:-0.341760pt;}
.ls35{letter-spacing:-0.320640pt;}
.ls48{letter-spacing:-0.318720pt;}
.ls1a{letter-spacing:-0.309760pt;}
.ls24{letter-spacing:-0.303360pt;}
.lsaf{letter-spacing:-0.300160pt;}
.ls9c{letter-spacing:-0.299520pt;}
.ls23{letter-spacing:-0.298240pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls9e{letter-spacing:-0.281600pt;}
.ls6b{letter-spacing:-0.272640pt;}
.ls51{letter-spacing:-0.266240pt;}
.lse{letter-spacing:-0.265600pt;}
.lsae{letter-spacing:-0.257280pt;}
.ls76{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.255360pt;}
.ls14{letter-spacing:-0.234880pt;}
.ls9f{letter-spacing:-0.225280pt;}
.ls97{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.213760pt;}
.ls94{letter-spacing:-0.213120pt;}
.ls4e{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.181760pt;}
.ls5b{letter-spacing:-0.176640pt;}
.lsb1{letter-spacing:-0.171520pt;}
.ls68{letter-spacing:-0.170880pt;}
.ls3{letter-spacing:-0.170240pt;}
.ls2e{letter-spacing:-0.159360pt;}
.ls19{letter-spacing:-0.154880pt;}
.ls98{letter-spacing:-0.149760pt;}
.ls22{letter-spacing:-0.149120pt;}
.ls6{letter-spacing:-0.144000pt;}
.lsbd{letter-spacing:-0.133120pt;}
.lsb2{letter-spacing:-0.128640pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls87{letter-spacing:-0.120320pt;}
.ls3e{letter-spacing:-0.117760pt;}
.lsa0{letter-spacing:-0.112640pt;}
.ls49{letter-spacing:-0.106240pt;}
.ls27{letter-spacing:-0.101120pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls6a{letter-spacing:-0.090880pt;}
.lsb0{letter-spacing:-0.085760pt;}
.ls1{letter-spacing:-0.085120pt;}
.ls99{letter-spacing:-0.074880pt;}
.ls36{letter-spacing:-0.071040pt;}
.ls5a{letter-spacing:-0.058880pt;}
.ls2f{letter-spacing:-0.053120pt;}
.ls71{letter-spacing:-0.048000pt;}
.ls3d{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb4{letter-spacing:0.042880pt;}
.ls4f{letter-spacing:0.053120pt;}
.lsa3{letter-spacing:0.056320pt;}
.ls18{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.085120pt;}
.ls7b{letter-spacing:0.090880pt;}
.lsc{letter-spacing:0.096000pt;}
.lsbe{letter-spacing:0.099840pt;}
.ls26{letter-spacing:0.101120pt;}
.ls31{letter-spacing:0.106240pt;}
.lsa9{letter-spacing:0.106880pt;}
.lsa4{letter-spacing:0.112640pt;}
.ls59{letter-spacing:0.117760pt;}
.lsab{letter-spacing:0.120064pt;}
.ls4d{letter-spacing:0.127488pt;}
.lsbf{letter-spacing:0.128000pt;}
.lsaa{letter-spacing:0.128640pt;}
.lsad{letter-spacing:0.137216pt;}
.ls2b{letter-spacing:0.149120pt;}
.ls9b{letter-spacing:0.149760pt;}
.ls1c{letter-spacing:0.154880pt;}
.lsac{letter-spacing:0.158656pt;}
.ls30{letter-spacing:0.159360pt;}
.ls92{letter-spacing:0.168960pt;}
.ls29{letter-spacing:0.170240pt;}
.ls45{letter-spacing:0.170880pt;}
.lsb3{letter-spacing:0.171520pt;}
.ls6c{letter-spacing:0.181760pt;}
.ls44{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.202240pt;}
.ls4c{letter-spacing:0.212480pt;}
.ls93{letter-spacing:0.213120pt;}
.lsa7{letter-spacing:0.213760pt;}
.ls16{letter-spacing:0.216832pt;}
.lsa2{letter-spacing:0.225280pt;}
.ls4b{letter-spacing:0.228416pt;}
.ls55{letter-spacing:0.235520pt;}
.ls65{letter-spacing:0.236288pt;}
.ls39{letter-spacing:0.240000pt;}
.ls70{letter-spacing:0.255360pt;}
.ls2{letter-spacing:0.256000pt;}
.ls7e{letter-spacing:0.272640pt;}
.ls8{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.298240pt;}
.ls8d{letter-spacing:0.299520pt;}
.ls20{letter-spacing:0.303360pt;}
.ls15{letter-spacing:0.309760pt;}
.lsa{letter-spacing:0.320640pt;}
.ls6f{letter-spacing:0.336000pt;}
.lsa1{letter-spacing:0.337920pt;}
.lsb5{letter-spacing:0.537600pt;}
.ls82{letter-spacing:0.545280pt;}
.ls6d{letter-spacing:0.547200pt;}
.ls6e{letter-spacing:0.576000pt;}
.ls60{letter-spacing:0.596480pt;}
.ls72{letter-spacing:0.640000pt;}
.ls7d{letter-spacing:0.743680pt;}
.ls4a{letter-spacing:0.796800pt;}
.ls7c{letter-spacing:0.807424pt;}
.ls8a{letter-spacing:0.912000pt;}
.ls41{letter-spacing:0.945600pt;}
.ls5e{letter-spacing:1.178048pt;}
.ls83{letter-spacing:1.181440pt;}
.lsb9{letter-spacing:1.192960pt;}
.ls21{letter-spacing:1.259776pt;}
.ls73{letter-spacing:1.267200pt;}
.ls74{letter-spacing:1.280000pt;}
.ls40{letter-spacing:1.416640pt;}
.ls11{letter-spacing:1.457920pt;}
.ls89{letter-spacing:1.552000pt;}
.ls8e{letter-spacing:1.572480pt;}
.ls13{letter-spacing:1.586560pt;}
.ls3f{letter-spacing:1.938560pt;}
.ls5d{letter-spacing:2.028032pt;}
.ls2c{letter-spacing:2.071680pt;}
.ls88{letter-spacing:2.192000pt;}
.ls12{letter-spacing:2.229760pt;}
.ls5f{letter-spacing:2.535040pt;}
.lsb8{letter-spacing:3.220992pt;}
.lsf{letter-spacing:3.430400pt;}
.ls8f{letter-spacing:12.446720pt;}
.ls80{letter-spacing:13.226880pt;}
.ls33{letter-spacing:13.248000pt;}
.ls91{letter-spacing:13.573120pt;}
.ls90{letter-spacing:13.854720pt;}
.ls81{letter-spacing:13.864320pt;}
.ls7f{letter-spacing:13.917440pt;}
.ls54{letter-spacing:14.661120pt;}
.ls34{letter-spacing:15.897600pt;}
.ls50{letter-spacing:16.128000pt;}
.ls17{letter-spacing:17.280000pt;}
.ls7a{letter-spacing:18.993920pt;}
.ls8c{letter-spacing:20.142720pt;}
.lsbb{letter-spacing:20.517120pt;}
.ls52{letter-spacing:21.120000pt;}
.ls8b{letter-spacing:21.265920pt;}
.ls53{letter-spacing:21.792000pt;}
.ls56{letter-spacing:26.208000pt;}
.ls57{letter-spacing:26.880000pt;}
.ls1f{letter-spacing:28.111360pt;}
.ls61{letter-spacing:28.195200pt;}
.lsa6{letter-spacing:29.605760pt;}
.ls47{letter-spacing:34.784000pt;}
.ls5{letter-spacing:58.570240pt;}
.lsa5{letter-spacing:58.592000pt;}
.ls1e{letter-spacing:60.608000pt;}
.ls4{letter-spacing:62.400000pt;}
.ls64{letter-spacing:64.192000pt;}
.ls46{letter-spacing:86.720000pt;}
.ls58{letter-spacing:112.960000pt;}
.lsbc{letter-spacing:116.032000pt;}
.ls43{letter-spacing:166.048000pt;}
.ws37{word-spacing:-66.223360pt;}
.ws84{word-spacing:-64.592000pt;}
.wsd{word-spacing:-64.357120pt;}
.ws10a{word-spacing:-58.821120pt;}
.ws10b{word-spacing:-58.394880pt;}
.ws10c{word-spacing:-54.771840pt;}
.wsb4{word-spacing:-47.162880pt;}
.wsc6{word-spacing:-46.650240pt;}
.ws10d{word-spacing:-45.607680pt;}
.wsc7{word-spacing:-44.087040pt;}
.ws1b{word-spacing:-42.901760pt;}
.ws1c{word-spacing:-42.437120pt;}
.ws1d{word-spacing:-42.282240pt;}
.ws1e{word-spacing:-41.662720pt;}
.ws7b{word-spacing:-41.306240pt;}
.ws7c{word-spacing:-41.157120pt;}
.ws9d{word-spacing:-41.008000pt;}
.wsc0{word-spacing:-40.858880pt;}
.ws6b{word-spacing:-40.709760pt;}
.ws147{word-spacing:-39.516800pt;}
.wse6{word-spacing:-35.456000pt;}
.ws2{word-spacing:-35.328000pt;}
.wse7{word-spacing:-35.200000pt;}
.wse4{word-spacing:-35.072000pt;}
.wse3{word-spacing:-34.944000pt;}
.wse5{word-spacing:-33.024000pt;}
.ws148{word-spacing:-32.060800pt;}
.ws61{word-spacing:-29.285120pt;}
.ws5f{word-spacing:-29.071360pt;}
.ws2e{word-spacing:-28.212480pt;}
.ws30{word-spacing:-27.808000pt;}
.ws31{word-spacing:-27.706880pt;}
.ws35{word-spacing:-26.496000pt;}
.ws86{word-spacing:-26.400000pt;}
.ws34{word-spacing:-26.304000pt;}
.ws141{word-spacing:-26.208000pt;}
.ws9{word-spacing:-26.112000pt;}
.wsd6{word-spacing:-26.016000pt;}
.ws12f{word-spacing:-25.758080pt;}
.wsf9{word-spacing:-25.264640pt;}
.wsfe{word-spacing:-25.173760pt;}
.wsfc{word-spacing:-25.082880pt;}
.ws32{word-spacing:-25.077760pt;}
.ws143{word-spacing:-24.960000pt;}
.wsfd{word-spacing:-24.901120pt;}
.wsff{word-spacing:-24.810240pt;}
.wsc8{word-spacing:-24.719360pt;}
.ws142{word-spacing:-24.480000pt;}
.ws3a{word-spacing:-23.663360pt;}
.ws112{word-spacing:-23.616000pt;}
.wsfa{word-spacing:-23.537920pt;}
.ws113{word-spacing:-23.520000pt;}
.ws38{word-spacing:-23.493120pt;}
.ws14f{word-spacing:-23.408000pt;}
.ws13a{word-spacing:-23.322880pt;}
.wsc5{word-spacing:-21.408000pt;}
.wsac{word-spacing:-21.312000pt;}
.ws111{word-spacing:-21.116160pt;}
.wsd9{word-spacing:-21.109760pt;}
.wsae{word-spacing:-21.024000pt;}
.wsab{word-spacing:-20.928000pt;}
.wsad{word-spacing:-20.832000pt;}
.ws10f{word-spacing:-20.741760pt;}
.ws110{word-spacing:-20.517120pt;}
.ws60{word-spacing:-19.393920pt;}
.ws39{word-spacing:-17.792000pt;}
.ws1f{word-spacing:-17.600000pt;}
.ws20{word-spacing:-17.408000pt;}
.wsfb{word-spacing:-16.483840pt;}
.wsb8{word-spacing:-16.309760pt;}
.wsb6{word-spacing:-16.133120pt;}
.wsc9{word-spacing:-16.074240pt;}
.wsb7{word-spacing:-16.015360pt;}
.wsba{word-spacing:-14.714240pt;}
.ws9e{word-spacing:-14.661120pt;}
.ws52{word-spacing:-14.554880pt;}
.ws50{word-spacing:-14.501760pt;}
.ws91{word-spacing:-14.448640pt;}
.ws4f{word-spacing:-14.395520pt;}
.ws9f{word-spacing:-14.289280pt;}
.ws115{word-spacing:-14.080000pt;}
.ws11c{word-spacing:-13.967360pt;}
.ws7d{word-spacing:-13.824000pt;}
.ws116{word-spacing:-13.742080pt;}
.ws11b{word-spacing:-13.685760pt;}
.wsd8{word-spacing:-13.488000pt;}
.wsf7{word-spacing:-13.455296pt;}
.wsd7{word-spacing:-13.104000pt;}
.ws67{word-spacing:-13.056000pt;}
.ws8{word-spacing:-13.008000pt;}
.wsf5{word-spacing:-12.961280pt;}
.ws7e{word-spacing:-12.864000pt;}
.wsf6{word-spacing:-12.801920pt;}
.ws100{word-spacing:-11.952000pt;}
.ws13d{word-spacing:-11.920640pt;}
.ws13f{word-spacing:-11.877760pt;}
.ws13e{word-spacing:-11.792000pt;}
.ws136{word-spacing:-11.706240pt;}
.ws139{word-spacing:-11.663360pt;}
.ws13c{word-spacing:-11.620480pt;}
.ws13b{word-spacing:-11.577600pt;}
.ws137{word-spacing:-11.491840pt;}
.ws138{word-spacing:-11.448960pt;}
.wsec{word-spacing:-10.942720pt;}
.wsed{word-spacing:-10.889600pt;}
.wsb9{word-spacing:-9.820160pt;}
.ws17{word-spacing:-3.430400pt;}
.wsc3{word-spacing:-2.688000pt;}
.ws28{word-spacing:-2.432000pt;}
.wsbb{word-spacing:-2.392320pt;}
.wsbd{word-spacing:-2.296320pt;}
.wsc{word-spacing:-2.272640pt;}
.ws29{word-spacing:-2.240000pt;}
.wsd3{word-spacing:-2.181120pt;}
.ws126{word-spacing:-2.112000pt;}
.ws12c{word-spacing:-1.914880pt;}
.ws5{word-spacing:-1.879040pt;}
.ws33{word-spacing:-1.862400pt;}
.ws46{word-spacing:-1.824000pt;}
.ws44{word-spacing:-1.820160pt;}
.wscd{word-spacing:-1.817600pt;}
.wsaa{word-spacing:-1.728000pt;}
.wsee{word-spacing:-1.708800pt;}
.ws27{word-spacing:-1.600000pt;}
.wsf4{word-spacing:-1.593600pt;}
.ws19{word-spacing:-1.586560pt;}
.ws87{word-spacing:-1.537920pt;}
.ws125{word-spacing:-1.536000pt;}
.ws79{word-spacing:-1.530880pt;}
.wsb5{word-spacing:-1.524992pt;}
.wsb{word-spacing:-1.500800pt;}
.ws14c{word-spacing:-1.497600pt;}
.ws11a{word-spacing:-1.492480pt;}
.ws104{word-spacing:-1.454080pt;}
.ws13{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.408000pt;}
.ws131{word-spacing:-1.282560pt;}
.ws9c{word-spacing:-1.274880pt;}
.ws21{word-spacing:-1.239040pt;}
.ws14e{word-spacing:-1.198080pt;}
.ws56{word-spacing:-1.191680pt;}
.ws109{word-spacing:-1.174400pt;}
.ws14{word-spacing:-1.152000pt;}
.ws6e{word-spacing:-1.068800pt;}
.ws93{word-spacing:-1.056000pt;}
.ws140{word-spacing:-1.048320pt;}
.ws144{word-spacing:-1.025280pt;}
.wsd4{word-spacing:-0.999680pt;}
.ws14a{word-spacing:-0.995904pt;}
.ws4d{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.942080pt;}
.ws10e{word-spacing:-0.928512pt;}
.ws65{word-spacing:-0.912000pt;}
.wsd2{word-spacing:-0.908800pt;}
.ws7a{word-spacing:-0.883200pt;}
.ws146{word-spacing:-0.864000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.748160pt;}
.wsf2{word-spacing:-0.743680pt;}
.ws8f{word-spacing:-0.690560pt;}
.ws11f{word-spacing:-0.673920pt;}
.wsb1{word-spacing:-0.672000pt;}
.wsa1{word-spacing:-0.664000pt;}
.ws134{word-spacing:-0.641280pt;}
.ws5d{word-spacing:-0.637440pt;}
.wsf0{word-spacing:-0.636160pt;}
.ws72{word-spacing:-0.624000pt;}
.ws85{word-spacing:-0.596480pt;}
.ws8b{word-spacing:-0.584320pt;}
.wsb0{word-spacing:-0.576000pt;}
.wsf1{word-spacing:-0.545280pt;}
.ws132{word-spacing:-0.534400pt;}
.ws11d{word-spacing:-0.524160pt;}
.ws26{word-spacing:-0.512000pt;}
.wsde{word-spacing:-0.510720pt;}
.ws127{word-spacing:-0.506880pt;}
.ws45{word-spacing:-0.480000pt;}
.ws5a{word-spacing:-0.478080pt;}
.ws108{word-spacing:-0.469760pt;}
.ws6f{word-spacing:-0.427520pt;}
.ws4a{word-spacing:-0.425600pt;}
.ws97{word-spacing:-0.424960pt;}
.ws42{word-spacing:-0.404480pt;}
.ws94{word-spacing:-0.384000pt;}
.wscc{word-spacing:-0.363520pt;}
.wsf8{word-spacing:-0.361216pt;}
.wsca{word-spacing:-0.341760pt;}
.ws12a{word-spacing:-0.337920pt;}
.ws6d{word-spacing:-0.320640pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.313152pt;}
.ws14b{word-spacing:-0.299520pt;}
.wsc4{word-spacing:-0.288000pt;}
.wsd1{word-spacing:-0.272640pt;}
.ws102{word-spacing:-0.265600pt;}
.wsa9{word-spacing:-0.256000pt;}
.ws0{word-spacing:-0.239686pt;}
.ws14d{word-spacing:-0.224640pt;}
.ws10{word-spacing:-0.213760pt;}
.ws95{word-spacing:-0.212480pt;}
.ws3e{word-spacing:-0.202240pt;}
.ws12{word-spacing:-0.192000pt;}
.ws105{word-spacing:-0.181760pt;}
.ws77{word-spacing:-0.171520pt;}
.wsaf{word-spacing:-0.170880pt;}
.ws5b{word-spacing:-0.170240pt;}
.ws129{word-spacing:-0.168960pt;}
.ws5e{word-spacing:-0.159360pt;}
.ws24{word-spacing:-0.154880pt;}
.ws54{word-spacing:-0.149120pt;}
.ws2b{word-spacing:-0.128000pt;}
.ws135{word-spacing:-0.106880pt;}
.wsf3{word-spacing:-0.106240pt;}
.wsf{word-spacing:-0.096000pt;}
.ws106{word-spacing:-0.090880pt;}
.wsda{word-spacing:-0.085120pt;}
.ws2d{word-spacing:-0.064000pt;}
.ws8c{word-spacing:-0.053120pt;}
.ws130{word-spacing:-0.048000pt;}
.wsa{word-spacing:-0.042880pt;}
.wsa3{word-spacing:-0.026560pt;}
.ws1{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.053120pt;}
.ws121{word-spacing:0.074880pt;}
.wsdc{word-spacing:0.085120pt;}
.wsea{word-spacing:0.090880pt;}
.ws47{word-spacing:0.096000pt;}
.ws41{word-spacing:0.101120pt;}
.ws128{word-spacing:0.112640pt;}
.ws82{word-spacing:0.128000pt;}
.ws117{word-spacing:0.146432pt;}
.ws80{word-spacing:0.149120pt;}
.ws11e{word-spacing:0.149760pt;}
.ws22{word-spacing:0.154880pt;}
.wsa5{word-spacing:0.159360pt;}
.ws4c{word-spacing:0.170240pt;}
.wscb{word-spacing:0.170880pt;}
.wsce{word-spacing:0.181760pt;}
.ws15{word-spacing:0.192000pt;}
.ws57{word-spacing:0.212480pt;}
.ws78{word-spacing:0.213760pt;}
.ws1a{word-spacing:0.234880pt;}
.ws103{word-spacing:0.265600pt;}
.wsd0{word-spacing:0.272640pt;}
.ws12b{word-spacing:0.281600pt;}
.ws70{word-spacing:0.288000pt;}
.ws81{word-spacing:0.298240pt;}
.ws122{word-spacing:0.299520pt;}
.ws3f{word-spacing:0.303360pt;}
.ws23{word-spacing:0.309760pt;}
.ws107{word-spacing:0.318720pt;}
.wsdd{word-spacing:0.340480pt;}
.wsbe{word-spacing:0.353280pt;}
.wscf{word-spacing:0.363520pt;}
.ws16{word-spacing:0.371840pt;}
.ws2a{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.404480pt;}
.wsbf{word-spacing:0.412160pt;}
.ws9a{word-spacing:0.424960pt;}
.ws71{word-spacing:0.432000pt;}
.ws118{word-spacing:0.444928pt;}
.ws76{word-spacing:0.447360pt;}
.wse{word-spacing:0.480000pt;}
.ws43{word-spacing:0.505600pt;}
.ws7{word-spacing:0.510720pt;}
.ws83{word-spacing:0.576000pt;}
.ws68{word-spacing:0.596480pt;}
.wsef{word-spacing:0.636160pt;}
.ws12d{word-spacing:0.639360pt;}
.ws48{word-spacing:0.672000pt;}
.ws49{word-spacing:0.680960pt;}
.ws59{word-spacing:0.690560pt;}
.ws3b{word-spacing:0.745600pt;}
.ws133{word-spacing:0.748160pt;}
.ws88{word-spacing:0.768000pt;}
.wsa8{word-spacing:0.798720pt;}
.ws3d{word-spacing:0.808960pt;}
.ws98{word-spacing:0.849920pt;}
.ws4b{word-spacing:0.851200pt;}
.ws3c{word-spacing:0.894720pt;}
.wse9{word-spacing:0.896000pt;}
.ws12e{word-spacing:0.897600pt;}
.ws18{word-spacing:0.900480pt;}
.wsd5{word-spacing:0.908800pt;}
.wse0{word-spacing:0.936320pt;}
.ws5c{word-spacing:0.956160pt;}
.ws124{word-spacing:0.960000pt;}
.ws90{word-spacing:0.972096pt;}
.ws53{word-spacing:1.043840pt;}
.ws74{word-spacing:1.056000pt;}
.ws4{word-spacing:1.106560pt;}
.ws145{word-spacing:1.152000pt;}
.wsa4{word-spacing:1.168640pt;}
.wsdb{word-spacing:1.191680pt;}
.ws149{word-spacing:1.192960pt;}
.ws66{word-spacing:1.200000pt;}
.ws63{word-spacing:1.314624pt;}
.wsa6{word-spacing:1.328000pt;}
.wsc2{word-spacing:1.342080pt;}
.wsdf{word-spacing:1.367040pt;}
.ws40{word-spacing:1.415680pt;}
.wsb2{word-spacing:1.440000pt;}
.wsa7{word-spacing:1.487360pt;}
.ws7f{word-spacing:1.491200pt;}
.wse1{word-spacing:1.532160pt;}
.ws101{word-spacing:1.537920pt;}
.ws6a{word-spacing:1.640320pt;}
.ws3{word-spacing:1.702400pt;}
.wsa2{word-spacing:1.806080pt;}
.ws73{word-spacing:1.872000pt;}
.ws58{word-spacing:1.912320pt;}
.wsb3{word-spacing:1.920000pt;}
.ws120{word-spacing:2.021760pt;}
.ws55{word-spacing:2.087680pt;}
.wsa0{word-spacing:2.135424pt;}
.ws96{word-spacing:2.284160pt;}
.wse2{word-spacing:2.298240pt;}
.ws92{word-spacing:2.677248pt;}
.ws36{word-spacing:2.723840pt;}
.ws6c{word-spacing:2.808000pt;}
.ws99{word-spacing:2.921600pt;}
.ws8a{word-spacing:3.112832pt;}
.ws8e{word-spacing:3.750272pt;}
.ws123{word-spacing:4.792320pt;}
.ws4e{word-spacing:5.788160pt;}
.wsc1{word-spacing:5.815680pt;}
.wse8{word-spacing:7.936000pt;}
.ws75{word-spacing:8.947200pt;}
.wseb{word-spacing:15.685888pt;}
.ws62{word-spacing:19.355968pt;}
.ws119{word-spacing:36.357120pt;}
.ws114{word-spacing:38.835200pt;}
.ws89{word-spacing:84.133760pt;}
.ws8d{word-spacing:84.293120pt;}
.ws64{word-spacing:95.424000pt;}
.ws51{word-spacing:759.781120pt;}
._9{margin-left:-19.565504pt;}
._1b{margin-left:-17.053824pt;}
._15{margin-left:-14.139776pt;}
._1{margin-left:-11.265236pt;}
._7{margin-left:-10.370800pt;}
._13{margin-left:-8.991936pt;}
._0{margin-left:-7.909634pt;}
._10{margin-left:-6.852653pt;}
._5{margin-left:-5.610812pt;}
._6{margin-left:-4.686602pt;}
._2{margin-left:-2.876230pt;}
._4{margin-left:-1.956783pt;}
._3{margin-left:-0.984062pt;}
._8{width:0.922524pt;}
._a{width:2.207872pt;}
._c{width:3.260096pt;}
._d{width:4.196612pt;}
._f{width:5.340516pt;}
._19{width:6.482679pt;}
._1c{width:7.680000pt;}
._e{width:8.997651pt;}
._b{width:9.911936pt;}
._14{width:13.206033pt;}
._16{width:15.535735pt;}
._12{width:20.599040pt;}
._1a{width:24.737139pt;}
._1d{width:26.418633pt;}
._18{width:178.307166pt;}
._17{width:521.400062pt;}
._1e{width:1312.291898pt;}
._11{width:1790.811486pt;}
.fs1a{font-size:35.840000pt;}
.fs13{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs12{font-size:53.120000pt;}
.fs1f{font-size:56.320000pt;}
.fs17{font-size:58.880000pt;}
.fs1c{font-size:60.160000pt;}
.fs11{font-size:64.000000pt;}
.fs4{font-size:71.022933pt;}
.fs16{font-size:71.040000pt;}
.fs1e{font-size:74.880000pt;}
.fs3{font-size:81.690133pt;}
.fsa{font-size:85.120000pt;}
.fs6{font-size:90.669333pt;}
.fs1b{font-size:90.880000pt;}
.fsf{font-size:96.000000pt;}
.fs5{font-size:96.002667pt;}
.fs20{font-size:99.840000pt;}
.fs15{font-size:101.120000pt;}
.fs2{font-size:104.634133pt;}
.fs10{font-size:106.880000pt;}
.fs1{font-size:120.634133pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:131.942400pt;}
.fs19{font-size:133.120000pt;}
.fs7{font-size:137.275733pt;}
.fs8{font-size:147.942933pt;}
.fsd{font-size:149.120000pt;}
.fs14{font-size:154.880000pt;}
.fs18{font-size:170.880000pt;}
.fs1d{font-size:213.120000pt;}
.fsb{font-size:234.880000pt;}
.fs0{font-size:239.685867pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:6.278533pt;}
.y48{bottom:8.090000pt;}
.y5a{bottom:8.898213pt;}
.yb1{bottom:10.927733pt;}
.y55{bottom:10.954400pt;}
.yda{bottom:11.128933pt;}
.y166{bottom:11.255067pt;}
.y15e{bottom:11.431387pt;}
.y160{bottom:12.096027pt;}
.y137{bottom:12.553067pt;}
.ybd{bottom:12.783200pt;}
.yb7{bottom:16.712267pt;}
.y10b{bottom:17.297333pt;}
.y1e{bottom:17.389733pt;}
.y41{bottom:17.625173pt;}
.y156{bottom:17.936667pt;}
.y8d{bottom:18.426000pt;}
.y136{bottom:18.643733pt;}
.y93{bottom:20.733333pt;}
.y14e{bottom:23.325067pt;}
.y18d{bottom:23.787867pt;}
.y15b{bottom:24.231067pt;}
.y98{bottom:24.468133pt;}
.y18f{bottom:24.487600pt;}
.y59{bottom:26.503333pt;}
.y2c{bottom:26.693200pt;}
.y15f{bottom:27.457787pt;}
.y53{bottom:28.950000pt;}
.y16b{bottom:29.315333pt;}
.y46{bottom:29.572107pt;}
.y176{bottom:29.948400pt;}
.yac{bottom:32.583867pt;}
.y155{bottom:33.939067pt;}
.y57{bottom:34.052267pt;}
.y8c{bottom:34.426000pt;}
.yaa{bottom:34.601867pt;}
.y3e{bottom:35.445733pt;}
.y66{bottom:36.091867pt;}
.y5e{bottom:37.348667pt;}
.ye2{bottom:37.758533pt;}
.y108{bottom:40.917467pt;}
.y52{bottom:43.350000pt;}
.yaf{bottom:43.911600pt;}
.y146{bottom:45.318533pt;}
.yeb{bottom:46.228400pt;}
.y2b{bottom:46.485200pt;}
.y135{bottom:47.443733pt;}
.y24{bottom:48.310400pt;}
.y56{bottom:48.452267pt;}
.y154{bottom:49.941467pt;}
.y8b{bottom:50.426000pt;}
.y65{bottom:50.491867pt;}
.y3d{bottom:52.725733pt;}
.y45{bottom:55.428267pt;}
.y40{bottom:56.269653pt;}
.y7a{bottom:56.686000pt;}
.y107{bottom:56.919867pt;}
.y51{bottom:57.749867pt;}
.y16a{bottom:58.115333pt;}
.y119{bottom:59.449067pt;}
.y145{bottom:59.718533pt;}
.y5d{bottom:59.728533pt;}
.yea{bottom:60.628400pt;}
.yab{bottom:61.383867pt;}
.ya9{bottom:63.401867pt;}
.y64{bottom:64.891867pt;}
.y153{bottom:65.943867pt;}
.ye1{bottom:66.558533pt;}
.y170{bottom:66.676800pt;}
.y23{bottom:66.710267pt;}
.y17c{bottom:67.797920pt;}
.y2d{bottom:69.733200pt;}
.y3c{bottom:70.005733pt;}
.y50{bottom:72.150000pt;}
.yae{bottom:72.711600pt;}
.y106{bottom:72.922267pt;}
.y134{bottom:76.243733pt;}
.y16e{bottom:78.185467pt;}
.y8a{bottom:78.883067pt;}
.ycd{bottom:83.181067pt;}
.y7c{bottom:83.531733pt;}
.y16{bottom:87.347893pt;}
.yf8{bottom:88.339067pt;}
.y6{bottom:88.370200pt;}
.y105{bottom:88.924667pt;}
.y17b{bottom:90.205760pt;}
.y120{bottom:91.150320pt;}
.y123{bottom:93.670853pt;}
.yf1{bottom:101.280800pt;}
.y133{bottom:105.043733pt;}
.y25{bottom:106.682667pt;}
.y89{bottom:107.683067pt;}
.ycc{bottom:111.981067pt;}
.y17a{bottom:112.613600pt;}
.y15{bottom:112.947733pt;}
.y11f{bottom:113.558160pt;}
.yba{bottom:113.851467pt;}
.y169{bottom:115.715333pt;}
.y122{bottom:116.078693pt;}
.yf7{bottom:117.139067pt;}
.y79{bottom:120.838000pt;}
.yb6{bottom:123.893067pt;}
.yad{bottom:125.023600pt;}
.yd9{bottom:126.610080pt;}
.y7b{bottom:126.731733pt;}
.y5{bottom:127.608000pt;}
.y9c{bottom:128.082267pt;}
.y9e{bottom:130.266267pt;}
.y140{bottom:132.122667pt;}
.y132{bottom:133.843733pt;}
.y11e{bottom:135.966000pt;}
.y142{bottom:136.874667pt;}
.y6e{bottom:137.651333pt;}
.y3f{bottom:137.899733pt;}
.y121{bottom:138.486533pt;}
.yc9{bottom:140.781067pt;}
.y116{bottom:143.363627pt;}
.yb{bottom:143.883760pt;}
.y168{bottom:144.515333pt;}
.yf6{bottom:145.939067pt;}
.y2a{bottom:152.305067pt;}
.yf0{bottom:152.480480pt;}
.y88{bottom:152.483067pt;}
.yb5{bottom:152.693067pt;}
.y9b{bottom:156.882267pt;}
.yb9{bottom:157.051467pt;}
.y9d{bottom:159.066267pt;}
.yd8{bottom:161.962400pt;}
.y131{bottom:162.643733pt;}
.y78{bottom:164.038000pt;}
.ya{bottom:165.190640pt;}
.y6d{bottom:166.451333pt;}
.y4{bottom:166.845733pt;}
.yc8{bottom:169.581067pt;}
.y115{bottom:170.559467pt;}
.y11a{bottom:170.725067pt;}
.yf5{bottom:174.739067pt;}
.y13f{bottom:175.322667pt;}
.y34{bottom:175.616667pt;}
.yef{bottom:178.080320pt;}
.y141{bottom:180.074667pt;}
.y187{bottom:180.359200pt;}
.y29{bottom:181.105067pt;}
.y1b{bottom:181.151440pt;}
.yb4{bottom:181.493067pt;}
.y72{bottom:182.849493pt;}
.y15a{bottom:184.066187pt;}
.y16f{bottom:185.718400pt;}
.y9{bottom:186.497520pt;}
.y6c{bottom:195.251333pt;}
.y87{bottom:197.283067pt;}
.yc7{bottom:198.381067pt;}
.yb8{bottom:200.251467pt;}
.y15d{bottom:200.722027pt;}
.y33{bottom:201.536667pt;}
.yf4{bottom:203.539067pt;}
.y159{bottom:206.474027pt;}
.y8{bottom:207.804400pt;}
.y130{bottom:209.365333pt;}
.yd7{bottom:210.610080pt;}
.y114{bottom:211.203493pt;}
.y4f{bottom:214.609200pt;}
.y104{bottom:216.043840pt;}
.y1a{bottom:217.476400pt;}
.yb3{bottom:218.293067pt;}
.y18b{bottom:221.926133pt;}
.y18e{bottom:223.392800pt;}
.y6b{bottom:224.051333pt;}
.y86{bottom:226.083067pt;}
.y15c{bottom:226.321867pt;}
.ycb{bottom:227.181067pt;}
.y158{bottom:228.881867pt;}
.y7{bottom:229.111200pt;}
.yee{bottom:229.280000pt;}
.y103{bottom:235.083200pt;}
.y12f{bottom:238.165333pt;}
.y113{bottom:238.399333pt;}
.y11{bottom:241.402000pt;}
.y97{bottom:242.218133pt;}
.ya8{bottom:245.737600pt;}
.ydc{bottom:245.769333pt;}
.yd6{bottom:245.962400pt;}
.ye0{bottom:247.302533pt;}
.y18a{bottom:250.726133pt;}
.y39{bottom:253.976667pt;}
.yed{bottom:255.520000pt;}
.yc6{bottom:255.981067pt;}
.yb2{bottom:257.078800pt;}
.y12e{bottom:266.965333pt;}
.y102{bottom:267.563973pt;}
.y22{bottom:268.039733pt;}
.y10{bottom:270.202800pt;}
.y85{bottom:270.883067pt;}
.y96{bottom:271.018133pt;}
.ya7{bottom:274.537600pt;}
.y4e{bottom:276.049200pt;}
.ydf{bottom:276.102533pt;}
.y124{bottom:276.213467pt;}
.y189{bottom:279.526133pt;}
.y38{bottom:279.576507pt;}
.ya4{bottom:280.645600pt;}
.yec{bottom:284.320000pt;}
.yc5{bottom:284.781067pt;}
.y101{bottom:286.603333pt;}
.y21{bottom:289.639733pt;}
.y19{bottom:290.756533pt;}
.yd5{bottom:294.770080pt;}
.yf{bottom:299.003600pt;}
.y95{bottom:299.818133pt;}
.ya6{bottom:302.999867pt;}
.y165{bottom:304.837333pt;}
.ya1{bottom:307.489067pt;}
.ya3{bottom:309.445600pt;}
.y5b{bottom:311.646000pt;}
.y37{bottom:313.177627pt;}
.yca{bottom:313.581067pt;}
.y84{bottom:315.683067pt;}
.y12d{bottom:317.544267pt;}
.y112{bottom:319.363493pt;}
.y186{bottom:320.206533pt;}
.y71{bottom:323.805173pt;}
.y6a{bottom:324.946400pt;}
.y77{bottom:325.270000pt;}
.y36{bottom:325.587733pt;}
.y18c{bottom:326.110133pt;}
.ye{bottom:327.804400pt;}
.y94{bottom:328.618133pt;}
.y13c{bottom:329.303333pt;}
.y13e{bottom:329.738667pt;}
.yd4{bottom:330.122400pt;}
.yde{bottom:330.129333pt;}
.ya5{bottom:331.799867pt;}
.y164{bottom:333.637333pt;}
.ya0{bottom:336.289067pt;}
.y4d{bottom:337.329200pt;}
.ya2{bottom:338.245600pt;}
.yc4{bottom:342.381067pt;}
.y35{bottom:342.867733pt;}
.y69{bottom:344.146400pt;}
.y83{bottom:344.483067pt;}
.y12c{bottom:346.344267pt;}
.y111{bottom:346.567653pt;}
.y3b{bottom:347.012827pt;}
.y185{bottom:349.006533pt;}
.y18{bottom:353.772053pt;}
.yd{bottom:356.605200pt;}
.ydd{bottom:358.929333pt;}
.y68{bottom:363.346400pt;}
.y20{bottom:363.823333pt;}
.y143{bottom:364.780000pt;}
.y76{bottom:368.470000pt;}
.yc3{bottom:371.181067pt;}
.y13d{bottom:372.938667pt;}
.y14d{bottom:373.415440pt;}
.y110{bottom:373.763493pt;}
.y12b{bottom:375.144267pt;}
.yd3{bottom:378.777760pt;}
.y75{bottom:378.910000pt;}
.y7d{bottom:380.465733pt;}
.y67{bottom:382.546400pt;}
.y100{bottom:383.723840pt;}
.yc{bottom:385.406000pt;}
.y82{bottom:389.283067pt;}
.y4c{bottom:398.617547pt;}
.yc2{bottom:399.981067pt;}
.y10f{bottom:400.959333pt;}
.y14c{bottom:402.219600pt;}
.yff{bottom:402.763200pt;}
.y12a{bottom:403.944267pt;}
.y184{bottom:406.606533pt;}
.y91{bottom:406.905067pt;}
.y13b{bottom:410.423333pt;}
.yd2{bottom:414.130080pt;}
.y17{bottom:417.130933pt;}
.y163{bottom:420.037333pt;}
.y1f{bottom:421.423333pt;}
.y74{bottom:422.110000pt;}
.y81{bottom:426.083067pt;}
.ye8{bottom:428.682773pt;}
.yc1{bottom:428.781067pt;}
.y3a{bottom:431.685947pt;}
.y129{bottom:432.744267pt;}
.yfe{bottom:435.083200pt;}
.y183{bottom:435.406533pt;}
.y10e{bottom:441.599333pt;}
.y63{bottom:443.639333pt;}
.y14b{bottom:444.459600pt;}
.y162{bottom:448.837333pt;}
.yd1{bottom:449.482400pt;}
.ye7{bottom:454.282613pt;}
.yc0{bottom:457.581067pt;}
.y4b{bottom:460.046827pt;}
.y62{bottom:462.839333pt;}
.yfd{bottom:467.404613pt;}
.y10a{bottom:475.098400pt;}
.y161{bottom:477.637333pt;}
.y70{bottom:478.218933pt;}
.y32{bottom:480.576667pt;}
.y61{bottom:482.039333pt;}
.y10d{bottom:482.083493pt;}
.yfc{bottom:486.443973pt;}
.y14a{bottom:486.539600pt;}
.y128{bottom:486.765467pt;}
.y182{bottom:493.006533pt;}
.y44{bottom:496.674400pt;}
.yd0{bottom:498.130080pt;}
.y47{bottom:498.687200pt;}
.y80{bottom:499.683067pt;}
.y60{bottom:501.239333pt;}
.y109{bottom:503.898400pt;}
.ye6{bottom:505.482293pt;}
.yfb{bottom:505.483333pt;}
.y10c{bottom:509.279333pt;}
.y4a{bottom:514.609067pt;}
.y92{bottom:517.052800pt;}
.y31{bottom:521.376667pt;}
.y181{bottom:521.806533pt;}
.y8f{bottom:526.268400pt;}
.y7f{bottom:528.483067pt;}
.y149{bottom:528.615307pt;}
.y118{bottom:530.580133pt;}
.ye5{bottom:531.082133pt;}
.ycf{bottom:533.482400pt;}
.y3{bottom:535.201013pt;}
.y175{bottom:537.216667pt;}
.y1d{bottom:537.444133pt;}
.yfa{bottom:537.963200pt;}
.y17e{bottom:538.681200pt;}
.y127{bottom:544.365467pt;}
.y178{bottom:547.445467pt;}
.y151{bottom:551.607200pt;}
.y172{bottom:553.161067pt;}
.y8e{bottom:555.068400pt;}
.ye4{bottom:557.322267pt;}
.y148{bottom:557.419467pt;}
.y139{bottom:557.845467pt;}
.y117{bottom:559.380133pt;}
.y11c{bottom:562.004453pt;}
.y30{bottom:562.016667pt;}
.y174{bottom:563.136667pt;}
.y49{bottom:569.329200pt;}
.y126{bottom:573.165467pt;}
.ybf{bottom:577.058400pt;}
.y43{bottom:580.226373pt;}
.y150{bottom:580.407200pt;}
.y180{bottom:580.526533pt;}
.y17d{bottom:581.881200pt;}
.ybc{bottom:583.851467pt;}
.ye3{bottom:586.122267pt;}
.y58{bottom:586.577600pt;}
.y138{bottom:586.645467pt;}
.y152{bottom:588.759200pt;}
.y177{bottom:590.645467pt;}
.y6f{bottom:593.683333pt;}
.y5c{bottom:593.713333pt;}
.y171{bottom:596.361067pt;}
.y147{bottom:599.659600pt;}
.y125{bottom:601.965467pt;}
.y1c{bottom:605.043333pt;}
.ybe{bottom:605.858400pt;}
.y2{bottom:607.106773pt;}
.y13a{bottom:608.425867pt;}
.ybb{bottom:612.651467pt;}
.yf3{bottom:613.056667pt;}
.ydb{bottom:615.837733pt;}
.y28{bottom:616.703920pt;}
.y73{bottom:617.241733pt;}
.y90{bottom:619.190667pt;}
.y42{bottom:620.563333pt;}
.y16d{bottom:620.572773pt;}
.y9f{bottom:624.961067pt;}
.y11b{bottom:625.363333pt;}
.y157{bottom:627.453067pt;}
.y179{bottom:627.831867pt;}
.y17f{bottom:629.020400pt;}
.y173{bottom:631.628267pt;}
.y2f{bottom:632.736800pt;}
.yb0{bottom:632.832400pt;}
.y167{bottom:633.610133pt;}
.y14f{bottom:634.386400pt;}
.yce{bottom:638.089867pt;}
.y188{bottom:639.905333pt;}
.y26{bottom:645.826267pt;}
.y54{bottom:647.318400pt;}
.yf2{bottom:647.616667pt;}
.y7e{bottom:647.887200pt;}
.yf9{bottom:649.204667pt;}
.y5f{bottom:650.357733pt;}
.ye9{bottom:655.379200pt;}
.y27{bottom:658.482800pt;}
.y144{bottom:658.621600pt;}
.y11d{bottom:659.803600pt;}
.y16c{bottom:660.909733pt;}
.y2e{bottom:673.056667pt;}
.y99{bottom:675.472400pt;}
.y1{bottom:679.012533pt;}
.y14{bottom:890.221067pt;}
.y13{bottom:929.803733pt;}
.y12{bottom:974.186667pt;}
.h34{height:26.915000pt;}
.h17{height:29.773125pt;}
.h26{height:32.201875pt;}
.h40{height:35.404688pt;}
.h11{height:36.046875pt;}
.h25{height:36.093750pt;}
.h41{height:36.364375pt;}
.h2a{height:38.672812pt;}
.h22{height:39.891875pt;}
.h4d{height:39.917368pt;}
.h16{height:39.943750pt;}
.h24{height:41.625000pt;}
.h32{height:42.320000pt;}
.h2b{height:42.615313pt;}
.h27{height:42.866250pt;}
.h38{height:44.217500pt;}
.h31{height:44.275000pt;}
.h49{height:45.182500pt;}
.h4b{height:46.065000pt;}
.h2d{height:46.593750pt;}
.h5{height:47.301274pt;}
.h19{height:48.062500pt;}
.h14{height:48.125000pt;}
.h4{height:54.405629pt;}
.h44{height:54.514687pt;}
.h4c{height:56.233125pt;}
.h43{height:56.306250pt;}
.h20{height:59.434375pt;}
.h3e{height:60.571875pt;}
.h1f{height:61.969687pt;}
.hb{height:63.673750pt;}
.he{height:63.923125pt;}
.h39{height:64.006250pt;}
.h6{height:64.609795pt;}
.h4e{height:65.718750pt;}
.h3f{height:66.163125pt;}
.h2f{height:67.312500pt;}
.h3c{height:67.331250pt;}
.h36{height:68.248750pt;}
.h3b{height:68.287188pt;}
.h35{height:68.337500pt;}
.h30{height:68.663433pt;}
.h12{height:69.890625pt;}
.h3{height:70.418772pt;}
.h15{height:72.093750pt;}
.h1d{height:72.187500pt;}
.h46{height:73.125997pt;}
.h21{height:73.815000pt;}
.h4f{height:74.977500pt;}
.h3a{height:75.843750pt;}
.h47{height:75.937500pt;}
.h33{height:76.863033pt;}
.h45{height:76.889167pt;}
.h37{height:78.810000pt;}
.h13{height:80.264375pt;}
.h2{height:81.186772pt;}
.h1c{height:83.250000pt;}
.h48{height:87.379833pt;}
.h1b{height:87.690000pt;}
.h9{height:88.797235pt;}
.h7{height:92.386569pt;}
.h23{height:92.685000pt;}
.hd{height:96.125000pt;}
.h3d{height:96.187500pt;}
.h50{height:97.250000pt;}
.h8{height:98.529994pt;}
.h2c{height:100.035000pt;}
.hf{height:111.000000pt;}
.h28{height:111.985625pt;}
.h1a{height:112.058437pt;}
.h1e{height:114.728621pt;}
.h18{height:116.386875pt;}
.h10{height:116.936875pt;}
.h29{height:128.326875pt;}
.h2e{height:128.410312pt;}
.h4a{height:160.048125pt;}
.h42{height:160.152187pt;}
.hc{height:176.504062pt;}
.h1{height:210.923563pt;}
.ha{height:720.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.172800pt;}
.x90{left:49.986667pt;}
.x2{left:50.913733pt;}
.x4{left:52.042933pt;}
.x48{left:57.600000pt;}
.xe{left:58.744800pt;}
.x78{left:60.878400pt;}
.x86{left:63.885733pt;}
.x60{left:66.573067pt;}
.x4f{left:68.199467pt;}
.x65{left:70.301733pt;}
.xf{left:71.504400pt;}
.x7d{left:72.747280pt;}
.x26{left:76.233067pt;}
.xc{left:77.354400pt;}
.x4b{left:78.596667pt;}
.x55{left:80.856133pt;}
.x10{left:82.372400pt;}
.x42{left:84.932267pt;}
.x87{left:86.171600pt;}
.x2a{left:87.987333pt;}
.x20{left:88.919600pt;}
.x61{left:90.573067pt;}
.x3c{left:93.152000pt;}
.x66{left:94.301733pt;}
.x13{left:97.600000pt;}
.x16{left:99.577600pt;}
.x12{left:106.656533pt;}
.x75{left:108.103067pt;}
.x88{left:110.171600pt;}
.x49{left:113.696267pt;}
.x5a{left:120.636000pt;}
.x17{left:123.577600pt;}
.x3d{left:141.152000pt;}
.x30{left:145.598720pt;}
.x15{left:148.636267pt;}
.x44{left:151.036800pt;}
.x9{left:165.395200pt;}
.x3e{left:171.232000pt;}
.x14{left:181.787867pt;}
.x27{left:225.259867pt;}
.x83{left:228.880800pt;}
.x18{left:249.304667pt;}
.x7{left:265.051227pt;}
.x1d{left:284.777867pt;}
.x5b{left:291.011600pt;}
.x6c{left:292.362267pt;}
.x31{left:301.967600pt;}
.x2c{left:306.106400pt;}
.x6d{left:366.313333pt;}
.x5{left:367.712400pt;}
.x6{left:376.736667pt;}
.x4c{left:424.127067pt;}
.x11{left:425.713733pt;}
.x50{left:429.627333pt;}
.x29{left:433.171600pt;}
.x28{left:479.017333pt;}
.x79{left:481.820533pt;}
.xa{left:483.786560pt;}
.xd{left:486.984800pt;}
.x7a{left:493.725600pt;}
.x6e{left:497.953333pt;}
.x8{left:505.875200pt;}
.x1c{left:519.278720pt;}
.x1f{left:531.871893pt;}
.xb{left:551.062933pt;}
.x3f{left:556.696933pt;}
.x5c{left:571.443467pt;}
.x36{left:583.539333pt;}
.x22{left:586.416667pt;}
.x3{left:588.939600pt;}
.x4a{left:597.621867pt;}
.x37{left:601.131333pt;}
.x45{left:606.177067pt;}
.x69{left:610.254267pt;}
.x34{left:614.787333pt;}
.x35{left:624.555333pt;}
.x46{left:636.257067pt;}
.x8c{left:646.983867pt;}
.x89{left:649.600000pt;}
.x1b{left:650.640160pt;}
.x21{left:670.167600pt;}
.x58{left:671.887333pt;}
.x8f{left:673.129867pt;}
.x54{left:690.968800pt;}
.x47{left:704.732533pt;}
.x1e{left:710.581333pt;}
.x8d{left:728.976533pt;}
.x81{left:732.301467pt;}
.x4d{left:737.690267pt;}
.x7e{left:748.643600pt;}
.x82{left:762.357467pt;}
.x43{left:770.987200pt;}
.x7f{left:778.723600pt;}
.x23{left:789.354267pt;}
.x51{left:796.430267pt;}
.x2b{left:801.077600pt;}
.x6f{left:803.902533pt;}
.x80{left:806.813333pt;}
.x70{left:809.494533pt;}
.x32{left:812.595333pt;}
.x33{left:818.187333pt;}
.x5d{left:822.795467pt;}
.x25{left:825.211067pt;}
.x71{left:829.414533pt;}
.x5e{left:830.336400pt;}
.x38{left:833.091333pt;}
.x64{left:836.282000pt;}
.x24{left:837.354267pt;}
.x72{left:839.182533pt;}
.x1a{left:852.374560pt;}
.x2f{left:870.315600pt;}
.x5f{left:877.069867pt;}
.x67{left:878.894000pt;}
.x84{left:886.294400pt;}
.x7b{left:913.919867pt;}
.x2e{left:923.761200pt;}
.x7c{left:926.016400pt;}
.x19{left:937.324320pt;}
.x62{left:967.660533pt;}
.x2d{left:979.137467pt;}
.x8e{left:991.480000pt;}
.x6a{left:1002.179867pt;}
.x73{left:1005.190533pt;}
.x4e{left:1009.792667pt;}
.x74{left:1022.782533pt;}
.x52{left:1028.284667pt;}
.x8a{left:1029.403067pt;}
.x3b{left:1031.687467pt;}
.x53{left:1038.052667pt;}
.x8b{left:1046.995067pt;}
.x6b{left:1057.401467pt;}
.x39{left:1064.288533pt;}
.x56{left:1066.492533pt;}
.x63{left:1073.352000pt;}
.x3a{left:1080.608533pt;}
.x76{left:1082.667733pt;}
.x57{left:1084.084533pt;}
.x77{left:1088.259733pt;}
.x85{left:1101.280933pt;}
.x40{left:1106.615600pt;}
.x41{left:1122.935600pt;}
.x59{left:1160.923467pt;}
.x68{left:1167.094533pt;}
}




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