
    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_2edbcdea68bdb09ce1cc75fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.175000;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_7ce4a510d9610ebf78b3b895.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_495c3a72e6e99db7ac0e0262.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_47689ff136bf54f1297adb3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_9fcd8177ffee064ecbb4e84e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_207f66873442cb3e3614110d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c8c06bd42b4f52400a821af0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_e6f4b2805bdc0562568003c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998047;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_6d8c5e70458503ba75e75ae4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200195;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_e4a76ff6f99f1e9757e1e2a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_05f7885b98d2794fc27252d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.054688;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_af3f6c323332cda72d15166d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945312;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_a814deeaf44a6e09784a7323.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.741000;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_97c5213af006f08d6c4eab27.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998047;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_3a15b3b89d351ae0b54f0975.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_46026d3e60a9a581ae181f59.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_b58823ffde8f932dabe48405.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.975586;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_9cf8205b3736a792a8f88769.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.054688;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_af3f6c323332cda72d15166d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.945312;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_0b1ec4b08f888bfa39320e59.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.998047;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_09da79abb254c708ec9e765c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.200195;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_b490a01dc92dc9d017a3c0d4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.211426;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-22.322556px;}
.v4{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.330000px;}
.v3{vertical-align:12.552000px;}
.v8{vertical-align:15.186000px;}
.va{vertical-align:18.142920px;}
.v6{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.v9{vertical-align:23.910000px;}
.v7{vertical-align:47.820000px;}
.vb{vertical-align:50.904000px;}
.vc{vertical-align:101.808000px;}
.ls8e{letter-spacing:-2.048890px;}
.ls3e{letter-spacing:-0.300600px;}
.ls48{letter-spacing:-0.288576px;}
.lsae{letter-spacing:-0.249480px;}
.ls8f{letter-spacing:-0.230861px;}
.ls36{letter-spacing:-0.222444px;}
.ls95{letter-spacing:-0.213840px;}
.lsb0{letter-spacing:-0.211680px;}
.ls85{letter-spacing:-0.173146px;}
.ls3d{letter-spacing:-0.168336px;}
.ls92{letter-spacing:-0.165931px;}
.ls40{letter-spacing:-0.156312px;}
.ls41{letter-spacing:-0.150300px;}
.ls45{letter-spacing:-0.144288px;}
.ls84{letter-spacing:-0.137074px;}
.ls90{letter-spacing:-0.129859px;}
.lsa7{letter-spacing:-0.127361px;}
.lsa9{letter-spacing:-0.120960px;}
.ls47{letter-spacing:-0.120240px;}
.ls44{letter-spacing:-0.114228px;}
.ls96{letter-spacing:-0.110160px;}
.ls81{letter-spacing:-0.109166px;}
.ls91{letter-spacing:-0.101002px;}
.ls8a{letter-spacing:-0.090720px;}
.ls33{letter-spacing:-0.086184px;}
.ls42{letter-spacing:-0.072144px;}
.lsab{letter-spacing:-0.060480px;}
.ls3f{letter-spacing:-0.054108px;}
.lsaa{letter-spacing:-0.052920px;}
.ls8d{letter-spacing:-0.050501px;}
.lsac{letter-spacing:-0.045360px;}
.ls35{letter-spacing:-0.043200px;}
.ls3a{letter-spacing:-0.036072px;}
.lsad{letter-spacing:-0.030240px;}
.ls38{letter-spacing:-0.030060px;}
.ls8c{letter-spacing:-0.028858px;}
.ls39{letter-spacing:-0.024048px;}
.lsb1{letter-spacing:-0.022680px;}
.lsa8{letter-spacing:-0.020110px;}
.ls93{letter-spacing:-0.019440px;}
.ls82{letter-spacing:-0.017237px;}
.lsb2{letter-spacing:-0.015120px;}
.ls8b{letter-spacing:-0.014429px;}
.ls88{letter-spacing:-0.007214px;}
.ls83{letter-spacing:-0.006480px;}
.ls43{letter-spacing:-0.006012px;}
.ls34{letter-spacing:-0.004788px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.002725px;}
.lsb8{letter-spacing:0.003717px;}
.ls6{letter-spacing:0.004200px;}
.ls18{letter-spacing:0.005400px;}
.ls2d{letter-spacing:0.006012px;}
.ls94{letter-spacing:0.006480px;}
.ls6f{letter-spacing:0.007214px;}
.lsa4{letter-spacing:0.007560px;}
.ls28{letter-spacing:0.012024px;}
.ls70{letter-spacing:0.014429px;}
.lsa0{letter-spacing:0.015120px;}
.ls67{letter-spacing:0.021643px;}
.ls9e{letter-spacing:0.022680px;}
.ls1b{letter-spacing:0.024048px;}
.ls6e{letter-spacing:0.025920px;}
.ls74{letter-spacing:0.028858px;}
.ls21{letter-spacing:0.030060px;}
.ls9d{letter-spacing:0.030240px;}
.ls17{letter-spacing:0.032400px;}
.ls2b{letter-spacing:0.036072px;}
.ls9f{letter-spacing:0.037800px;}
.ls78{letter-spacing:0.038880px;}
.ls2e{letter-spacing:0.042084px;}
.ls76{letter-spacing:0.045360px;}
.ls2c{letter-spacing:0.048096px;}
.ls87{letter-spacing:0.050501px;}
.ls6d{letter-spacing:0.051840px;}
.ls9b{letter-spacing:0.052920px;}
.ls1f{letter-spacing:0.054108px;}
.ls19{letter-spacing:0.059400px;}
.ls1e{letter-spacing:0.060120px;}
.ls9a{letter-spacing:0.060480px;}
.ls77{letter-spacing:0.064800px;}
.ls71{letter-spacing:0.064930px;}
.ls7f{letter-spacing:0.064944px;}
.ls7a{letter-spacing:0.065664px;}
.ls1c{letter-spacing:0.066132px;}
.ls6c{letter-spacing:0.071280px;}
.ls23{letter-spacing:0.078156px;}
.ls9c{letter-spacing:0.083160px;}
.ls49{letter-spacing:0.084168px;}
.ls3b{letter-spacing:0.090180px;}
.ls89{letter-spacing:0.093787px;}
.ls14{letter-spacing:0.095760px;}
.lsa3{letter-spacing:0.098280px;}
.ls1d{letter-spacing:0.102204px;}
.ls64{letter-spacing:0.103421px;}
.ls79{letter-spacing:0.103680px;}
.lsa1{letter-spacing:0.105840px;}
.ls3c{letter-spacing:0.108216px;}
.lsa2{letter-spacing:0.113400px;}
.ls2a{letter-spacing:0.114228px;}
.ls37{letter-spacing:0.120240px;}
.ls98{letter-spacing:0.120658px;}
.ls66{letter-spacing:0.137074px;}
.ls46{letter-spacing:0.144288px;}
.ls97{letter-spacing:0.149040px;}
.ls2f{letter-spacing:0.150300px;}
.ls86{letter-spacing:0.158717px;}
.ls72{letter-spacing:0.165931px;}
.lsaf{letter-spacing:0.173880px;}
.ls16{letter-spacing:0.177156px;}
.ls15{letter-spacing:0.191520px;}
.ls24{letter-spacing:0.192384px;}
.ls65{letter-spacing:0.201096px;}
.ls6b{letter-spacing:0.213840px;}
.ls68{letter-spacing:0.216432px;}
.ls80{letter-spacing:0.218333px;}
.ls99{letter-spacing:0.234612px;}
.lsa6{letter-spacing:0.254722px;}
.lsa5{letter-spacing:0.648088px;}
.lsf{letter-spacing:0.717483px;}
.ls31{letter-spacing:1.178352px;}
.ls32{letter-spacing:1.539072px;}
.ls26{letter-spacing:2.615220px;}
.ls27{letter-spacing:2.975940px;}
.ls7{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls73{letter-spacing:3.563914px;}
.ls30{letter-spacing:4.058100px;}
.ls25{letter-spacing:5.855688px;}
.ls75{letter-spacing:6.586747px;}
.ls0{letter-spacing:10.461300px;}
.ls5c{letter-spacing:10.461403px;}
.ls29{letter-spacing:10.539036px;}
.lsd{letter-spacing:11.954850px;}
.lsb7{letter-spacing:12.870808px;}
.lsba{letter-spacing:13.341652px;}
.lsb9{letter-spacing:13.362165px;}
.lsb4{letter-spacing:13.448400px;}
.lsb{letter-spacing:13.448729px;}
.ls4a{letter-spacing:13.450090px;}
.lsb5{letter-spacing:13.454400px;}
.ls22{letter-spacing:13.779504px;}
.ls56{letter-spacing:14.094088px;}
.ls55{letter-spacing:14.100088px;}
.ls10{letter-spacing:14.687839px;}
.ls59{letter-spacing:14.711407px;}
.ls58{letter-spacing:14.860575px;}
.ls4c{letter-spacing:14.865957px;}
.ls11{letter-spacing:14.878425px;}
.ls4b{letter-spacing:14.883932px;}
.ls12{letter-spacing:14.884407px;}
.ls4d{letter-spacing:14.890641px;}
.ls54{letter-spacing:14.938766px;}
.ls2{letter-spacing:14.944200px;}
.lsb3{letter-spacing:14.944766px;}
.ls3{letter-spacing:14.945108px;}
.ls57{letter-spacing:14.983200px;}
.ls51{letter-spacing:14.991297px;}
.ls5a{letter-spacing:15.006215px;}
.ls13{letter-spacing:15.183002px;}
.ls50{letter-spacing:15.271895px;}
.lsa{letter-spacing:15.611619px;}
.ls5b{letter-spacing:15.641237px;}
.ls52{letter-spacing:16.029472px;}
.ls4e{letter-spacing:16.370649px;}
.ls53{letter-spacing:16.664766px;}
.lsb6{letter-spacing:17.085694px;}
.ls6a{letter-spacing:17.819568px;}
.ls20{letter-spacing:18.102132px;}
.lsc{letter-spacing:18.123384px;}
.ls4f{letter-spacing:18.847119px;}
.ls63{letter-spacing:19.603200px;}
.ls8{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls7d{letter-spacing:150.117840px;}
.ls5f{letter-spacing:154.508383px;}
.ls5e{letter-spacing:165.308383px;}
.ls5d{letter-spacing:165.314383px;}
.ls7e{letter-spacing:169.560000px;}
.ls62{letter-spacing:170.764348px;}
.ls7c{letter-spacing:170.856000px;}
.ls7b{letter-spacing:173.016000px;}
.ls60{letter-spacing:181.222348px;}
.ls61{letter-spacing:182.608348px;}
.ls69{letter-spacing:657.614203px;}
.ls1a{letter-spacing:857.593764px;}
.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;}
}
.ws5d{word-spacing:-60.120000px;}
.wseb{word-spacing:-18.900000px;}
.wse9{word-spacing:-18.847080px;}
.wse7{word-spacing:-17.012722px;}
.wse8{word-spacing:-16.758000px;}
.wsbf{word-spacing:-16.349040px;}
.wsbe{word-spacing:-16.225920px;}
.wsbd{word-spacing:-16.200000px;}
.ws5c{word-spacing:-15.030000px;}
.ws13{word-spacing:-14.943900px;}
.wsb9{word-spacing:-14.582333px;}
.wsba{word-spacing:-14.364000px;}
.ws12{word-spacing:-14.355754px;}
.ws11c{word-spacing:-13.449600px;}
.ws5a{word-spacing:-12.161520px;}
.ws5b{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.955150px;}
.wsea{word-spacing:-11.592000px;}
.ws10{word-spacing:-11.357400px;}
.wsbb{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.460700px;}
.wsbc{word-spacing:-9.936000px;}
.ws89{word-spacing:-3.607200px;}
.ws110{word-spacing:-3.287658px;}
.ws8b{word-spacing:-3.186360px;}
.ws87{word-spacing:-3.168324px;}
.ws7c{word-spacing:-3.156300px;}
.ws88{word-spacing:-3.150288px;}
.ws8a{word-spacing:-3.120228px;}
.wsde{word-spacing:-2.979547px;}
.ws7d{word-spacing:-2.975940px;}
.wsd1{word-spacing:-2.921832px;}
.wsdd{word-spacing:-2.683757px;}
.ws8d{word-spacing:-2.567124px;}
.ws8c{word-spacing:-2.488968px;}
.wsfd{word-spacing:-2.271473px;}
.wsfa{word-spacing:-2.252880px;}
.ws27{word-spacing:-2.211697px;}
.ws34{word-spacing:-2.151922px;}
.ws42{word-spacing:-1.853044px;}
.wsfe{word-spacing:-1.793268px;}
.wsf9{word-spacing:-1.784160px;}
.ws2a{word-spacing:-1.733492px;}
.ws11f{word-spacing:-1.667750px;}
.ws113{word-spacing:-1.554166px;}
.ws57{word-spacing:-1.494390px;}
.ws120{word-spacing:-1.452557px;}
.ws85{word-spacing:-1.394784px;}
.wsff{word-spacing:-1.374839px;}
.ws86{word-spacing:-1.358712px;}
.ws9d{word-spacing:-1.315063px;}
.ws9c{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws105{word-spacing:-1.135736px;}
.ws7{word-spacing:-1.046070px;}
.ws4a{word-spacing:-1.016185px;}
.ws106{word-spacing:-0.956410px;}
.ws20{word-spacing:-0.914573px;}
.ws3a{word-spacing:-0.896634px;}
.ws132{word-spacing:-0.806976px;}
.ws10f{word-spacing:-0.597756px;}
.ws134{word-spacing:-0.591782px;}
.ws115{word-spacing:-0.478205px;}
.ws56{word-spacing:-0.418429px;}
.ws65{word-spacing:-0.384768px;}
.ws18{word-spacing:-0.376589px;}
.ws64{word-spacing:-0.366732px;}
.ws1a{word-spacing:-0.322790px;}
.ws7a{word-spacing:-0.318636px;}
.ws59{word-spacing:-0.298878px;}
.ws6c{word-spacing:-0.288576px;}
.wscd{word-spacing:-0.285120px;}
.ws139{word-spacing:-0.268992px;}
.ws93{word-spacing:-0.264528px;}
.ws7b{word-spacing:-0.258516px;}
.ws28{word-spacing:-0.239102px;}
.wse1{word-spacing:-0.223646px;}
.ws129{word-spacing:-0.215194px;}
.wsc6{word-spacing:-0.187574px;}
.ws40{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.wsed{word-spacing:-0.107251px;}
.wsc0{word-spacing:-0.091930px;}
.ws5e{word-spacing:-0.081396px;}
.ws11{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.053798px;}
.wsc8{word-spacing:-0.050501px;}
.ws32{word-spacing:-0.047821px;}
.ws63{word-spacing:-0.042084px;}
.wsc4{word-spacing:-0.028858px;}
.ws14{word-spacing:-0.006000px;}
.ws1{word-spacing:0.000000px;}
.ws94{word-spacing:0.012024px;}
.wsca{word-spacing:0.014429px;}
.ws70{word-spacing:0.042084px;}
.ws23{word-spacing:0.053798px;}
.ws58{word-spacing:0.059776px;}
.ws84{word-spacing:0.060120px;}
.ws62{word-spacing:0.072144px;}
.ws16{word-spacing:0.095641px;}
.ws12e{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws67{word-spacing:0.120240px;}
.ws66{word-spacing:0.126252px;}
.wsd0{word-spacing:0.142560px;}
.wsf8{word-spacing:0.143640px;}
.ws60{word-spacing:0.151200px;}
.wsec{word-spacing:0.161395px;}
.wsce{word-spacing:0.162000px;}
.wse6{word-spacing:0.168480px;}
.ws61{word-spacing:0.178200px;}
.ws35{word-spacing:0.179327px;}
.wscc{word-spacing:0.181440px;}
.wscf{word-spacing:0.187920px;}
.wsef{word-spacing:0.189000px;}
.wsf7{word-spacing:0.204120px;}
.wsf6{word-spacing:0.211680px;}
.wsc3{word-spacing:0.213840px;}
.ws11b{word-spacing:0.215194px;}
.wsf5{word-spacing:0.219240px;}
.wsc2{word-spacing:0.220320px;}
.wsfb{word-spacing:0.226800px;}
.wse5{word-spacing:0.233280px;}
.ws2c{word-spacing:0.239102px;}
.wsc9{word-spacing:0.252504px;}
.ws6d{word-spacing:0.264528px;}
.ws140{word-spacing:0.268992px;}
.wse2{word-spacing:0.274147px;}
.wsf4{word-spacing:0.279720px;}
.wsc7{word-spacing:0.281362px;}
.wsf2{word-spacing:0.294840px;}
.ws96{word-spacing:0.298878px;}
.wsf1{word-spacing:0.302400px;}
.wscb{word-spacing:0.304560px;}
.wsf3{word-spacing:0.309960px;}
.ws141{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.wsf0{word-spacing:0.370440px;}
.ws100{word-spacing:0.418429px;}
.ws111{word-spacing:0.478205px;}
.ws10c{word-spacing:0.537980px;}
.ws137{word-spacing:0.537984px;}
.ws12c{word-spacing:0.645581px;}
.ws9f{word-spacing:0.657532px;}
.ws98{word-spacing:0.666614px;}
.ws9a{word-spacing:0.667680px;}
.ws99{word-spacing:0.673680px;}
.ws9e{word-spacing:0.717307px;}
.ws124{word-spacing:0.860774px;}
.ws6{word-spacing:0.962384px;}
.ws39{word-spacing:1.016185px;}
.ws91{word-spacing:1.028052px;}
.ws4e{word-spacing:1.075961px;}
.ws3d{word-spacing:1.195512px;}
.ws41{word-spacing:1.374839px;}
.ws36{word-spacing:1.434614px;}
.ws108{word-spacing:1.554166px;}
.ws90{word-spacing:1.563120px;}
.ws44{word-spacing:1.613941px;}
.ws52{word-spacing:1.673717px;}
.ws97{word-spacing:1.729917px;}
.ws49{word-spacing:1.733492px;}
.ws3b{word-spacing:1.793268px;}
.ws92{word-spacing:1.827648px;}
.ws1b{word-spacing:1.829146px;}
.ws38{word-spacing:1.912819px;}
.ws55{word-spacing:2.032370px;}
.ws122{word-spacing:2.044339px;}
.ws119{word-spacing:2.092146px;}
.ws21{word-spacing:2.151936px;}
.ws3e{word-spacing:2.211697px;}
.ws4d{word-spacing:2.271473px;}
.ws3c{word-spacing:2.331248px;}
.ws2f{word-spacing:2.391024px;}
.ws29{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws145{word-spacing:2.528525px;}
.ws78{word-spacing:2.555100px;}
.ws48{word-spacing:2.570351px;}
.ws10b{word-spacing:2.630126px;}
.ws10a{word-spacing:2.689902px;}
.ws138{word-spacing:2.689920px;}
.ws1e{word-spacing:2.743718px;}
.ws12a{word-spacing:2.851315px;}
.ws37{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws114{word-spacing:2.929004px;}
.ws79{word-spacing:3.048084px;}
.ws10d{word-spacing:3.108331px;}
.wsd5{word-spacing:3.109406px;}
.wsd4{word-spacing:3.131050px;}
.ws127{word-spacing:3.214330px;}
.ws102{word-spacing:3.227882px;}
.ws13e{word-spacing:3.227904px;}
.wsa1{word-spacing:3.335501px;}
.ws11a{word-spacing:3.407209px;}
.ws112{word-spacing:3.466985px;}
.ws19{word-spacing:3.496896px;}
.ws25{word-spacing:3.586536px;}
.ws24{word-spacing:3.604493px;}
.wsa0{word-spacing:3.658291px;}
.ws116{word-spacing:3.765863px;}
.ws8f{word-spacing:3.817620px;}
.ws11e{word-spacing:3.819686px;}
.ws95{word-spacing:3.885414px;}
.wsdb{word-spacing:3.931848px;}
.ws8e{word-spacing:3.991968px;}
.ws10e{word-spacing:4.064741px;}
.ws104{word-spacing:4.184292px;}
.wsb8{word-spacing:4.351675px;}
.ws51{word-spacing:4.363619px;}
.ws109{word-spacing:4.542946px;}
.ws22{word-spacing:4.680461px;}
.ws118{word-spacing:4.722272px;}
.wsd{word-spacing:4.770079px;}
.ws54{word-spacing:4.782048px;}
.wse{word-spacing:4.853765px;}
.ws135{word-spacing:5.057050px;}
.ws53{word-spacing:5.260253px;}
.ws4b{word-spacing:5.379804px;}
.wsfc{word-spacing:5.559131px;}
.ws4c{word-spacing:5.618906px;}
.ws101{word-spacing:5.738458px;}
.ws2e{word-spacing:5.798233px;}
.ws9b{word-spacing:5.858009px;}
.ws77{word-spacing:6.005988px;}
.wsdf{word-spacing:6.153883px;}
.ws103{word-spacing:6.156887px;}
.ws13c{word-spacing:6.240614px;}
.ws75{word-spacing:6.270516px;}
.ws76{word-spacing:6.372720px;}
.ws144{word-spacing:6.455808px;}
.ws117{word-spacing:6.515540px;}
.ws3f{word-spacing:6.575316px;}
.ws33{word-spacing:6.635092px;}
.wse0{word-spacing:6.716606px;}
.ws45{word-spacing:6.754643px;}
.wsd6{word-spacing:7.034040px;}
.ws4f{word-spacing:7.412174px;}
.ws47{word-spacing:7.770828px;}
.wsb{word-spacing:7.782761px;}
.ws43{word-spacing:8.069706px;}
.ws46{word-spacing:8.308808px;}
.ws7e{word-spacing:9.571104px;}
.ws2{word-spacing:10.414488px;}
.ws80{word-spacing:10.545048px;}
.ws81{word-spacing:10.785528px;}
.ws107{word-spacing:10.819384px;}
.ws7f{word-spacing:10.875708px;}
.ws5f{word-spacing:11.620476px;}
.ws30{word-spacing:11.909076px;}
.ws9{word-spacing:12.176255px;}
.ws133{word-spacing:12.588826px;}
.wsd8{word-spacing:12.654058px;}
.wsd7{word-spacing:12.661272px;}
.ws11d{word-spacing:12.750221px;}
.ws146{word-spacing:13.126810px;}
.ws142{word-spacing:13.288205px;}
.ws123{word-spacing:13.389379px;}
.ws130{word-spacing:13.389984px;}
.ws13a{word-spacing:13.390387px;}
.ws128{word-spacing:13.395379px;}
.ws12f{word-spacing:13.395802px;}
.ws126{word-spacing:13.449600px;}
.ws13f{word-spacing:13.610995px;}
.ws72{word-spacing:13.749444px;}
.wsc1{word-spacing:13.944571px;}
.ws74{word-spacing:14.062068px;}
.ws73{word-spacing:14.116176px;}
.wsdc{word-spacing:14.767877px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.109478px;}
.wsee{word-spacing:16.268666px;}
.ws12b{word-spacing:16.300915px;}
.ws131{word-spacing:16.569907px;}
.ws12d{word-spacing:16.612512px;}
.ws13b{word-spacing:16.615920px;}
.ws136{word-spacing:16.617024px;}
.ws143{word-spacing:16.617706px;}
.ws125{word-spacing:16.618512px;}
.ws121{word-spacing:16.623706px;}
.ws13d{word-spacing:16.731302px;}
.ws83{word-spacing:17.765460px;}
.ws82{word-spacing:17.885700px;}
.ws71{word-spacing:18.036000px;}
.wsd3{word-spacing:19.053230px;}
.wsd2{word-spacing:19.103731px;}
.wsda{word-spacing:19.955030px;}
.wse4{word-spacing:20.023200px;}
.wsd9{word-spacing:20.027174px;}
.wse3{word-spacing:20.042640px;}
.ws50{word-spacing:21.115157px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws15{word-spacing:40.042186px;}
.wsf{word-spacing:46.608830px;}
.wsa8{word-spacing:63.570709px;}
.wsa7{word-spacing:94.031095px;}
.wsab{word-spacing:94.037095px;}
.wsa5{word-spacing:104.501095px;}
.wsaa{word-spacing:114.959095px;}
.wsb5{word-spacing:128.774263px;}
.wsb7{word-spacing:130.653000px;}
.wsad{word-spacing:138.006025px;}
.wsa9{word-spacing:138.648931px;}
.wsb6{word-spacing:141.459000px;}
.wsb2{word-spacing:149.813095px;}
.wsb1{word-spacing:150.857095px;}
.wsa6{word-spacing:152.627095px;}
.wsa3{word-spacing:153.990983px;}
.wsac{word-spacing:161.378142px;}
.wsa4{word-spacing:164.790983px;}
.wsb3{word-spacing:174.362591px;}
.wsb0{word-spacing:191.144516px;}
.wsb4{word-spacing:246.546038px;}
.wsa2{word-spacing:297.286392px;}
.wsaf{word-spacing:551.366263px;}
.wsc5{word-spacing:618.281294px;}
.wsae{word-spacing:629.661487px;}
.ws68{word-spacing:756.057096px;}
.ws69{word-spacing:827.738172px;}
.ws6a{word-spacing:859.307184px;}
.ws6e{word-spacing:896.070564px;}
.ws6b{word-spacing:900.705816px;}
.ws6f{word-spacing:950.166540px;}
._2d{margin-left:-950.815836px;}
._28{margin-left:-901.381831px;}
._2b{margin-left:-896.121331px;}
._27{margin-left:-859.905043px;}
._26{margin-left:-828.243180px;}
._25{margin-left:-756.682344px;}
._63{margin-left:-618.620371px;}
._f{margin-left:-23.549273px;}
._c{margin-left:-21.218498px;}
._2{margin-left:-15.230779px;}
._a{margin-left:-11.943245px;}
._9{margin-left:-7.962163px;}
._d{margin-left:-6.666503px;}
._3{margin-left:-5.397721px;}
._18{margin-left:-4.363619px;}
._0{margin-left:-3.096367px;}
._5{margin-left:-1.506341px;}
._1{width:1.297127px;}
._7{width:2.301354px;}
._b{width:3.697386px;}
._2f{width:6.320077px;}
._92{width:8.617604px;}
._10{width:11.094379px;}
._6{width:12.302129px;}
._12{width:14.256576px;}
._a4{width:15.284694px;}
._4{width:16.318127px;}
._1b{width:17.585977px;}
._14{width:18.937037px;}
._13{width:19.948838px;}
._1a{width:21.728411px;}
._19{width:23.312484px;}
._e{width:24.898432px;}
._15{width:26.420815px;}
._7f{width:27.888840px;}
._a3{width:29.154079px;}
._8{width:30.587087px;}
._1f{width:32.159273px;}
._1d{width:34.741574px;}
._79{width:37.014271px;}
._1c{width:39.822500px;}
._1e{width:40.954448px;}
._7c{width:47.040840px;}
._91{width:49.457520px;}
._7d{width:53.073720px;}
._11{width:56.810873px;}
._88{width:59.204880px;}
._a5{width:61.868160px;}
._7e{width:71.754480px;}
._7b{width:74.042802px;}
._7a{width:75.786480px;}
._4b{width:78.204193px;}
._5f{width:83.579695px;}
._4a{width:88.598419px;}
._60{width:91.259147px;}
._8a{width:93.352687px;}
._5d{width:94.613695px;}
._5a{width:97.796243px;}
._4c{width:99.167436px;}
._93{width:104.760821px;}
._5e{width:107.285695px;}
._4d{width:108.456538px;}
._55{width:109.622201px;}
._94{width:111.106783px;}
._89{width:112.457520px;}
._58{width:114.063473px;}
._8f{width:128.576203px;}
._8d{width:131.235527px;}
._96{width:132.344053px;}
._53{width:133.442624px;}
._52{width:136.240157px;}
._90{width:140.560560px;}
._54{width:143.444534px;}
._5b{width:144.486985px;}
._59{width:146.115058px;}
._51{width:147.151508px;}
._42{width:150.672107px;}
._74{width:153.368640px;}
._5c{width:155.045695px;}
._56{width:157.161557px;}
._8b{width:160.508880px;}
._95{width:164.024280px;}
._8c{width:167.867280px;}
._78{width:171.239040px;}
._87{width:172.554480px;}
._86{width:173.874960px;}
._76{width:175.644720px;}
._97{width:176.707829px;}
._75{width:178.083360px;}
._57{width:180.288244px;}
._49{width:182.279204px;}
._99{width:191.576203px;}
._84{width:192.714480px;}
._83{width:196.050960px;}
._8e{width:207.325440px;}
._80{width:214.903080px;}
._43{width:224.124134px;}
._9a{width:230.988240px;}
._98{width:262.558800px;}
._85{width:268.122960px;}
._82{width:270.400320px;}
._81{width:271.650960px;}
._66{width:320.896512px;}
._3f{width:341.404646px;}
._3e{width:344.686349px;}
._64{width:350.785771px;}
._3c{width:360.401430px;}
._73{width:362.011680px;}
._65{width:372.739190px;}
._3d{width:381.060016px;}
._9d{width:390.199795px;}
._9c{width:403.810790px;}
._67{width:408.264361px;}
._9e{width:417.260390px;}
._a0{width:418.712947px;}
._9b{width:425.975731px;}
._72{width:428.312880px;}
._9f{width:430.709990px;}
._48{width:461.023970px;}
._70{width:464.287680px;}
._46{width:477.761090px;}
._71{width:479.407680px;}
._a2{width:484.562189px;}
._47{width:489.016804px;}
._a1{width:506.888525px;}
._40{width:533.787725px;}
._41{width:547.237325px;}
._50{width:561.833700px;}
._68{width:571.928774px;}
._4f{width:574.504963px;}
._4e{width:584.481678px;}
._69{width:589.640126px;}
._6b{width:604.371931px;}
._6c{width:643.745448px;}
._2c{width:720.778680px;}
._6a{width:738.285624px;}
._2a{width:770.703793px;}
._3a{width:781.583155px;}
._22{width:806.651417px;}
._33{width:812.463437px;}
._24{width:823.812336px;}
._38{width:826.074418px;}
._2e{width:831.042101px;}
._31{width:860.738483px;}
._29{width:872.004528px;}
._32{width:873.847411px;}
._34{width:877.075315px;}
._16{width:881.684767px;}
._35{width:905.588467px;}
._21{width:909.817337px;}
._37{width:917.155123px;}
._39{width:939.051058px;}
._36{width:942.816960px;}
._30{width:950.025946px;}
._23{width:952.216632px;}
._3b{width:986.985446px;}
._44{width:1008.858196px;}
._6d{width:1101.487378px;}
._62{width:1114.127006px;}
._6e{width:1120.426517px;}
._45{width:1181.473280px;}
._6f{width:1361.459747px;}
._20{width:2149.367137px;}
._a6{width:2536.284229px;}
._17{width:2560.194229px;}
._61{width:2578.379598px;}
._77{width:3008.325719px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(62,123,157);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs12{font-size:39.744000px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:43.200000px;}
.fs4{font-size:45.429600px;}
.fs16{font-size:46.368000px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fse{font-size:57.456000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs10{font-size:64.800000px;}
.fs13{font-size:67.032000px;}
.fsf{font-size:72.144000px;}
.fs15{font-size:75.600000px;}
.fs14{font-size:84.168000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:148.440000px;}
.y8b{bottom:-802.795050px;}
.yaf{bottom:-744.644334px;}
.yae{bottom:-725.384892px;}
.yad{bottom:-706.215630px;}
.yac{bottom:-686.956188px;}
.yab{bottom:-667.696746px;}
.yaa{bottom:-648.527484px;}
.ya9{bottom:-629.268042px;}
.y10a{bottom:-629.218260px;}
.ya8{bottom:-610.098780px;}
.ya7{bottom:-590.839338px;}
.ya6{bottom:-571.579896px;}
.y12a{bottom:-555.346260px;}
.ya5{bottom:-552.410634px;}
.ya4{bottom:-533.151192px;}
.y129{bottom:-532.558260px;}
.ya3{bottom:-513.981930px;}
.y128{bottom:-510.742260px;}
.ya2{bottom:-494.722488px;}
.y127{bottom:-488.818260px;}
.ya1{bottom:-475.463046px;}
.ya0{bottom:-456.293784px;}
.y126{bottom:-453.934260px;}
.y9f{bottom:-437.034342px;}
.y9e{bottom:-417.774900px;}
.y125{bottom:-408.790800px;}
.y124{bottom:-387.946260px;}
.y9d{bottom:-378.803997px;}
.y9c{bottom:-357.834141px;}
.y123{bottom:-345.171834px;}
.y9b{bottom:-337.584222px;}
.y122{bottom:-322.168720px;}
.y9a{bottom:-317.334303px;}
.y121{bottom:-299.057389px;}
.y99{bottom:-297.084384px;}
.y98{bottom:-276.924645px;}
.y120{bottom:-275.946059px;}
.y97{bottom:-256.674726px;}
.y11f{bottom:-252.942944px;}
.y96{bottom:-236.424807px;}
.y11e{bottom:-229.831614px;}
.y95{bottom:-216.174888px;}
.y11d{bottom:-206.828500px;}
.y94{bottom:-195.924969px;}
.y11c{bottom:-183.717169px;}
.y93{bottom:-175.675050px;}
.y11b{bottom:-160.605839px;}
.y92{bottom:-155.424906px;}
.y11a{bottom:-137.600921px;}
.y91{bottom:-134.455050px;}
.y119{bottom:-114.489590px;}
.y90{bottom:-114.205050px;}
.y12f{bottom:-109.485600px;}
.y118{bottom:-91.378260px;}
.y8f{bottom:-87.655050px;}
.y8e{bottom:-63.174600px;}
.y117{bottom:-47.314260px;}
.y8d{bottom:-27.895050px;}
.y116{bottom:-20.314260px;}
.y14b{bottom:-18.639600px;}
.y8c{bottom:-5.394933px;}
.y0{bottom:0.000000px;}
.y1c{bottom:14.712816px;}
.y4b{bottom:31.890000px;}
.ye4{bottom:97.348500px;}
.y18b{bottom:103.158000px;}
.y1a{bottom:104.646000px;}
.y4a{bottom:106.252500px;}
.y19d{bottom:113.110500px;}
.ye3{bottom:116.178000px;}
.y18a{bottom:121.987500px;}
.y19{bottom:122.535000px;}
.y49{bottom:125.082000px;}
.y80{bottom:126.022500px;}
.y19c{bottom:130.684500px;}
.ye2{bottom:135.007500px;}
.y12b{bottom:135.510000px;}
.y1d0{bottom:139.248000px;}
.y18{bottom:140.422500px;}
.y189{bottom:140.817000px;}
.y48{bottom:143.911500px;}
.y7f{bottom:144.852000px;}
.y19b{bottom:148.258500px;}
.ye1{bottom:153.837000px;}
.y156{bottom:155.680500px;}
.y1cf{bottom:156.508500px;}
.y107{bottom:157.939500px;}
.y17{bottom:158.310000px;}
.y188{bottom:159.646500px;}
.y47{bottom:162.741000px;}
.y7e{bottom:163.681500px;}
.yb0{bottom:165.472500px;}
.y19a{bottom:165.832500px;}
.ye0{bottom:172.666500px;}
.y1ce{bottom:173.769000px;}
.y16{bottom:176.199000px;}
.y155{bottom:177.513000px;}
.y187{bottom:178.476000px;}
.y46{bottom:181.570500px;}
.y7d{bottom:182.511000px;}
.y88{bottom:187.902000px;}
.y1cd{bottom:191.029500px;}
.ydf{bottom:191.494500px;}
.y154{bottom:193.951500px;}
.y15{bottom:194.086500px;}
.y186{bottom:197.305500px;}
.y45{bottom:200.400000px;}
.y7c{bottom:201.340500px;}
.y1cc{bottom:208.290000px;}
.y153{bottom:210.390000px;}
.y14{bottom:211.974000px;}
.y185{bottom:216.135000px;}
.y44{bottom:219.229500px;}
.y7b{bottom:220.170000px;}
.yde{bottom:222.663000px;}
.y1cb{bottom:225.549000px;}
.y13{bottom:229.863000px;}
.y152{bottom:234.031500px;}
.y184{bottom:234.964500px;}
.y150{bottom:235.630500px;}
.ydd{bottom:236.859000px;}
.y43{bottom:238.059000px;}
.y7a{bottom:238.999500px;}
.ydc{bottom:241.198500px;}
.y1ca{bottom:242.809500px;}
.y14f{bottom:252.069000px;}
.y183{bottom:253.794000px;}
.y42{bottom:256.888500px;}
.y151{bottom:257.671500px;}
.y79{bottom:257.829000px;}
.ydb{bottom:258.735000px;}
.y1c9{bottom:260.070000px;}
.y199{bottom:262.311000px;}
.y182{bottom:272.623500px;}
.yda{bottom:275.173500px;}
.y41{bottom:275.718000px;}
.y78{bottom:276.658500px;}
.y1c8{bottom:277.330500px;}
.y181{bottom:291.453000px;}
.yd9{bottom:291.612000px;}
.y14e{bottom:292.279500px;}
.y40{bottom:294.547500px;}
.y1c7{bottom:294.591000px;}
.y77{bottom:295.488000px;}
.y198{bottom:295.935000px;}
.y12{bottom:300.154500px;}
.y180{bottom:310.282500px;}
.y1c6{bottom:311.851500px;}
.y3f{bottom:313.377000px;}
.y76{bottom:314.317500px;}
.y197{bottom:314.764500px;}
.yd8{bottom:315.252000px;}
.y11{bottom:318.043500px;}
.y14d{bottom:321.973500px;}
.y17f{bottom:329.112000px;}
.y8a{bottom:331.295085px;}
.y3e{bottom:332.206500px;}
.y75{bottom:333.145500px;}
.y196{bottom:333.594000px;}
.y10{bottom:335.931000px;}
.yd7{bottom:338.893500px;}
.y89{bottom:340.924950px;}
.y14c{bottom:341.206500px;}
.y1c5{bottom:346.372500px;}
.y17e{bottom:347.940000px;}
.y3d{bottom:351.036000px;}
.y74{bottom:351.975000px;}
.y195{bottom:352.423500px;}
.yf{bottom:353.818500px;}
.yd6{bottom:355.332000px;}
.y1c3{bottom:363.631500px;}
.y1c4{bottom:363.633000px;}
.y12c{bottom:363.636630px;}
.y17d{bottom:366.769500px;}
.y73{bottom:370.804500px;}
.y194{bottom:371.253000px;}
.yd5{bottom:371.770500px;}
.y3c{bottom:374.349000px;}
.ye{bottom:380.673000px;}
.y1c2{bottom:380.892000px;}
.y17c{bottom:385.599000px;}
.y72{bottom:389.634000px;}
.y193{bottom:390.082500px;}
.yd4{bottom:395.410500px;}
.y1c1{bottom:398.152500px;}
.yd{bottom:398.562000px;}
.y17b{bottom:404.428500px;}
.y71{bottom:408.463500px;}
.y192{bottom:408.912000px;}
.y115{bottom:414.925200px;}
.y1c0{bottom:415.413000px;}
.yc{bottom:416.449500px;}
.y17a{bottom:423.258000px;}
.y70{bottom:427.293000px;}
.y191{bottom:427.741500px;}
.yd3{bottom:430.018500px;}
.y1bf{bottom:432.673500px;}
.y114{bottom:440.305740px;}
.y179{bottom:442.087500px;}
.yb{bottom:444.798000px;}
.y6f{bottom:446.122500px;}
.y190{bottom:446.571000px;}
.y3b{bottom:447.912000px;}
.y1be{bottom:449.934000px;}
.yd2{bottom:458.157000px;}
.y113{bottom:459.097837px;}
.y178{bottom:460.917000px;}
.ya{bottom:462.685500px;}
.y6e{bottom:464.952000px;}
.y18f{bottom:465.400500px;}
.y1bd{bottom:467.194500px;}
.y3a{bottom:467.368500px;}
.yd1{bottom:476.986500px;}
.y177{bottom:479.746500px;}
.y112{bottom:483.397740px;}
.y6d{bottom:483.781500px;}
.y18e{bottom:484.230000px;}
.y1bc{bottom:484.455000px;}
.y9{bottom:489.540000px;}
.yd0{bottom:495.816000px;}
.y176{bottom:498.576000px;}
.y1bb{bottom:501.715500px;}
.y87{bottom:502.611000px;}
.y18d{bottom:503.059500px;}
.y39{bottom:504.759000px;}
.y6c{bottom:507.094500px;}
.y8{bottom:507.429000px;}
.y111{bottom:507.697740px;}
.ycf{bottom:514.645500px;}
.y175{bottom:517.405500px;}
.y1ba{bottom:518.974500px;}
.y86{bottom:521.440500px;}
.y18c{bottom:521.889000px;}
.y38{bottom:524.215500px;}
.y7{bottom:525.316500px;}
.y110{bottom:532.862010px;}
.yce{bottom:533.475000px;}
.y174{bottom:536.235000px;}
.y106{bottom:540.040500px;}
.y85{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.y37{bottom:543.672000px;}
.ycd{bottom:552.304500px;}
.y1b9{bottom:553.495500px;}
.y104{bottom:554.236500px;}
.y173{bottom:555.064500px;}
.y10f{bottom:558.025837px;}
.y105{bottom:558.576000px;}
.y84{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.y36{bottom:563.130000px;}
.y1b8{bottom:570.756000px;}
.ycc{bottom:571.134000px;}
.y172{bottom:573.894000px;}
.y103{bottom:574.767000px;}
.y83{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.y10e{bottom:582.325740px;}
.y35{bottom:582.586500px;}
.y102{bottom:586.722000px;}
.y1b7{bottom:588.016500px;}
.ycb{bottom:589.962000px;}
.y171{bottom:592.723500px;}
.y82{bottom:596.758500px;}
.y3{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y34{bottom:602.043000px;}
.y1b6{bottom:605.277000px;}
.y101{bottom:605.880000px;}
.y10d{bottom:606.625740px;}
.yca{bottom:608.791500px;}
.y170{bottom:611.553000px;}
.y100{bottom:611.857500px;}
.y2{bottom:614.757000px;}
.y67{bottom:616.036500px;}
.y81{bottom:620.071500px;}
.y33{bottom:621.501000px;}
.y1b5{bottom:622.537500px;}
.yc9{bottom:627.621000px;}
.yff{bottom:629.790000px;}
.y16f{bottom:630.382500px;}
.y10c{bottom:631.789740px;}
.y1{bottom:632.644500px;}
.y66{bottom:634.866000px;}
.yfe{bottom:635.767500px;}
.y1b4{bottom:639.798000px;}
.y32{bottom:640.957500px;}
.yc8{bottom:646.450500px;}
.y16e{bottom:649.212000px;}
.y65{bottom:653.695500px;}
.yfd{bottom:653.701500px;}
.y1b2{bottom:657.057000px;}
.y1b3{bottom:657.058500px;}
.y31{bottom:660.415500px;}
.yc7{bottom:665.280000px;}
.yfc{bottom:665.656500px;}
.y10b{bottom:667.861740px;}
.y16d{bottom:668.041500px;}
.y64{bottom:672.525000px;}
.y1b1{bottom:674.317500px;}
.yfb{bottom:678.358500px;}
.y30{bottom:679.872000px;}
.yc6{bottom:684.109500px;}
.y16c{bottom:686.871000px;}
.yfa{bottom:690.313500px;}
.y63{bottom:691.354500px;}
.y1b0{bottom:691.578000px;}
.y2f{bottom:699.328500px;}
.yf9{bottom:702.268500px;}
.yc5{bottom:702.939000px;}
.y16b{bottom:705.700500px;}
.yf8{bottom:708.246000px;}
.y1af{bottom:708.838500px;}
.y62{bottom:710.184000px;}
.y2e{bottom:718.786500px;}
.yc4{bottom:721.768500px;}
.y16a{bottom:724.530000px;}
.y1ae{bottom:726.099000px;}
.yf7{bottom:726.178500px;}
.y61{bottom:729.013500px;}
.y109{bottom:731.689902px;}
.yf6{bottom:732.156000px;}
.y2d{bottom:738.243000px;}
.yc3{bottom:740.598000px;}
.y1e4{bottom:743.134500px;}
.y108{bottom:743.245740px;}
.y169{bottom:743.359500px;}
.y60{bottom:747.843000px;}
.yf5{bottom:750.090000px;}
.yf4{bottom:756.067500px;}
.y2c{bottom:757.699500px;}
.yc2{bottom:759.427500px;}
.y1e3{bottom:760.395000px;}
.y1ad{bottom:760.620000px;}
.y168{bottom:762.189000px;}
.y5f{bottom:766.671000px;}
.yf3{bottom:774.000000px;}
.y2b{bottom:777.157500px;}
.y1e2{bottom:777.655500px;}
.y1ac{bottom:777.880500px;}
.yc1{bottom:778.257000px;}
.yf2{bottom:779.977500px;}
.y167{bottom:781.018500px;}
.y5e{bottom:785.500500px;}
.y14a{bottom:786.878400px;}
.y1e1{bottom:794.916000px;}
.y1ab{bottom:795.141000px;}
.yf1{bottom:797.910000px;}
.y166{bottom:799.848000px;}
.yf0{bottom:803.887500px;}
.y5d{bottom:804.330000px;}
.y149{bottom:811.070400px;}
.y1e0{bottom:812.176500px;}
.y1aa{bottom:812.400000px;}
.y2a{bottom:815.742000px;}
.y165{bottom:818.677500px;}
.yef{bottom:821.820000px;}
.y5c{bottom:823.159500px;}
.yc0{bottom:823.719000px;}
.yee{bottom:827.797500px;}
.y1df{bottom:829.437000px;}
.y1a9{bottom:829.660500px;}
.y29{bottom:831.882000px;}
.y164{bottom:837.507000px;}
.y148{bottom:837.656400px;}
.y5b{bottom:841.989000px;}
.yed{bottom:845.731500px;}
.y1de{bottom:846.697500px;}
.ybf{bottom:847.360500px;}
.y28{bottom:848.022000px;}
.y1a8{bottom:851.404500px;}
.y163{bottom:856.335000px;}
.yec{bottom:858.433500px;}
.y5a{bottom:860.818500px;}
.y147{bottom:863.234400px;}
.ybe{bottom:863.799000px;}
.y1dd{bottom:863.956500px;}
.y27{bottom:868.501500px;}
.yeb{bottom:870.388500px;}
.y162{bottom:875.164500px;}
.y59{bottom:879.648000px;}
.ybd{bottom:880.236000px;}
.y26{bottom:880.300500px;}
.y1dc{bottom:881.217000px;}
.y1a7{bottom:885.028500px;}
.yea{bottom:889.546500px;}
.y145{bottom:889.694400px;}
.y161{bottom:893.994000px;}
.ybc{bottom:896.674500px;}
.y58{bottom:898.477500px;}
.y25{bottom:900.780000px;}
.y144{bottom:902.546400px;}
.y1a6{bottom:902.602500px;}
.ye9{bottom:908.703000px;}
.y24{bottom:912.580500px;}
.y160{bottom:912.823500px;}
.ybb{bottom:913.113000px;}
.y146{bottom:915.272400px;}
.y1db{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.y1a5{bottom:920.176500px;}
.ye8{bottom:920.658000px;}
.y23{bottom:928.719000px;}
.yba{bottom:929.551500px;}
.y15f{bottom:931.653000px;}
.ye7{bottom:932.614500px;}
.y1da{bottom:932.998500px;}
.y22{bottom:933.058500px;}
.y56{bottom:936.136500px;}
.y142{bottom:940.724400px;}
.yb9{bottom:945.990000px;}
.y1a4{bottom:946.717500px;}
.y1d9{bottom:950.259000px;}
.y15e{bottom:950.482500px;}
.y141{bottom:953.450400px;}
.y55{bottom:954.966000px;}
.yb8{bottom:962.428500px;}
.ye6{bottom:964.084500px;}
.y1a3{bottom:964.291500px;}
.y143{bottom:966.302400px;}
.y1d8{bottom:967.519500px;}
.y15d{bottom:969.312000px;}
.y54{bottom:973.795500px;}
.y21{bottom:977.736000px;}
.yb7{bottom:978.867000px;}
.ye5{bottom:983.316000px;}
.y1d7{bottom:984.780000px;}
.y15c{bottom:988.141500px;}
.y1a2{bottom:990.832500px;}
.y140{bottom:991.754400px;}
.y53{bottom:992.625000px;}
.yb6{bottom:995.305500px;}
.y20{bottom:996.565500px;}
.y1d6{bottom:1002.040500px;}
.y15b{bottom:1006.971000px;}
.y1a1{bottom:1008.406500px;}
.y52{bottom:1011.454500px;}
.yb5{bottom:1011.744000px;}
.y13f{bottom:1017.206400px;}
.y1d5{bottom:1019.299500px;}
.y15a{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.y1a0{bottom:1034.946000px;}
.yb4{bottom:1035.384000px;}
.y1f{bottom:1036.485000px;}
.y1d4{bottom:1036.560000px;}
.y13e{bottom:1043.792400px;}
.y159{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.yb3{bottom:1051.822500px;}
.y1d3{bottom:1053.820500px;}
.y19f{bottom:1061.487000px;}
.y158{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y13d{bottom:1069.244400px;}
.y1d2{bottom:1071.081000px;}
.yb2{bottom:1075.462500px;}
.y157{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y19e{bottom:1088.028000px;}
.y1d1{bottom:1088.341500px;}
.y1d{bottom:1092.972000px;}
.y13c{bottom:1094.822400px;}
.y4d{bottom:1105.602000px;}
.yb1{bottom:1107.082500px;}
.y13b{bottom:1120.274400px;}
.y1b{bottom:1136.460000px;}
.y13a{bottom:1145.726400px;}
.y139{bottom:1158.578400px;}
.y4c{bottom:1168.366500px;}
.y138{bottom:1196.756400px;}
.y137{bottom:1209.482400px;}
.y136{bottom:1247.786400px;}
.y135{bottom:1273.238400px;}
.y134{bottom:1298.816400px;}
.y133{bottom:1324.268400px;}
.y132{bottom:1349.720400px;}
.y131{bottom:1376.306400px;}
.y130{bottom:1401.758400px;}
.y12e{bottom:1478.240589px;}
.y12d{bottom:1491.722400px;}
.hb{height:32.565965px;}
.h1b{height:32.601830px;}
.h10{height:35.652888px;}
.h3{height:37.993262px;}
.h2{height:38.035105px;}
.h13{height:39.614278px;}
.h24{height:42.131391px;}
.hc{height:43.421105px;}
.hd{height:43.468925px;}
.h7{height:43.815515px;}
.h16{height:44.536816px;}
.h4{height:47.323262px;}
.hf{height:48.848947px;}
.he{height:48.902746px;}
.h2f{height:49.117939px;}
.h18{height:50.229492px;}
.h5{height:50.336282px;}
.h21{height:53.444180px;}
.h12{height:54.276245px;}
.h11{height:54.336020px;}
.h14{height:54.575123px;}
.h17{height:55.922168px;}
.h1a{height:57.565105px;}
.h23{height:60.275391px;}
.h2e{height:60.848947px;}
.h1d{height:61.903262px;}
.h1f{height:61.909262px;}
.h26{height:62.351543px;}
.h9{height:62.991506px;}
.ha{height:66.888020px;}
.h22{height:67.106602px;}
.h28{height:70.321289px;}
.h19{height:78.244724px;}
.h27{height:78.291035px;}
.h1e{height:85.813262px;}
.h1c{height:85.855105px;}
.h8{height:97.805491px;}
.h6{height:100.642320px;}
.h29{height:121.225289px;}
.h2d{height:121.226129px;}
.h2b{height:121.729289px;}
.h2a{height:172.129289px;}
.h2c{height:172.633289px;}
.h15{height:285.099000px;}
.h20{height:363.787200px;}
.h25{height:756.914970px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.014688px;}
.w4{width:392.295600px;}
.w5{width:446.266800px;}
.w3{width:488.469000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x75{left:-277.200000px;}
.x80{left:-272.286000px;}
.x66{left:-269.906400px;}
.x70{left:-268.502400px;}
.x84{left:-266.112000px;}
.x8e{left:-263.214000px;}
.x76{left:-258.804000px;}
.x78{left:-254.898000px;}
.x83{left:-250.236000px;}
.x6a{left:-248.414562px;}
.x72{left:-246.470400px;}
.x81{left:-244.944000px;}
.x82{left:-241.290000px;}
.x8d{left:-238.896000px;}
.x77{left:-236.250000px;}
.x69{left:-234.806400px;}
.x6b{left:-233.402400px;}
.x86{left:-231.336000px;}
.x85{left:-228.816000px;}
.x71{left:-225.734400px;}
.x7a{left:-220.626000px;}
.x8f{left:-211.302000px;}
.x2c{left:-201.639000px;}
.x74{left:-195.818400px;}
.x79{left:-193.032000px;}
.x6c{left:-168.927307px;}
.x68{left:-156.938400px;}
.x90{left:-87.822000px;}
.x7c{left:-83.790000px;}
.x7b{left:-75.222000px;}
.x91{left:-73.584000px;}
.x73{left:-57.578400px;}
.x67{left:-35.222400px;}
.x92{left:-10.710000px;}
.x2d{left:-6.069000px;}
.x0{left:0.000000px;}
.x6e{left:3.009600px;}
.x3b{left:25.791000px;}
.x1{left:53.574000px;}
.x3{left:57.178067px;}
.x4a{left:63.387000px;}
.x54{left:66.418500px;}
.x57{left:68.076000px;}
.x56{left:69.127500px;}
.x52{left:70.791000px;}
.x38{left:73.940410px;}
.x51{left:75.388500px;}
.x5d{left:77.439000px;}
.x55{left:78.745500px;}
.x3a{left:81.410342px;}
.x4c{left:83.728500px;}
.x4d{left:85.269000px;}
.x36{left:89.780213px;}
.x5f{left:92.523000px;}
.x32{left:93.740539px;}
.x9d{left:100.648500px;}
.x9e{left:107.776500px;}
.x9c{left:109.767000px;}
.x31{left:111.740722px;}
.x35{left:115.430688px;}
.x37{left:117.499493px;}
.x33{left:119.659944px;}
.x34{left:122.540045px;}
.x30{left:125.061000px;}
.x2f{left:126.411000px;}
.x39{left:131.090203px;}
.x4e{left:132.618000px;}
.x2{left:133.944000px;}
.x87{left:147.672000px;}
.x93{left:157.878000px;}
.x2e{left:164.481000px;}
.x60{left:170.608500px;}
.x58{left:174.531000px;}
.x53{left:179.610000px;}
.x6f{left:201.081600px;}
.x94{left:220.752000px;}
.x7d{left:224.784000px;}
.x61{left:230.986500px;}
.x88{left:233.478000px;}
.x5e{left:234.909000px;}
.x7{left:248.526000px;}
.x5{left:249.589500px;}
.x49{left:254.793000px;}
.x4f{left:264.466500px;}
.xcb{left:266.683500px;}
.x6{left:269.764500px;}
.x4{left:271.321500px;}
.xcc{left:278.974500px;}
.xe{left:281.479500px;}
.x2b{left:292.747500px;}
.x19{left:294.858000px;}
.x1a{left:302.329500px;}
.x50{left:304.051500px;}
.x9b{left:306.826500px;}
.x8{left:308.124000px;}
.x25{left:309.382500px;}
.x45{left:315.828000px;}
.xd{left:321.858000px;}
.x43{left:330.178500px;}
.x40{left:333.634500px;}
.x62{left:340.942500px;}
.xf{left:344.868000px;}
.x3f{left:348.981000px;}
.x3e{left:350.332500px;}
.x10{left:352.339500px;}
.x44{left:355.053000px;}
.x41{left:356.674500px;}
.x42{left:359.256000px;}
.x3d{left:362.739000px;}
.xc8{left:365.917500px;}
.x46{left:366.928500px;}
.xb8{left:368.226000px;}
.xc9{left:369.706500px;}
.xd0{left:372.406500px;}
.xd1{left:377.092500px;}
.x89{left:378.756000px;}
.x48{left:384.082500px;}
.x95{left:388.962000px;}
.xcd{left:390.694500px;}
.xab{left:399.760500px;}
.x63{left:401.320500px;}
.xca{left:403.383000px;}
.x59{left:405.243000px;}
.x26{left:409.978500px;}
.x9f{left:412.176000px;}
.x6d{left:418.377600px;}
.xa0{left:419.647500px;}
.xcf{left:431.814000px;}
.x9{left:435.625500px;}
.x4b{left:437.622000px;}
.xa{left:446.688000px;}
.x96{left:451.080000px;}
.x7e{left:455.112000px;}
.x8a{left:463.680000px;}
.x97{left:465.318000px;}
.x11{left:490.237500px;}
.x12{left:497.710500px;}
.x64{left:511.275000px;}
.xba{left:513.412500px;}
.x5c{left:515.197500px;}
.xa4{left:525.492000px;}
.xbb{left:528.357000px;}
.xb1{left:530.158500px;}
.xc2{left:537.937500px;}
.xa5{left:540.436500px;}
.xa8{left:543.127500px;}
.xa6{left:544.246500px;}
.xc3{left:552.880500px;}
.xa9{left:555.418500px;}
.xc4{left:556.657500px;}
.xa7{left:559.191000px;}
.xaa{left:568.060500px;}
.x27{left:571.918500px;}
.x5a{left:575.575500px;}
.x28{left:584.209500px;}
.x20{left:589.893000px;}
.xae{left:599.322000px;}
.x21{left:602.184000px;}
.x8b{left:607.824000px;}
.xaf{left:614.265000px;}
.x98{left:618.030000px;}
.x3c{left:622.849500px;}
.xa1{left:629.880000px;}
.xbc{left:631.191000px;}
.x29{left:632.539500px;}
.x2a{left:644.830500px;}
.xbd{left:646.135500px;}
.x65{left:651.741000px;}
.xbe{left:653.749500px;}
.x15{left:659.802000px;}
.x16{left:667.275000px;}
.xbf{left:668.694000px;}
.x17{left:670.936500px;}
.x18{left:678.408000px;}
.x99{left:680.147790px;}
.x5b{left:682.831500px;}
.x7f{left:684.180000px;}
.x8c{left:692.747790px;}
.x9a{left:694.386000px;}
.x47{left:701.571000px;}
.x1b{left:703.467000px;}
.xb0{left:707.656500px;}
.xb9{left:709.867500px;}
.x1c{left:710.938500px;}
.xb{left:713.413500px;}
.x1d{left:718.560000px;}
.x22{left:722.029500px;}
.xc{left:724.476000px;}
.x24{left:725.889000px;}
.x23{left:729.501000px;}
.xc5{left:731.283000px;}
.x1e{left:733.504500px;}
.xd5{left:738.864000px;}
.xa2{left:745.000500px;}
.xc6{left:746.226000px;}
.xc7{left:750.037500px;}
.xd4{left:753.670500px;}
.xa3{left:759.945000px;}
.xac{left:765.465000px;}
.xd7{left:770.449500px;}
.xad{left:777.756000px;}
.xb4{left:779.659500px;}
.xb2{left:788.278500px;}
.xc0{left:790.273500px;}
.xb5{left:794.604000px;}
.xd8{left:797.347500px;}
.xb6{left:798.414000px;}
.xc1{left:805.218000px;}
.xd2{left:810.384000px;}
.xb7{left:813.358500px;}
.xd6{left:816.609000px;}
.x1f{left:817.698000px;}
.x13{left:825.519000px;}
.xce{left:826.875000px;}
.x14{left:832.990500px;}
.xb3{left:835.531500px;}
.xd3{left:837.282000px;}
@media print{
.v5{vertical-align:-19.842272pt;}
.v4{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.293333pt;}
.v3{vertical-align:11.157333pt;}
.v8{vertical-align:13.498667pt;}
.va{vertical-align:16.127040pt;}
.v6{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.v9{vertical-align:21.253333pt;}
.v7{vertical-align:42.506667pt;}
.vb{vertical-align:45.248000pt;}
.vc{vertical-align:90.496000pt;}
.ls8e{letter-spacing:-1.821235pt;}
.ls3e{letter-spacing:-0.267200pt;}
.ls48{letter-spacing:-0.256512pt;}
.lsae{letter-spacing:-0.221760pt;}
.ls8f{letter-spacing:-0.205210pt;}
.ls36{letter-spacing:-0.197728pt;}
.ls95{letter-spacing:-0.190080pt;}
.lsb0{letter-spacing:-0.188160pt;}
.ls85{letter-spacing:-0.153907pt;}
.ls3d{letter-spacing:-0.149632pt;}
.ls92{letter-spacing:-0.147494pt;}
.ls40{letter-spacing:-0.138944pt;}
.ls41{letter-spacing:-0.133600pt;}
.ls45{letter-spacing:-0.128256pt;}
.ls84{letter-spacing:-0.121843pt;}
.ls90{letter-spacing:-0.115430pt;}
.lsa7{letter-spacing:-0.113210pt;}
.lsa9{letter-spacing:-0.107520pt;}
.ls47{letter-spacing:-0.106880pt;}
.ls44{letter-spacing:-0.101536pt;}
.ls96{letter-spacing:-0.097920pt;}
.ls81{letter-spacing:-0.097037pt;}
.ls91{letter-spacing:-0.089779pt;}
.ls8a{letter-spacing:-0.080640pt;}
.ls33{letter-spacing:-0.076608pt;}
.ls42{letter-spacing:-0.064128pt;}
.lsab{letter-spacing:-0.053760pt;}
.ls3f{letter-spacing:-0.048096pt;}
.lsaa{letter-spacing:-0.047040pt;}
.ls8d{letter-spacing:-0.044890pt;}
.lsac{letter-spacing:-0.040320pt;}
.ls35{letter-spacing:-0.038400pt;}
.ls3a{letter-spacing:-0.032064pt;}
.lsad{letter-spacing:-0.026880pt;}
.ls38{letter-spacing:-0.026720pt;}
.ls8c{letter-spacing:-0.025651pt;}
.ls39{letter-spacing:-0.021376pt;}
.lsb1{letter-spacing:-0.020160pt;}
.lsa8{letter-spacing:-0.017875pt;}
.ls93{letter-spacing:-0.017280pt;}
.ls82{letter-spacing:-0.015322pt;}
.lsb2{letter-spacing:-0.013440pt;}
.ls8b{letter-spacing:-0.012826pt;}
.ls88{letter-spacing:-0.006413pt;}
.ls83{letter-spacing:-0.005760pt;}
.ls43{letter-spacing:-0.005344pt;}
.ls34{letter-spacing:-0.004256pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.002422pt;}
.lsb8{letter-spacing:0.003304pt;}
.ls6{letter-spacing:0.003733pt;}
.ls18{letter-spacing:0.004800pt;}
.ls2d{letter-spacing:0.005344pt;}
.ls94{letter-spacing:0.005760pt;}
.ls6f{letter-spacing:0.006413pt;}
.lsa4{letter-spacing:0.006720pt;}
.ls28{letter-spacing:0.010688pt;}
.ls70{letter-spacing:0.012826pt;}
.lsa0{letter-spacing:0.013440pt;}
.ls67{letter-spacing:0.019238pt;}
.ls9e{letter-spacing:0.020160pt;}
.ls1b{letter-spacing:0.021376pt;}
.ls6e{letter-spacing:0.023040pt;}
.ls74{letter-spacing:0.025651pt;}
.ls21{letter-spacing:0.026720pt;}
.ls9d{letter-spacing:0.026880pt;}
.ls17{letter-spacing:0.028800pt;}
.ls2b{letter-spacing:0.032064pt;}
.ls9f{letter-spacing:0.033600pt;}
.ls78{letter-spacing:0.034560pt;}
.ls2e{letter-spacing:0.037408pt;}
.ls76{letter-spacing:0.040320pt;}
.ls2c{letter-spacing:0.042752pt;}
.ls87{letter-spacing:0.044890pt;}
.ls6d{letter-spacing:0.046080pt;}
.ls9b{letter-spacing:0.047040pt;}
.ls1f{letter-spacing:0.048096pt;}
.ls19{letter-spacing:0.052800pt;}
.ls1e{letter-spacing:0.053440pt;}
.ls9a{letter-spacing:0.053760pt;}
.ls77{letter-spacing:0.057600pt;}
.ls71{letter-spacing:0.057715pt;}
.ls7f{letter-spacing:0.057728pt;}
.ls7a{letter-spacing:0.058368pt;}
.ls1c{letter-spacing:0.058784pt;}
.ls6c{letter-spacing:0.063360pt;}
.ls23{letter-spacing:0.069472pt;}
.ls9c{letter-spacing:0.073920pt;}
.ls49{letter-spacing:0.074816pt;}
.ls3b{letter-spacing:0.080160pt;}
.ls89{letter-spacing:0.083366pt;}
.ls14{letter-spacing:0.085120pt;}
.lsa3{letter-spacing:0.087360pt;}
.ls1d{letter-spacing:0.090848pt;}
.ls64{letter-spacing:0.091930pt;}
.ls79{letter-spacing:0.092160pt;}
.lsa1{letter-spacing:0.094080pt;}
.ls3c{letter-spacing:0.096192pt;}
.lsa2{letter-spacing:0.100800pt;}
.ls2a{letter-spacing:0.101536pt;}
.ls37{letter-spacing:0.106880pt;}
.ls98{letter-spacing:0.107251pt;}
.ls66{letter-spacing:0.121843pt;}
.ls46{letter-spacing:0.128256pt;}
.ls97{letter-spacing:0.132480pt;}
.ls2f{letter-spacing:0.133600pt;}
.ls86{letter-spacing:0.141082pt;}
.ls72{letter-spacing:0.147494pt;}
.lsaf{letter-spacing:0.154560pt;}
.ls16{letter-spacing:0.157472pt;}
.ls15{letter-spacing:0.170240pt;}
.ls24{letter-spacing:0.171008pt;}
.ls65{letter-spacing:0.178752pt;}
.ls6b{letter-spacing:0.190080pt;}
.ls68{letter-spacing:0.192384pt;}
.ls80{letter-spacing:0.194074pt;}
.ls99{letter-spacing:0.208544pt;}
.lsa6{letter-spacing:0.226419pt;}
.lsa5{letter-spacing:0.576078pt;}
.lsf{letter-spacing:0.637762pt;}
.ls31{letter-spacing:1.047424pt;}
.ls32{letter-spacing:1.368064pt;}
.ls26{letter-spacing:2.324640pt;}
.ls27{letter-spacing:2.645280pt;}
.ls7{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls73{letter-spacing:3.167923pt;}
.ls30{letter-spacing:3.607200pt;}
.ls25{letter-spacing:5.205056pt;}
.ls75{letter-spacing:5.854886pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5c{letter-spacing:9.299025pt;}
.ls29{letter-spacing:9.368032pt;}
.lsd{letter-spacing:10.626533pt;}
.lsb7{letter-spacing:11.440718pt;}
.lsba{letter-spacing:11.859247pt;}
.lsb9{letter-spacing:11.877480pt;}
.lsb4{letter-spacing:11.954133pt;}
.lsb{letter-spacing:11.954426pt;}
.ls4a{letter-spacing:11.955635pt;}
.lsb5{letter-spacing:11.959467pt;}
.ls22{letter-spacing:12.248448pt;}
.ls56{letter-spacing:12.528078pt;}
.ls55{letter-spacing:12.533411pt;}
.ls10{letter-spacing:13.055856pt;}
.ls59{letter-spacing:13.076806pt;}
.ls58{letter-spacing:13.209400pt;}
.ls4c{letter-spacing:13.214184pt;}
.ls11{letter-spacing:13.225267pt;}
.ls4b{letter-spacing:13.230162pt;}
.ls12{letter-spacing:13.230584pt;}
.ls4d{letter-spacing:13.236125pt;}
.ls54{letter-spacing:13.278903pt;}
.ls2{letter-spacing:13.283733pt;}
.lsb3{letter-spacing:13.284237pt;}
.ls3{letter-spacing:13.284541pt;}
.ls57{letter-spacing:13.318400pt;}
.ls51{letter-spacing:13.325597pt;}
.ls5a{letter-spacing:13.338858pt;}
.ls13{letter-spacing:13.496002pt;}
.ls50{letter-spacing:13.575018pt;}
.lsa{letter-spacing:13.876995pt;}
.ls5b{letter-spacing:13.903322pt;}
.ls52{letter-spacing:14.248420pt;}
.ls4e{letter-spacing:14.551688pt;}
.ls53{letter-spacing:14.813126pt;}
.lsb6{letter-spacing:15.187284pt;}
.ls6a{letter-spacing:15.839616pt;}
.ls20{letter-spacing:16.090784pt;}
.lsc{letter-spacing:16.109674pt;}
.ls4f{letter-spacing:16.752995pt;}
.ls63{letter-spacing:17.425067pt;}
.ls8{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls7d{letter-spacing:133.438080pt;}
.ls5f{letter-spacing:137.340785pt;}
.ls5e{letter-spacing:146.940785pt;}
.ls5d{letter-spacing:146.946118pt;}
.ls7e{letter-spacing:150.720000pt;}
.ls62{letter-spacing:151.790531pt;}
.ls7c{letter-spacing:151.872000pt;}
.ls7b{letter-spacing:153.792000pt;}
.ls60{letter-spacing:161.086531pt;}
.ls61{letter-spacing:162.318531pt;}
.ls69{letter-spacing:584.545958pt;}
.ls1a{letter-spacing:762.305568pt;}
.ws5d{word-spacing:-53.440000pt;}
.wseb{word-spacing:-16.800000pt;}
.wse9{word-spacing:-16.752960pt;}
.wse7{word-spacing:-15.122419pt;}
.wse8{word-spacing:-14.896000pt;}
.wsbf{word-spacing:-14.532480pt;}
.wsbe{word-spacing:-14.423040pt;}
.wsbd{word-spacing:-14.400000pt;}
.ws5c{word-spacing:-13.360000pt;}
.ws13{word-spacing:-13.283467pt;}
.wsb9{word-spacing:-12.962074pt;}
.wsba{word-spacing:-12.768000pt;}
.ws12{word-spacing:-12.760670pt;}
.ws11c{word-spacing:-11.955200pt;}
.ws5a{word-spacing:-10.810240pt;}
.ws5b{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.626800pt;}
.wsea{word-spacing:-10.304000pt;}
.ws10{word-spacing:-10.095467pt;}
.wsbb{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.298400pt;}
.wsbc{word-spacing:-8.832000pt;}
.ws89{word-spacing:-3.206400pt;}
.ws110{word-spacing:-2.922363pt;}
.ws8b{word-spacing:-2.832320pt;}
.ws87{word-spacing:-2.816288pt;}
.ws7c{word-spacing:-2.805600pt;}
.ws88{word-spacing:-2.800256pt;}
.ws8a{word-spacing:-2.773536pt;}
.wsde{word-spacing:-2.648486pt;}
.ws7d{word-spacing:-2.645280pt;}
.wsd1{word-spacing:-2.597184pt;}
.wsdd{word-spacing:-2.385562pt;}
.ws8d{word-spacing:-2.281888pt;}
.ws8c{word-spacing:-2.212416pt;}
.wsfd{word-spacing:-2.019087pt;}
.wsfa{word-spacing:-2.002560pt;}
.ws27{word-spacing:-1.965953pt;}
.ws34{word-spacing:-1.912819pt;}
.ws42{word-spacing:-1.647150pt;}
.wsfe{word-spacing:-1.594016pt;}
.wsf9{word-spacing:-1.585920pt;}
.ws2a{word-spacing:-1.540882pt;}
.ws11f{word-spacing:-1.482445pt;}
.ws113{word-spacing:-1.381481pt;}
.ws57{word-spacing:-1.328347pt;}
.ws120{word-spacing:-1.291162pt;}
.ws85{word-spacing:-1.239808pt;}
.wsff{word-spacing:-1.222079pt;}
.ws86{word-spacing:-1.207744pt;}
.ws9d{word-spacing:-1.168945pt;}
.ws9c{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws105{word-spacing:-1.009543pt;}
.ws7{word-spacing:-0.929840pt;}
.ws4a{word-spacing:-0.903276pt;}
.ws106{word-spacing:-0.850142pt;}
.ws20{word-spacing:-0.812954pt;}
.ws3a{word-spacing:-0.797008pt;}
.ws132{word-spacing:-0.717312pt;}
.ws10f{word-spacing:-0.531339pt;}
.ws134{word-spacing:-0.526029pt;}
.ws115{word-spacing:-0.425071pt;}
.ws56{word-spacing:-0.371937pt;}
.ws65{word-spacing:-0.342016pt;}
.ws18{word-spacing:-0.334746pt;}
.ws64{word-spacing:-0.325984pt;}
.ws1a{word-spacing:-0.286925pt;}
.ws7a{word-spacing:-0.283232pt;}
.ws59{word-spacing:-0.265669pt;}
.ws6c{word-spacing:-0.256512pt;}
.wscd{word-spacing:-0.253440pt;}
.ws139{word-spacing:-0.239104pt;}
.ws93{word-spacing:-0.235136pt;}
.ws7b{word-spacing:-0.229792pt;}
.ws28{word-spacing:-0.212535pt;}
.wse1{word-spacing:-0.198797pt;}
.ws129{word-spacing:-0.191283pt;}
.wsc6{word-spacing:-0.166733pt;}
.ws40{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.wsed{word-spacing:-0.095334pt;}
.wsc0{word-spacing:-0.081715pt;}
.ws5e{word-spacing:-0.072352pt;}
.ws11{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.047821pt;}
.wsc8{word-spacing:-0.044890pt;}
.ws32{word-spacing:-0.042507pt;}
.ws63{word-spacing:-0.037408pt;}
.wsc4{word-spacing:-0.025651pt;}
.ws14{word-spacing:-0.005333pt;}
.ws1{word-spacing:0.000000pt;}
.ws94{word-spacing:0.010688pt;}
.wsca{word-spacing:0.012826pt;}
.ws70{word-spacing:0.037408pt;}
.ws23{word-spacing:0.047821pt;}
.ws58{word-spacing:0.053134pt;}
.ws84{word-spacing:0.053440pt;}
.ws62{word-spacing:0.064128pt;}
.ws16{word-spacing:0.085014pt;}
.ws12e{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws67{word-spacing:0.106880pt;}
.ws66{word-spacing:0.112224pt;}
.wsd0{word-spacing:0.126720pt;}
.wsf8{word-spacing:0.127680pt;}
.ws60{word-spacing:0.134400pt;}
.wsec{word-spacing:0.143462pt;}
.wsce{word-spacing:0.144000pt;}
.wse6{word-spacing:0.149760pt;}
.ws61{word-spacing:0.158400pt;}
.ws35{word-spacing:0.159402pt;}
.wscc{word-spacing:0.161280pt;}
.wscf{word-spacing:0.167040pt;}
.wsef{word-spacing:0.168000pt;}
.wsf7{word-spacing:0.181440pt;}
.wsf6{word-spacing:0.188160pt;}
.wsc3{word-spacing:0.190080pt;}
.ws11b{word-spacing:0.191283pt;}
.wsf5{word-spacing:0.194880pt;}
.wsc2{word-spacing:0.195840pt;}
.wsfb{word-spacing:0.201600pt;}
.wse5{word-spacing:0.207360pt;}
.ws2c{word-spacing:0.212535pt;}
.wsc9{word-spacing:0.224448pt;}
.ws6d{word-spacing:0.235136pt;}
.ws140{word-spacing:0.239104pt;}
.wse2{word-spacing:0.243686pt;}
.wsf4{word-spacing:0.248640pt;}
.wsc7{word-spacing:0.250099pt;}
.wsf2{word-spacing:0.262080pt;}
.ws96{word-spacing:0.265669pt;}
.wsf1{word-spacing:0.268800pt;}
.wscb{word-spacing:0.270720pt;}
.wsf3{word-spacing:0.275520pt;}
.ws141{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.wsf0{word-spacing:0.329280pt;}
.ws100{word-spacing:0.371937pt;}
.ws111{word-spacing:0.425071pt;}
.ws10c{word-spacing:0.478205pt;}
.ws137{word-spacing:0.478208pt;}
.ws12c{word-spacing:0.573850pt;}
.ws9f{word-spacing:0.584473pt;}
.ws98{word-spacing:0.592546pt;}
.ws9a{word-spacing:0.593493pt;}
.ws99{word-spacing:0.598827pt;}
.ws9e{word-spacing:0.637606pt;}
.ws124{word-spacing:0.765133pt;}
.ws6{word-spacing:0.855453pt;}
.ws39{word-spacing:0.903276pt;}
.ws91{word-spacing:0.913824pt;}
.ws4e{word-spacing:0.956410pt;}
.ws3d{word-spacing:1.062677pt;}
.ws41{word-spacing:1.222079pt;}
.ws36{word-spacing:1.275213pt;}
.ws108{word-spacing:1.381481pt;}
.ws90{word-spacing:1.389440pt;}
.ws44{word-spacing:1.434614pt;}
.ws52{word-spacing:1.487748pt;}
.ws97{word-spacing:1.537704pt;}
.ws49{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.594016pt;}
.ws92{word-spacing:1.624576pt;}
.ws1b{word-spacing:1.625907pt;}
.ws38{word-spacing:1.700284pt;}
.ws55{word-spacing:1.806551pt;}
.ws122{word-spacing:1.817190pt;}
.ws119{word-spacing:1.859685pt;}
.ws21{word-spacing:1.912832pt;}
.ws3e{word-spacing:1.965953pt;}
.ws4d{word-spacing:2.019087pt;}
.ws3c{word-spacing:2.072221pt;}
.ws2f{word-spacing:2.125355pt;}
.ws29{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws145{word-spacing:2.247578pt;}
.ws78{word-spacing:2.271200pt;}
.ws48{word-spacing:2.284756pt;}
.ws10b{word-spacing:2.337890pt;}
.ws10a{word-spacing:2.391024pt;}
.ws138{word-spacing:2.391040pt;}
.ws1e{word-spacing:2.438861pt;}
.ws12a{word-spacing:2.534502pt;}
.ws37{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws114{word-spacing:2.603559pt;}
.ws79{word-spacing:2.709408pt;}
.ws10d{word-spacing:2.762961pt;}
.wsd5{word-spacing:2.763917pt;}
.wsd4{word-spacing:2.783155pt;}
.ws127{word-spacing:2.857182pt;}
.ws102{word-spacing:2.869229pt;}
.ws13e{word-spacing:2.869248pt;}
.wsa1{word-spacing:2.964890pt;}
.ws11a{word-spacing:3.028630pt;}
.ws112{word-spacing:3.081764pt;}
.ws19{word-spacing:3.108352pt;}
.ws25{word-spacing:3.188032pt;}
.ws24{word-spacing:3.203994pt;}
.wsa0{word-spacing:3.251814pt;}
.ws116{word-spacing:3.347434pt;}
.ws8f{word-spacing:3.393440pt;}
.ws11e{word-spacing:3.395277pt;}
.ws95{word-spacing:3.453701pt;}
.wsdb{word-spacing:3.494976pt;}
.ws8e{word-spacing:3.548416pt;}
.ws10e{word-spacing:3.613103pt;}
.ws104{word-spacing:3.719371pt;}
.wsb8{word-spacing:3.868155pt;}
.ws51{word-spacing:3.878772pt;}
.ws109{word-spacing:4.038174pt;}
.ws22{word-spacing:4.160410pt;}
.ws118{word-spacing:4.197575pt;}
.wsd{word-spacing:4.240070pt;}
.ws54{word-spacing:4.250709pt;}
.wse{word-spacing:4.314458pt;}
.ws135{word-spacing:4.495155pt;}
.ws53{word-spacing:4.675780pt;}
.ws4b{word-spacing:4.782048pt;}
.wsfc{word-spacing:4.941450pt;}
.ws4c{word-spacing:4.994583pt;}
.ws101{word-spacing:5.100851pt;}
.ws2e{word-spacing:5.153985pt;}
.ws9b{word-spacing:5.207119pt;}
.ws77{word-spacing:5.338656pt;}
.wsdf{word-spacing:5.470118pt;}
.ws103{word-spacing:5.472788pt;}
.ws13c{word-spacing:5.547213pt;}
.ws75{word-spacing:5.573792pt;}
.ws76{word-spacing:5.664640pt;}
.ws144{word-spacing:5.738496pt;}
.ws117{word-spacing:5.791591pt;}
.ws3f{word-spacing:5.844725pt;}
.ws33{word-spacing:5.897859pt;}
.wse0{word-spacing:5.970317pt;}
.ws45{word-spacing:6.004127pt;}
.wsd6{word-spacing:6.252480pt;}
.ws4f{word-spacing:6.588599pt;}
.ws47{word-spacing:6.907403pt;}
.wsb{word-spacing:6.918010pt;}
.ws43{word-spacing:7.173072pt;}
.ws46{word-spacing:7.385607pt;}
.ws7e{word-spacing:8.507648pt;}
.ws2{word-spacing:9.257323pt;}
.ws80{word-spacing:9.373376pt;}
.ws81{word-spacing:9.587136pt;}
.ws107{word-spacing:9.617230pt;}
.ws7f{word-spacing:9.667296pt;}
.ws5f{word-spacing:10.329312pt;}
.ws30{word-spacing:10.585845pt;}
.ws9{word-spacing:10.823338pt;}
.ws133{word-spacing:11.190067pt;}
.wsd8{word-spacing:11.248051pt;}
.wsd7{word-spacing:11.254464pt;}
.ws11d{word-spacing:11.333530pt;}
.ws146{word-spacing:11.668275pt;}
.ws142{word-spacing:11.811738pt;}
.ws123{word-spacing:11.901670pt;}
.ws130{word-spacing:11.902208pt;}
.ws13a{word-spacing:11.902566pt;}
.ws128{word-spacing:11.907004pt;}
.ws12f{word-spacing:11.907379pt;}
.ws126{word-spacing:11.955200pt;}
.ws13f{word-spacing:12.098662pt;}
.ws72{word-spacing:12.221728pt;}
.wsc1{word-spacing:12.395174pt;}
.ws74{word-spacing:12.499616pt;}
.ws73{word-spacing:12.547712pt;}
.wsdc{word-spacing:13.127002pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.319536pt;}
.wsee{word-spacing:14.461037pt;}
.ws12b{word-spacing:14.489702pt;}
.ws131{word-spacing:14.728806pt;}
.ws12d{word-spacing:14.766677pt;}
.ws13b{word-spacing:14.769707pt;}
.ws136{word-spacing:14.770688pt;}
.ws143{word-spacing:14.771294pt;}
.ws125{word-spacing:14.772011pt;}
.ws121{word-spacing:14.776627pt;}
.ws13d{word-spacing:14.872269pt;}
.ws83{word-spacing:15.791520pt;}
.ws82{word-spacing:15.898400pt;}
.ws71{word-spacing:16.032000pt;}
.wsd3{word-spacing:16.936205pt;}
.wsd2{word-spacing:16.981094pt;}
.wsda{word-spacing:17.737805pt;}
.wse4{word-spacing:17.798400pt;}
.wsd9{word-spacing:17.801933pt;}
.wse3{word-spacing:17.815680pt;}
.ws50{word-spacing:18.769029pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws15{word-spacing:35.593054pt;}
.wsf{word-spacing:41.430071pt;}
.wsa8{word-spacing:56.507297pt;}
.wsa7{word-spacing:83.583196pt;}
.wsab{word-spacing:83.588529pt;}
.wsa5{word-spacing:92.889862pt;}
.wsaa{word-spacing:102.185862pt;}
.wsb5{word-spacing:114.466012pt;}
.wsb7{word-spacing:116.136000pt;}
.wsad{word-spacing:122.672022pt;}
.wsa9{word-spacing:123.243494pt;}
.wsb6{word-spacing:125.741333pt;}
.wsb2{word-spacing:133.167196pt;}
.wsb1{word-spacing:134.095196pt;}
.wsa6{word-spacing:135.668529pt;}
.wsa3{word-spacing:136.880874pt;}
.wsac{word-spacing:143.447237pt;}
.wsa4{word-spacing:146.480874pt;}
.wsb3{word-spacing:154.988970pt;}
.wsb0{word-spacing:169.906237pt;}
.wsb4{word-spacing:219.152034pt;}
.wsa2{word-spacing:264.254571pt;}
.wsaf{word-spacing:490.103345pt;}
.wsc5{word-spacing:549.583373pt;}
.wsae{word-spacing:559.699100pt;}
.ws68{word-spacing:672.050752pt;}
.ws69{word-spacing:735.767264pt;}
.ws6a{word-spacing:763.828608pt;}
.ws6e{word-spacing:796.507168pt;}
.ws6b{word-spacing:800.627392pt;}
.ws6f{word-spacing:844.592480pt;}
._2d{margin-left:-845.169632pt;}
._28{margin-left:-801.228294pt;}
._2b{margin-left:-796.552294pt;}
._27{margin-left:-764.360038pt;}
._26{margin-left:-736.216160pt;}
._25{margin-left:-672.606528pt;}
._63{margin-left:-549.884774pt;}
._f{margin-left:-20.932687pt;}
._c{margin-left:-18.860887pt;}
._2{margin-left:-13.538470pt;}
._a{margin-left:-10.616218pt;}
._9{margin-left:-7.077478pt;}
._d{margin-left:-5.925780pt;}
._3{margin-left:-4.797974pt;}
._18{margin-left:-3.878772pt;}
._0{margin-left:-2.752326pt;}
._5{margin-left:-1.338970pt;}
._1{width:1.153002pt;}
._7{width:2.045648pt;}
._b{width:3.286565pt;}
._2f{width:5.617846pt;}
._92{width:7.660093pt;}
._10{width:9.861670pt;}
._6{width:10.935226pt;}
._12{width:12.672512pt;}
._a4{width:13.586395pt;}
._4{width:14.505002pt;}
._1b{width:15.631980pt;}
._14{width:16.832922pt;}
._13{width:17.732301pt;}
._1a{width:19.314143pt;}
._19{width:20.722208pt;}
._e{width:22.131939pt;}
._15{width:23.485169pt;}
._7f{width:24.790080pt;}
._a3{width:25.914737pt;}
._8{width:27.188522pt;}
._1f{width:28.586020pt;}
._1d{width:30.881399pt;}
._79{width:32.901574pt;}
._1c{width:35.397778pt;}
._1e{width:36.403954pt;}
._7c{width:41.814080pt;}
._91{width:43.962240pt;}
._7d{width:47.176640pt;}
._11{width:50.498554pt;}
._88{width:52.626560pt;}
._a5{width:54.993920pt;}
._7e{width:63.781760pt;}
._7b{width:65.815824pt;}
._7a{width:67.365760pt;}
._4b{width:69.514838pt;}
._5f{width:74.293062pt;}
._4a{width:78.754150pt;}
._60{width:81.119242pt;}
._8a{width:82.980166pt;}
._5d{width:84.101062pt;}
._5a{width:86.929994pt;}
._4c{width:88.148832pt;}
._93{width:93.120730pt;}
._5e{width:95.365062pt;}
._4d{width:96.405811pt;}
._55{width:97.441956pt;}
._94{width:98.761585pt;}
._89{width:99.962240pt;}
._58{width:101.389754pt;}
._8f{width:114.289958pt;}
._8d{width:116.653802pt;}
._96{width:117.639158pt;}
._53{width:118.615666pt;}
._52{width:121.102362pt;}
._90{width:124.942720pt;}
._54{width:127.506253pt;}
._5b{width:128.432876pt;}
._59{width:129.880051pt;}
._51{width:130.801341pt;}
._42{width:133.930762pt;}
._74{width:136.327680pt;}
._5c{width:137.818396pt;}
._56{width:139.699162pt;}
._8b{width:142.674560pt;}
._95{width:145.799360pt;}
._8c{width:149.215360pt;}
._78{width:152.212480pt;}
._87{width:153.381760pt;}
._86{width:154.555520pt;}
._76{width:156.128640pt;}
._97{width:157.073626pt;}
._75{width:158.296320pt;}
._57{width:160.256217pt;}
._49{width:162.025959pt;}
._99{width:170.289958pt;}
._84{width:171.301760pt;}
._83{width:174.267520pt;}
._8e{width:184.289280pt;}
._80{width:191.024960pt;}
._43{width:199.221453pt;}
._9a{width:205.322880pt;}
._98{width:233.385600pt;}
._85{width:238.331520pt;}
._82{width:240.355840pt;}
._81{width:241.467520pt;}
._66{width:285.241344pt;}
._3f{width:303.470797pt;}
._3e{width:306.387866pt;}
._64{width:311.809574pt;}
._3c{width:320.356827pt;}
._73{width:321.788160pt;}
._65{width:331.323725pt;}
._3d{width:338.720014pt;}
._9d{width:346.844262pt;}
._9c{width:358.942925pt;}
._67{width:362.901654pt;}
._9e{width:370.898125pt;}
._a0{width:372.189286pt;}
._9b{width:378.645094pt;}
._72{width:380.722560pt;}
._9f{width:382.853325pt;}
._48{width:409.799085pt;}
._70{width:412.700160pt;}
._46{width:424.676525pt;}
._71{width:426.140160pt;}
._a2{width:430.721946pt;}
._47{width:434.681603pt;}
._a1{width:450.567578pt;}
._40{width:474.477978pt;}
._41{width:486.433178pt;}
._50{width:499.407733pt;}
._68{width:508.381133pt;}
._4f{width:510.671078pt;}
._4e{width:519.539269pt;}
._69{width:524.124557pt;}
._6b{width:537.219494pt;}
._6c{width:572.218176pt;}
._2c{width:640.692160pt;}
._6a{width:656.253888pt;}
._2a{width:685.070038pt;}
._3a{width:694.740582pt;}
._22{width:717.023482pt;}
._33{width:722.189722pt;}
._24{width:732.277632pt;}
._38{width:734.288371pt;}
._2e{width:738.704090pt;}
._31{width:765.100874pt;}
._29{width:775.115136pt;}
._32{width:776.753254pt;}
._34{width:779.622502pt;}
._16{width:783.719793pt;}
._35{width:804.967526pt;}
._21{width:808.726522pt;}
._37{width:815.248998pt;}
._39{width:834.712051pt;}
._36{width:838.059520pt;}
._30{width:844.467507pt;}
._23{width:846.414784pt;}
._3b{width:877.320397pt;}
._44{width:896.762841pt;}
._6d{width:979.099891pt;}
._62{width:990.335117pt;}
._6e{width:995.934682pt;}
._45{width:1050.198471pt;}
._6f{width:1210.186442pt;}
._20{width:1910.548566pt;}
._a6{width:2254.474870pt;}
._17{width:2275.728204pt;}
._61{width:2291.892976pt;}
._77{width:2674.067306pt;}
.fsd{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs12{font-size:35.328000pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:38.400000pt;}
.fs4{font-size:40.381867pt;}
.fs16{font-size:41.216000pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fse{font-size:51.072000pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs10{font-size:57.600000pt;}
.fs13{font-size:59.584000pt;}
.fsf{font-size:64.128000pt;}
.fs15{font-size:67.200000pt;}
.fs14{font-size:74.816000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.946667pt;}
.y8b{bottom:-713.595600pt;}
.yaf{bottom:-661.906075pt;}
.yae{bottom:-644.786571pt;}
.yad{bottom:-627.747227pt;}
.yac{bottom:-610.627723pt;}
.yab{bottom:-593.508219pt;}
.yaa{bottom:-576.468875pt;}
.ya9{bottom:-559.349371pt;}
.y10a{bottom:-559.305120pt;}
.ya8{bottom:-542.310027pt;}
.ya7{bottom:-525.190523pt;}
.ya6{bottom:-508.071019pt;}
.y12a{bottom:-493.641120pt;}
.ya5{bottom:-491.031675pt;}
.ya4{bottom:-473.912171pt;}
.y129{bottom:-473.385120pt;}
.ya3{bottom:-456.872827pt;}
.y128{bottom:-453.993120pt;}
.ya2{bottom:-439.753323pt;}
.y127{bottom:-434.505120pt;}
.ya1{bottom:-422.633819pt;}
.ya0{bottom:-405.594475pt;}
.y126{bottom:-403.497120pt;}
.y9f{bottom:-388.474971pt;}
.y9e{bottom:-371.355467pt;}
.y125{bottom:-363.369600pt;}
.y124{bottom:-344.841120pt;}
.y9d{bottom:-336.714664pt;}
.y9c{bottom:-318.074792pt;}
.y123{bottom:-306.819408pt;}
.y9b{bottom:-300.074864pt;}
.y122{bottom:-286.372195pt;}
.y9a{bottom:-282.074936pt;}
.y121{bottom:-265.828790pt;}
.y99{bottom:-264.075008pt;}
.y98{bottom:-246.155240pt;}
.y120{bottom:-245.285386pt;}
.y97{bottom:-228.155312pt;}
.y11f{bottom:-224.838173pt;}
.y96{bottom:-210.155384pt;}
.y11e{bottom:-204.294768pt;}
.y95{bottom:-192.155456pt;}
.y11d{bottom:-183.847555pt;}
.y94{bottom:-174.155528pt;}
.y11c{bottom:-163.304150pt;}
.y93{bottom:-156.155600pt;}
.y11b{bottom:-142.760746pt;}
.y92{bottom:-138.155472pt;}
.y11a{bottom:-122.311930pt;}
.y91{bottom:-119.515600pt;}
.y119{bottom:-101.768525pt;}
.y90{bottom:-101.515600pt;}
.y12f{bottom:-97.320533pt;}
.y118{bottom:-81.225120pt;}
.y8f{bottom:-77.915600pt;}
.y8e{bottom:-56.155200pt;}
.y117{bottom:-42.057120pt;}
.y8d{bottom:-24.795600pt;}
.y116{bottom:-18.057120pt;}
.y14b{bottom:-16.568533pt;}
.y8c{bottom:-4.795496pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:13.078059pt;}
.y4b{bottom:28.346667pt;}
.ye4{bottom:86.532000pt;}
.y18b{bottom:91.696000pt;}
.y1a{bottom:93.018667pt;}
.y4a{bottom:94.446667pt;}
.y19d{bottom:100.542667pt;}
.ye3{bottom:103.269333pt;}
.y18a{bottom:108.433333pt;}
.y19{bottom:108.920000pt;}
.y49{bottom:111.184000pt;}
.y80{bottom:112.020000pt;}
.y19c{bottom:116.164000pt;}
.ye2{bottom:120.006667pt;}
.y12b{bottom:120.453333pt;}
.y1d0{bottom:123.776000pt;}
.y18{bottom:124.820000pt;}
.y189{bottom:125.170667pt;}
.y48{bottom:127.921333pt;}
.y7f{bottom:128.757333pt;}
.y19b{bottom:131.785333pt;}
.ye1{bottom:136.744000pt;}
.y156{bottom:138.382667pt;}
.y1cf{bottom:139.118667pt;}
.y107{bottom:140.390667pt;}
.y17{bottom:140.720000pt;}
.y188{bottom:141.908000pt;}
.y47{bottom:144.658667pt;}
.y7e{bottom:145.494667pt;}
.yb0{bottom:147.086667pt;}
.y19a{bottom:147.406667pt;}
.ye0{bottom:153.481333pt;}
.y1ce{bottom:154.461333pt;}
.y16{bottom:156.621333pt;}
.y155{bottom:157.789333pt;}
.y187{bottom:158.645333pt;}
.y46{bottom:161.396000pt;}
.y7d{bottom:162.232000pt;}
.y88{bottom:167.024000pt;}
.y1cd{bottom:169.804000pt;}
.ydf{bottom:170.217333pt;}
.y154{bottom:172.401333pt;}
.y15{bottom:172.521333pt;}
.y186{bottom:175.382667pt;}
.y45{bottom:178.133333pt;}
.y7c{bottom:178.969333pt;}
.y1cc{bottom:185.146667pt;}
.y153{bottom:187.013333pt;}
.y14{bottom:188.421333pt;}
.y185{bottom:192.120000pt;}
.y44{bottom:194.870667pt;}
.y7b{bottom:195.706667pt;}
.yde{bottom:197.922667pt;}
.y1cb{bottom:200.488000pt;}
.y13{bottom:204.322667pt;}
.y152{bottom:208.028000pt;}
.y184{bottom:208.857333pt;}
.y150{bottom:209.449333pt;}
.ydd{bottom:210.541333pt;}
.y43{bottom:211.608000pt;}
.y7a{bottom:212.444000pt;}
.ydc{bottom:214.398667pt;}
.y1ca{bottom:215.830667pt;}
.y14f{bottom:224.061333pt;}
.y183{bottom:225.594667pt;}
.y42{bottom:228.345333pt;}
.y151{bottom:229.041333pt;}
.y79{bottom:229.181333pt;}
.ydb{bottom:229.986667pt;}
.y1c9{bottom:231.173333pt;}
.y199{bottom:233.165333pt;}
.y182{bottom:242.332000pt;}
.yda{bottom:244.598667pt;}
.y41{bottom:245.082667pt;}
.y78{bottom:245.918667pt;}
.y1c8{bottom:246.516000pt;}
.y181{bottom:259.069333pt;}
.yd9{bottom:259.210667pt;}
.y14e{bottom:259.804000pt;}
.y40{bottom:261.820000pt;}
.y1c7{bottom:261.858667pt;}
.y77{bottom:262.656000pt;}
.y198{bottom:263.053333pt;}
.y12{bottom:266.804000pt;}
.y180{bottom:275.806667pt;}
.y1c6{bottom:277.201333pt;}
.y3f{bottom:278.557333pt;}
.y76{bottom:279.393333pt;}
.y197{bottom:279.790667pt;}
.yd8{bottom:280.224000pt;}
.y11{bottom:282.705333pt;}
.y14d{bottom:286.198667pt;}
.y17f{bottom:292.544000pt;}
.y8a{bottom:294.484520pt;}
.y3e{bottom:295.294667pt;}
.y75{bottom:296.129333pt;}
.y196{bottom:296.528000pt;}
.y10{bottom:298.605333pt;}
.yd7{bottom:301.238667pt;}
.y89{bottom:303.044400pt;}
.y14c{bottom:303.294667pt;}
.y1c5{bottom:307.886667pt;}
.y17e{bottom:309.280000pt;}
.y3d{bottom:312.032000pt;}
.y74{bottom:312.866667pt;}
.y195{bottom:313.265333pt;}
.yf{bottom:314.505333pt;}
.yd6{bottom:315.850667pt;}
.y1c3{bottom:323.228000pt;}
.y1c4{bottom:323.229333pt;}
.y12c{bottom:323.232560pt;}
.y17d{bottom:326.017333pt;}
.y73{bottom:329.604000pt;}
.y194{bottom:330.002667pt;}
.yd5{bottom:330.462667pt;}
.y3c{bottom:332.754667pt;}
.ye{bottom:338.376000pt;}
.y1c2{bottom:338.570667pt;}
.y17c{bottom:342.754667pt;}
.y72{bottom:346.341333pt;}
.y193{bottom:346.740000pt;}
.yd4{bottom:351.476000pt;}
.y1c1{bottom:353.913333pt;}
.yd{bottom:354.277333pt;}
.y17b{bottom:359.492000pt;}
.y71{bottom:363.078667pt;}
.y192{bottom:363.477333pt;}
.y115{bottom:368.822400pt;}
.y1c0{bottom:369.256000pt;}
.yc{bottom:370.177333pt;}
.y17a{bottom:376.229333pt;}
.y70{bottom:379.816000pt;}
.y191{bottom:380.214667pt;}
.yd3{bottom:382.238667pt;}
.y1bf{bottom:384.598667pt;}
.y114{bottom:391.382880pt;}
.y179{bottom:392.966667pt;}
.yb{bottom:395.376000pt;}
.y6f{bottom:396.553333pt;}
.y190{bottom:396.952000pt;}
.y3b{bottom:398.144000pt;}
.y1be{bottom:399.941333pt;}
.yd2{bottom:407.250667pt;}
.y113{bottom:408.086966pt;}
.y178{bottom:409.704000pt;}
.ya{bottom:411.276000pt;}
.y6e{bottom:413.290667pt;}
.y18f{bottom:413.689333pt;}
.y1bd{bottom:415.284000pt;}
.y3a{bottom:415.438667pt;}
.yd1{bottom:423.988000pt;}
.y177{bottom:426.441333pt;}
.y112{bottom:429.686880pt;}
.y6d{bottom:430.028000pt;}
.y18e{bottom:430.426667pt;}
.y1bc{bottom:430.626667pt;}
.y9{bottom:435.146667pt;}
.yd0{bottom:440.725333pt;}
.y176{bottom:443.178667pt;}
.y1bb{bottom:445.969333pt;}
.y87{bottom:446.765333pt;}
.y18d{bottom:447.164000pt;}
.y39{bottom:448.674667pt;}
.y6c{bottom:450.750667pt;}
.y8{bottom:451.048000pt;}
.y111{bottom:451.286880pt;}
.ycf{bottom:457.462667pt;}
.y175{bottom:459.916000pt;}
.y1ba{bottom:461.310667pt;}
.y86{bottom:463.502667pt;}
.y18c{bottom:463.901333pt;}
.y38{bottom:465.969333pt;}
.y7{bottom:466.948000pt;}
.y110{bottom:473.655120pt;}
.yce{bottom:474.200000pt;}
.y174{bottom:476.653333pt;}
.y106{bottom:480.036000pt;}
.y85{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.y37{bottom:483.264000pt;}
.ycd{bottom:490.937333pt;}
.y1b9{bottom:491.996000pt;}
.y104{bottom:492.654667pt;}
.y173{bottom:493.390667pt;}
.y10f{bottom:496.022966pt;}
.y105{bottom:496.512000pt;}
.y84{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.y36{bottom:500.560000pt;}
.y1b8{bottom:507.338667pt;}
.ycc{bottom:507.674667pt;}
.y172{bottom:510.128000pt;}
.y103{bottom:510.904000pt;}
.y83{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.y10e{bottom:517.622880pt;}
.y35{bottom:517.854667pt;}
.y102{bottom:521.530667pt;}
.y1b7{bottom:522.681333pt;}
.ycb{bottom:524.410667pt;}
.y171{bottom:526.865333pt;}
.y82{bottom:530.452000pt;}
.y3{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y34{bottom:535.149333pt;}
.y1b6{bottom:538.024000pt;}
.y101{bottom:538.560000pt;}
.y10d{bottom:539.222880pt;}
.yca{bottom:541.148000pt;}
.y170{bottom:543.602667pt;}
.y100{bottom:543.873333pt;}
.y2{bottom:546.450667pt;}
.y67{bottom:547.588000pt;}
.y81{bottom:551.174667pt;}
.y33{bottom:552.445333pt;}
.y1b5{bottom:553.366667pt;}
.yc9{bottom:557.885333pt;}
.yff{bottom:559.813333pt;}
.y16f{bottom:560.340000pt;}
.y10c{bottom:561.590880pt;}
.y1{bottom:562.350667pt;}
.y66{bottom:564.325333pt;}
.yfe{bottom:565.126667pt;}
.y1b4{bottom:568.709333pt;}
.y32{bottom:569.740000pt;}
.yc8{bottom:574.622667pt;}
.y16e{bottom:577.077333pt;}
.y65{bottom:581.062667pt;}
.yfd{bottom:581.068000pt;}
.y1b2{bottom:584.050667pt;}
.y1b3{bottom:584.052000pt;}
.y31{bottom:587.036000pt;}
.yc7{bottom:591.360000pt;}
.yfc{bottom:591.694667pt;}
.y10b{bottom:593.654880pt;}
.y16d{bottom:593.814667pt;}
.y64{bottom:597.800000pt;}
.y1b1{bottom:599.393333pt;}
.yfb{bottom:602.985333pt;}
.y30{bottom:604.330667pt;}
.yc6{bottom:608.097333pt;}
.y16c{bottom:610.552000pt;}
.yfa{bottom:613.612000pt;}
.y63{bottom:614.537333pt;}
.y1b0{bottom:614.736000pt;}
.y2f{bottom:621.625333pt;}
.yf9{bottom:624.238667pt;}
.yc5{bottom:624.834667pt;}
.y16b{bottom:627.289333pt;}
.yf8{bottom:629.552000pt;}
.y1af{bottom:630.078667pt;}
.y62{bottom:631.274667pt;}
.y2e{bottom:638.921333pt;}
.yc4{bottom:641.572000pt;}
.y16a{bottom:644.026667pt;}
.y1ae{bottom:645.421333pt;}
.yf7{bottom:645.492000pt;}
.y61{bottom:648.012000pt;}
.y109{bottom:650.391024pt;}
.yf6{bottom:650.805333pt;}
.y2d{bottom:656.216000pt;}
.yc3{bottom:658.309333pt;}
.y1e4{bottom:660.564000pt;}
.y108{bottom:660.662880pt;}
.y169{bottom:660.764000pt;}
.y60{bottom:664.749333pt;}
.yf5{bottom:666.746667pt;}
.yf4{bottom:672.060000pt;}
.y2c{bottom:673.510667pt;}
.yc2{bottom:675.046667pt;}
.y1e3{bottom:675.906667pt;}
.y1ad{bottom:676.106667pt;}
.y168{bottom:677.501333pt;}
.y5f{bottom:681.485333pt;}
.yf3{bottom:688.000000pt;}
.y2b{bottom:690.806667pt;}
.y1e2{bottom:691.249333pt;}
.y1ac{bottom:691.449333pt;}
.yc1{bottom:691.784000pt;}
.yf2{bottom:693.313333pt;}
.y167{bottom:694.238667pt;}
.y5e{bottom:698.222667pt;}
.y14a{bottom:699.447467pt;}
.y1e1{bottom:706.592000pt;}
.y1ab{bottom:706.792000pt;}
.yf1{bottom:709.253333pt;}
.y166{bottom:710.976000pt;}
.yf0{bottom:714.566667pt;}
.y5d{bottom:714.960000pt;}
.y149{bottom:720.951467pt;}
.y1e0{bottom:721.934667pt;}
.y1aa{bottom:722.133333pt;}
.y2a{bottom:725.104000pt;}
.y165{bottom:727.713333pt;}
.yef{bottom:730.506667pt;}
.y5c{bottom:731.697333pt;}
.yc0{bottom:732.194667pt;}
.yee{bottom:735.820000pt;}
.y1df{bottom:737.277333pt;}
.y1a9{bottom:737.476000pt;}
.y29{bottom:739.450667pt;}
.y164{bottom:744.450667pt;}
.y148{bottom:744.583467pt;}
.y5b{bottom:748.434667pt;}
.yed{bottom:751.761333pt;}
.y1de{bottom:752.620000pt;}
.ybf{bottom:753.209333pt;}
.y28{bottom:753.797333pt;}
.y1a8{bottom:756.804000pt;}
.y163{bottom:761.186667pt;}
.yec{bottom:763.052000pt;}
.y5a{bottom:765.172000pt;}
.y147{bottom:767.319467pt;}
.ybe{bottom:767.821333pt;}
.y1dd{bottom:767.961333pt;}
.y27{bottom:772.001333pt;}
.yeb{bottom:773.678667pt;}
.y162{bottom:777.924000pt;}
.y59{bottom:781.909333pt;}
.ybd{bottom:782.432000pt;}
.y26{bottom:782.489333pt;}
.y1dc{bottom:783.304000pt;}
.y1a7{bottom:786.692000pt;}
.yea{bottom:790.708000pt;}
.y145{bottom:790.839467pt;}
.y161{bottom:794.661333pt;}
.ybc{bottom:797.044000pt;}
.y58{bottom:798.646667pt;}
.y25{bottom:800.693333pt;}
.y144{bottom:802.263467pt;}
.y1a6{bottom:802.313333pt;}
.ye9{bottom:807.736000pt;}
.y24{bottom:811.182667pt;}
.y160{bottom:811.398667pt;}
.ybb{bottom:811.656000pt;}
.y146{bottom:813.575467pt;}
.y1db{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.y1a5{bottom:817.934667pt;}
.ye8{bottom:818.362667pt;}
.y23{bottom:825.528000pt;}
.yba{bottom:826.268000pt;}
.y15f{bottom:828.136000pt;}
.ye7{bottom:828.990667pt;}
.y1da{bottom:829.332000pt;}
.y22{bottom:829.385333pt;}
.y56{bottom:832.121333pt;}
.y142{bottom:836.199467pt;}
.yb9{bottom:840.880000pt;}
.y1a4{bottom:841.526667pt;}
.y1d9{bottom:844.674667pt;}
.y15e{bottom:844.873333pt;}
.y141{bottom:847.511467pt;}
.y55{bottom:848.858667pt;}
.yb8{bottom:855.492000pt;}
.ye6{bottom:856.964000pt;}
.y1a3{bottom:857.148000pt;}
.y143{bottom:858.935467pt;}
.y1d8{bottom:860.017333pt;}
.y15d{bottom:861.610667pt;}
.y54{bottom:865.596000pt;}
.y21{bottom:869.098667pt;}
.yb7{bottom:870.104000pt;}
.ye5{bottom:874.058667pt;}
.y1d7{bottom:875.360000pt;}
.y15c{bottom:878.348000pt;}
.y1a2{bottom:880.740000pt;}
.y140{bottom:881.559467pt;}
.y53{bottom:882.333333pt;}
.yb6{bottom:884.716000pt;}
.y20{bottom:885.836000pt;}
.y1d6{bottom:890.702667pt;}
.y15b{bottom:895.085333pt;}
.y1a1{bottom:896.361333pt;}
.y52{bottom:899.070667pt;}
.yb5{bottom:899.328000pt;}
.y13f{bottom:904.183467pt;}
.y1d5{bottom:906.044000pt;}
.y15a{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.y1a0{bottom:919.952000pt;}
.yb4{bottom:920.341333pt;}
.y1f{bottom:921.320000pt;}
.y1d4{bottom:921.386667pt;}
.y13e{bottom:927.815467pt;}
.y159{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.yb3{bottom:934.953333pt;}
.y1d3{bottom:936.729333pt;}
.y19f{bottom:943.544000pt;}
.y158{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y13d{bottom:950.439467pt;}
.y1d2{bottom:952.072000pt;}
.yb2{bottom:955.966667pt;}
.y157{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y19e{bottom:967.136000pt;}
.y1d1{bottom:967.414667pt;}
.y1d{bottom:971.530667pt;}
.y13c{bottom:973.175467pt;}
.y4d{bottom:982.757333pt;}
.yb1{bottom:984.073333pt;}
.y13b{bottom:995.799467pt;}
.y1b{bottom:1010.186667pt;}
.y13a{bottom:1018.423467pt;}
.y139{bottom:1029.847467pt;}
.y4c{bottom:1038.548000pt;}
.y138{bottom:1063.783467pt;}
.y137{bottom:1075.095467pt;}
.y136{bottom:1109.143467pt;}
.y135{bottom:1131.767467pt;}
.y134{bottom:1154.503467pt;}
.y133{bottom:1177.127467pt;}
.y132{bottom:1199.751467pt;}
.y131{bottom:1223.383467pt;}
.y130{bottom:1246.007467pt;}
.y12e{bottom:1313.991635pt;}
.y12d{bottom:1325.975467pt;}
.hb{height:28.947524pt;}
.h1b{height:28.979405pt;}
.h10{height:31.691456pt;}
.h3{height:33.771789pt;}
.h2{height:33.808982pt;}
.h13{height:35.212691pt;}
.h24{height:37.450125pt;}
.hc{height:38.596538pt;}
.hd{height:38.639045pt;}
.h7{height:38.947124pt;}
.h16{height:39.588281pt;}
.h4{height:42.065122pt;}
.hf{height:43.421286pt;}
.he{height:43.469107pt;}
.h2f{height:43.660390pt;}
.h18{height:44.648438pt;}
.h5{height:44.743362pt;}
.h21{height:47.505937pt;}
.h12{height:48.245551pt;}
.h11{height:48.298685pt;}
.h14{height:48.511220pt;}
.h17{height:49.708594pt;}
.h1a{height:51.168982pt;}
.h23{height:53.578125pt;}
.h2e{height:54.087953pt;}
.h1d{height:55.025122pt;}
.h1f{height:55.030455pt;}
.h26{height:55.423594pt;}
.h9{height:55.992450pt;}
.ha{height:59.456018pt;}
.h22{height:59.650312pt;}
.h28{height:62.507812pt;}
.h19{height:69.550866pt;}
.h27{height:69.592031pt;}
.h1e{height:76.278455pt;}
.h1c{height:76.315649pt;}
.h8{height:86.938214pt;}
.h6{height:89.459840pt;}
.h29{height:107.755813pt;}
.h2d{height:107.756559pt;}
.h2b{height:108.203812pt;}
.h2a{height:153.003812pt;}
.h2c{height:153.451812pt;}
.h15{height:253.421333pt;}
.h20{height:323.366400pt;}
.h25{height:672.813307pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:164.457501pt;}
.w4{width:348.707200pt;}
.w5{width:396.681600pt;}
.w3{width:434.194667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x75{left:-246.400000pt;}
.x80{left:-242.032000pt;}
.x66{left:-239.916800pt;}
.x70{left:-238.668800pt;}
.x84{left:-236.544000pt;}
.x8e{left:-233.968000pt;}
.x76{left:-230.048000pt;}
.x78{left:-226.576000pt;}
.x83{left:-222.432000pt;}
.x6a{left:-220.812944pt;}
.x72{left:-219.084800pt;}
.x81{left:-217.728000pt;}
.x82{left:-214.480000pt;}
.x8d{left:-212.352000pt;}
.x77{left:-210.000000pt;}
.x69{left:-208.716800pt;}
.x6b{left:-207.468800pt;}
.x86{left:-205.632000pt;}
.x85{left:-203.392000pt;}
.x71{left:-200.652800pt;}
.x7a{left:-196.112000pt;}
.x8f{left:-187.824000pt;}
.x2c{left:-179.234667pt;}
.x74{left:-174.060800pt;}
.x79{left:-171.584000pt;}
.x6c{left:-150.157606pt;}
.x68{left:-139.500800pt;}
.x90{left:-78.064000pt;}
.x7c{left:-74.480000pt;}
.x7b{left:-66.864000pt;}
.x91{left:-65.408000pt;}
.x73{left:-51.180800pt;}
.x67{left:-31.308800pt;}
.x92{left:-9.520000pt;}
.x2d{left:-5.394667pt;}
.x0{left:0.000000pt;}
.x6e{left:2.675200pt;}
.x3b{left:22.925333pt;}
.x1{left:47.621333pt;}
.x3{left:50.824949pt;}
.x4a{left:56.344000pt;}
.x54{left:59.038667pt;}
.x57{left:60.512000pt;}
.x56{left:61.446667pt;}
.x52{left:62.925333pt;}
.x38{left:65.724809pt;}
.x51{left:67.012000pt;}
.x5d{left:68.834667pt;}
.x55{left:69.996000pt;}
.x3a{left:72.364749pt;}
.x4c{left:74.425333pt;}
.x4d{left:75.794667pt;}
.x36{left:79.804634pt;}
.x5f{left:82.242667pt;}
.x32{left:83.324924pt;}
.x9d{left:89.465333pt;}
.x9e{left:95.801333pt;}
.x9c{left:97.570667pt;}
.x31{left:99.325086pt;}
.x35{left:102.605056pt;}
.x37{left:104.443994pt;}
.x33{left:106.364395pt;}
.x34{left:108.924484pt;}
.x30{left:111.165333pt;}
.x2f{left:112.365333pt;}
.x39{left:116.524625pt;}
.x4e{left:117.882667pt;}
.x2{left:119.061333pt;}
.x87{left:131.264000pt;}
.x93{left:140.336000pt;}
.x2e{left:146.205333pt;}
.x60{left:151.652000pt;}
.x58{left:155.138667pt;}
.x53{left:159.653333pt;}
.x6f{left:178.739200pt;}
.x94{left:196.224000pt;}
.x7d{left:199.808000pt;}
.x61{left:205.321333pt;}
.x88{left:207.536000pt;}
.x5e{left:208.808000pt;}
.x7{left:220.912000pt;}
.x5{left:221.857333pt;}
.x49{left:226.482667pt;}
.x4f{left:235.081333pt;}
.xcb{left:237.052000pt;}
.x6{left:239.790667pt;}
.x4{left:241.174667pt;}
.xcc{left:247.977333pt;}
.xe{left:250.204000pt;}
.x2b{left:260.220000pt;}
.x19{left:262.096000pt;}
.x1a{left:268.737333pt;}
.x50{left:270.268000pt;}
.x9b{left:272.734667pt;}
.x8{left:273.888000pt;}
.x25{left:275.006667pt;}
.x45{left:280.736000pt;}
.xd{left:286.096000pt;}
.x43{left:293.492000pt;}
.x40{left:296.564000pt;}
.x62{left:303.060000pt;}
.xf{left:306.549333pt;}
.x3f{left:310.205333pt;}
.x3e{left:311.406667pt;}
.x10{left:313.190667pt;}
.x44{left:315.602667pt;}
.x41{left:317.044000pt;}
.x42{left:319.338667pt;}
.x3d{left:322.434667pt;}
.xc8{left:325.260000pt;}
.x46{left:326.158667pt;}
.xb8{left:327.312000pt;}
.xc9{left:328.628000pt;}
.xd0{left:331.028000pt;}
.xd1{left:335.193333pt;}
.x89{left:336.672000pt;}
.x48{left:341.406667pt;}
.x95{left:345.744000pt;}
.xcd{left:347.284000pt;}
.xab{left:355.342667pt;}
.x63{left:356.729333pt;}
.xca{left:358.562667pt;}
.x59{left:360.216000pt;}
.x26{left:364.425333pt;}
.x9f{left:366.378667pt;}
.x6d{left:371.891200pt;}
.xa0{left:373.020000pt;}
.xcf{left:383.834667pt;}
.x9{left:387.222667pt;}
.x4b{left:388.997333pt;}
.xa{left:397.056000pt;}
.x96{left:400.960000pt;}
.x7e{left:404.544000pt;}
.x8a{left:412.160000pt;}
.x97{left:413.616000pt;}
.x11{left:435.766667pt;}
.x12{left:442.409333pt;}
.x64{left:454.466667pt;}
.xba{left:456.366667pt;}
.x5c{left:457.953333pt;}
.xa4{left:467.104000pt;}
.xbb{left:469.650667pt;}
.xb1{left:471.252000pt;}
.xc2{left:478.166667pt;}
.xa5{left:480.388000pt;}
.xa8{left:482.780000pt;}
.xa6{left:483.774667pt;}
.xc3{left:491.449333pt;}
.xa9{left:493.705333pt;}
.xc4{left:494.806667pt;}
.xa7{left:497.058667pt;}
.xaa{left:504.942667pt;}
.x27{left:508.372000pt;}
.x5a{left:511.622667pt;}
.x28{left:519.297333pt;}
.x20{left:524.349333pt;}
.xae{left:532.730667pt;}
.x21{left:535.274667pt;}
.x8b{left:540.288000pt;}
.xaf{left:546.013333pt;}
.x98{left:549.360000pt;}
.x3c{left:553.644000pt;}
.xa1{left:559.893333pt;}
.xbc{left:561.058667pt;}
.x29{left:562.257333pt;}
.x2a{left:573.182667pt;}
.xbd{left:574.342667pt;}
.x65{left:579.325333pt;}
.xbe{left:581.110667pt;}
.x15{left:586.490667pt;}
.x16{left:593.133333pt;}
.xbf{left:594.394667pt;}
.x17{left:596.388000pt;}
.x18{left:603.029333pt;}
.x99{left:604.575813pt;}
.x5b{left:606.961333pt;}
.x7f{left:608.160000pt;}
.x8c{left:615.775813pt;}
.x9a{left:617.232000pt;}
.x47{left:623.618667pt;}
.x1b{left:625.304000pt;}
.xb0{left:629.028000pt;}
.xb9{left:630.993333pt;}
.x1c{left:631.945333pt;}
.xb{left:634.145333pt;}
.x1d{left:638.720000pt;}
.x22{left:641.804000pt;}
.xc{left:643.978667pt;}
.x24{left:645.234667pt;}
.x23{left:648.445333pt;}
.xc5{left:650.029333pt;}
.x1e{left:652.004000pt;}
.xd5{left:656.768000pt;}
.xa2{left:662.222667pt;}
.xc6{left:663.312000pt;}
.xc7{left:666.700000pt;}
.xd4{left:669.929333pt;}
.xa3{left:675.506667pt;}
.xac{left:680.413333pt;}
.xd7{left:684.844000pt;}
.xad{left:691.338667pt;}
.xb4{left:693.030667pt;}
.xb2{left:700.692000pt;}
.xc0{left:702.465333pt;}
.xb5{left:706.314667pt;}
.xd8{left:708.753333pt;}
.xb6{left:709.701333pt;}
.xc1{left:715.749333pt;}
.xd2{left:720.341333pt;}
.xb7{left:722.985333pt;}
.xd6{left:725.874667pt;}
.x1f{left:726.842667pt;}
.x13{left:733.794667pt;}
.xce{left:735.000000pt;}
.x14{left:740.436000pt;}
.xb3{left:742.694667pt;}
.xd3{left:744.250667pt;}
}




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