
    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_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_2d63500d0025c2d114889190.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c04fa3081810549bf20ab80.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_f973ba962cd92d38d2db9bed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_1785c00e4e8e22687fffca6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_c3368da0469c080c0c653d6a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9f616fb86288e0d5ec39022a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_d17a8f9c59b95368181f91c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003418;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_5fcb3cde769196b7facc70be.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_059f3dfaa980c4335e1696c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909180;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_9f616fb86288e0d5ec39022a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_f46114e00969a2c6042793c1.woff2')format("woff");}.fff{font-family:fff;line-height:1.003418;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_28c7463e030123dc13b7f68e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_9f616fb86288e0d5ec39022a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_de75e048ecb05628eba46289.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_27e121f21fd7b56a03456a3e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_9f616fb86288e0d5ec39022a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_939ebe427c65272fd32bea9a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;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_650d2d7394a491964ec058b3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.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);}
.m2c{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);}
.m11{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);}
.m1b{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);}
.m1{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);}
.m1e{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);}
.m9{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);}
.m17{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);}
.m24{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);}
.m20{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);}
.m2a{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);}
.m2{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);}
.m1c{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);}
.m8{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);}
.m29{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);}
.m28{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);}
.m7{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);}
.m2b{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);}
.m16{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);}
.m13{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);}
.m25{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);}
.m27{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);}
.m26{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);}
.mc{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);}
.m1d{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);}
.mf{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);}
.m1f{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);}
.m10{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);}
.m14{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);}
.m21{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);}
.m22{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);}
.m18{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);}
.m5{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);}
.m3{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);}
.m15{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);}
.ma{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);}
.me{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);}
.m1a{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);}
.m19{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);}
.mb{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);}
.m12{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);}
.m23{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);}
.m4{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:40.677192px;}
.ls5a{letter-spacing:-0.246492px;}
.ls21{letter-spacing:-0.222444px;}
.ls5e{letter-spacing:-0.192384px;}
.ls25{letter-spacing:-0.174348px;}
.ls22{letter-spacing:-0.162324px;}
.ls5c{letter-spacing:-0.150300px;}
.ls27{letter-spacing:-0.144288px;}
.ls2b{letter-spacing:-0.132264px;}
.ls26{letter-spacing:-0.126252px;}
.ls2a{letter-spacing:-0.120240px;}
.ls2e{letter-spacing:-0.114228px;}
.ls56{letter-spacing:-0.113627px;}
.ls5f{letter-spacing:-0.108216px;}
.ls28{letter-spacing:-0.102204px;}
.ls3e{letter-spacing:-0.096192px;}
.ls4c{letter-spacing:-0.090493px;}
.ls5d{letter-spacing:-0.090180px;}
.ls4d{letter-spacing:-0.088376px;}
.ls1e{letter-spacing:-0.086184px;}
.ls2c{letter-spacing:-0.084168px;}
.ls29{letter-spacing:-0.078156px;}
.ls2f{letter-spacing:-0.072144px;}
.ls3a{letter-spacing:-0.066132px;}
.ls5b{letter-spacing:-0.060120px;}
.ls57{letter-spacing:-0.056813px;}
.ls3b{letter-spacing:-0.054108px;}
.ls23{letter-spacing:-0.054000px;}
.ls55{letter-spacing:-0.044188px;}
.ls1f{letter-spacing:-0.042084px;}
.ls50{letter-spacing:-0.037876px;}
.ls24{letter-spacing:-0.030060px;}
.ls30{letter-spacing:-0.024048px;}
.ls4e{letter-spacing:-0.018938px;}
.ls20{letter-spacing:-0.018036px;}
.ls52{letter-spacing:-0.012625px;}
.ls3d{letter-spacing:-0.012024px;}
.ls54{letter-spacing:-0.011340px;}
.ls4f{letter-spacing:-0.006313px;}
.ls3c{letter-spacing:-0.006012px;}
.ls7{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000018px;}
.lsa{letter-spacing:0.000038px;}
.ls72{letter-spacing:0.000503px;}
.lsb{letter-spacing:0.000566px;}
.ls6d{letter-spacing:0.000658px;}
.ls62{letter-spacing:0.000699px;}
.ls65{letter-spacing:0.000741px;}
.ls68{letter-spacing:0.000800px;}
.ls69{letter-spacing:0.001155px;}
.ls67{letter-spacing:0.002544px;}
.ls6f{letter-spacing:0.002896px;}
.ls71{letter-spacing:0.004800px;}
.ls17{letter-spacing:0.005400px;}
.ls38{letter-spacing:0.006012px;}
.ls49{letter-spacing:0.006313px;}
.ls34{letter-spacing:0.012024px;}
.ls44{letter-spacing:0.012625px;}
.ls59{letter-spacing:0.016200px;}
.ls32{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.018938px;}
.ls10{letter-spacing:0.024048px;}
.ls43{letter-spacing:0.025250px;}
.ls36{letter-spacing:0.027000px;}
.ls13{letter-spacing:0.030060px;}
.ls14{letter-spacing:0.032400px;}
.ls46{letter-spacing:0.034020px;}
.ls33{letter-spacing:0.036072px;}
.lse{letter-spacing:0.038304px;}
.ls41{letter-spacing:0.040219px;}
.ls35{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.043092px;}
.ls18{letter-spacing:0.043200px;}
.ls4b{letter-spacing:0.044188px;}
.ls3f{letter-spacing:0.045247px;}
.ls11{letter-spacing:0.048096px;}
.ls48{letter-spacing:0.050501px;}
.ls12{letter-spacing:0.054108px;}
.ls16{letter-spacing:0.060120px;}
.ls47{letter-spacing:0.063126px;}
.ls1d{letter-spacing:0.066132px;}
.ls51{letter-spacing:0.069439px;}
.ls19{letter-spacing:0.072144px;}
.ls39{letter-spacing:0.090180px;}
.ls15{letter-spacing:0.091800px;}
.ls45{letter-spacing:0.094689px;}
.ls37{letter-spacing:0.096192px;}
.ls31{letter-spacing:0.126252px;}
.ls53{letter-spacing:0.157815px;}
.lsf{letter-spacing:0.181944px;}
.ls42{letter-spacing:0.191041px;}
.lsd{letter-spacing:0.191520px;}
.ls40{letter-spacing:0.201096px;}
.ls8{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls58{letter-spacing:2.367225px;}
.ls0{letter-spacing:2.989200px;}
.ls3{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls6e{letter-spacing:13.321574px;}
.ls6a{letter-spacing:13.323760px;}
.ls70{letter-spacing:13.377781px;}
.ls6c{letter-spacing:13.409584px;}
.ls64{letter-spacing:13.415106px;}
.ls61{letter-spacing:13.448400px;}
.ls63{letter-spacing:13.454400px;}
.ls1{letter-spacing:14.942725px;}
.ls9{letter-spacing:14.943900px;}
.ls66{letter-spacing:15.209224px;}
.ls6b{letter-spacing:17.715106px;}
.ls1a{letter-spacing:46.556947px;}
.ls1b{letter-spacing:60.962698px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls1c{letter-spacing:75.728324px;}
.ls2d{letter-spacing:574.164036px;}
.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;}
}
.ws1{word-spacing:-14.943900px;}
.wse3{word-spacing:-13.449600px;}
.wse4{word-spacing:-12.769596px;}
.ws74{word-spacing:-12.161520px;}
.ws33{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.wsdb{word-spacing:-3.541068px;}
.wsdc{word-spacing:-3.192372px;}
.wsa1{word-spacing:-3.168107px;}
.wsc2{word-spacing:-3.162312px;}
.wsc3{word-spacing:-3.150288px;}
.ws4b{word-spacing:-2.988780px;}
.wsc8{word-spacing:-2.819628px;}
.ws23{word-spacing:-2.809453px;}
.wsc9{word-spacing:-2.801592px;}
.ws189{word-spacing:-2.797517px;}
.ws117{word-spacing:-2.789568px;}
.ws116{word-spacing:-2.771532px;}
.ws178{word-spacing:-2.689920px;}
.ws43{word-spacing:-2.630126px;}
.ws27{word-spacing:-2.510575px;}
.wsce{word-spacing:-2.476944px;}
.ws7f{word-spacing:-2.470932px;}
.wsa7{word-spacing:-2.450800px;}
.ws7a{word-spacing:-2.446884px;}
.wsd1{word-spacing:-2.410812px;}
.ws80{word-spacing:-2.404800px;}
.ws35{word-spacing:-2.391024px;}
.wsfb{word-spacing:-2.215723px;}
.wsfa{word-spacing:-2.158909px;}
.ws88{word-spacing:-2.122236px;}
.ws179{word-spacing:-2.098138px;}
.ws40{word-spacing:-2.092146px;}
.ws79{word-spacing:-2.020032px;}
.ws5b{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws72{word-spacing:-1.793268px;}
.ws87{word-spacing:-1.677348px;}
.ws6e{word-spacing:-1.613941px;}
.ws2d{word-spacing:-1.554166px;}
.ws148{word-spacing:-1.452557px;}
.ws136{word-spacing:-1.388772px;}
.ws11b{word-spacing:-1.328652px;}
.ws6{word-spacing:-1.322630px;}
.ws6d{word-spacing:-1.255288px;}
.ws13c{word-spacing:-1.195512px;}
.ws15f{word-spacing:-1.129766px;}
.wsa5{word-spacing:-1.075961px;}
.wsa8{word-spacing:-1.016185px;}
.wscd{word-spacing:-1.004004px;}
.ws120{word-spacing:-0.985968px;}
.ws112{word-spacing:-0.956410px;}
.ws140{word-spacing:-0.896634px;}
.wscc{word-spacing:-0.871740px;}
.ws10e{word-spacing:-0.836858px;}
.ws121{word-spacing:-0.835668px;}
.ws37{word-spacing:-0.777083px;}
.ws9e{word-spacing:-0.717307px;}
.wsd7{word-spacing:-0.667332px;}
.ws4e{word-spacing:-0.657532px;}
.ws100{word-spacing:-0.650198px;}
.ws48{word-spacing:-0.597756px;}
.ws171{word-spacing:-0.591782px;}
.ws101{word-spacing:-0.542884px;}
.ws110{word-spacing:-0.537980px;}
.ws18c{word-spacing:-0.484186px;}
.ws4f{word-spacing:-0.478205px;}
.ws67{word-spacing:-0.418429px;}
.ws177{word-spacing:-0.376589px;}
.ws113{word-spacing:-0.358654px;}
.ws8d{word-spacing:-0.336672px;}
.ws12c{word-spacing:-0.330660px;}
.ws16c{word-spacing:-0.322790px;}
.ws132{word-spacing:-0.318636px;}
.wsd8{word-spacing:-0.312624px;}
.ws3a{word-spacing:-0.298878px;}
.ws105{word-spacing:-0.296692px;}
.ws8e{word-spacing:-0.294588px;}
.wsf9{word-spacing:-0.284067px;}
.wse6{word-spacing:-0.281534px;}
.ws17f{word-spacing:-0.268992px;}
.ws78{word-spacing:-0.268128px;}
.wsf0{word-spacing:-0.265129px;}
.ws122{word-spacing:-0.258516px;}
.ws31{word-spacing:-0.239102px;}
.ws147{word-spacing:-0.215194px;}
.wsf8{word-spacing:-0.189378px;}
.ws30{word-spacing:-0.179327px;}
.ws92{word-spacing:-0.162324px;}
.ws1b{word-spacing:-0.161395px;}
.ws99{word-spacing:-0.150300px;}
.ws95{word-spacing:-0.144288px;}
.ws90{word-spacing:-0.138276px;}
.ws96{word-spacing:-0.132264px;}
.wse5{word-spacing:-0.130712px;}
.ws77{word-spacing:-0.124488px;}
.ws36{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws137{word-spacing:-0.102204px;}
.ws2{word-spacing:-0.059776px;}
.ws71{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws9d{word-spacing:-0.030060px;}
.ws176{word-spacing:-0.026477px;}
.ws16a{word-spacing:-0.008918px;}
.ws14c{word-spacing:-0.005453px;}
.ws32{word-spacing:-0.003082px;}
.ws15c{word-spacing:-0.002890px;}
.wsa{word-spacing:-0.002861px;}
.ws3{word-spacing:-0.002641px;}
.ws180{word-spacing:-0.002179px;}
.ws0{word-spacing:0.000000px;}
.ws150{word-spacing:0.000029px;}
.ws4{word-spacing:0.001792px;}
.ws8f{word-spacing:0.030060px;}
.ws8a{word-spacing:0.036072px;}
.ws7d{word-spacing:0.042084px;}
.ws129{word-spacing:0.048096px;}
.ws20{word-spacing:0.053798px;}
.wsb4{word-spacing:0.054108px;}
.ws2c{word-spacing:0.059776px;}
.wsb6{word-spacing:0.060120px;}
.ws118{word-spacing:0.078156px;}
.wsbd{word-spacing:0.084168px;}
.ws85{word-spacing:0.091800px;}
.ws89{word-spacing:0.096192px;}
.wsbc{word-spacing:0.102204px;}
.ws1a{word-spacing:0.107597px;}
.ws11a{word-spacing:0.108216px;}
.wsba{word-spacing:0.114228px;}
.ws24{word-spacing:0.119551px;}
.ws9b{word-spacing:0.120240px;}
.ws8c{word-spacing:0.140400px;}
.ws84{word-spacing:0.151200px;}
.wsbb{word-spacing:0.156600px;}
.wsf2{word-spacing:0.158760px;}
.ws1f{word-spacing:0.161395px;}
.ws119{word-spacing:0.167400px;}
.ws9a{word-spacing:0.168336px;}
.ws94{word-spacing:0.174348px;}
.ws8b{word-spacing:0.178200px;}
.ws25{word-spacing:0.179327px;}
.ws98{word-spacing:0.180360px;}
.ws93{word-spacing:0.198396px;}
.wsf3{word-spacing:0.204120px;}
.ws133{word-spacing:0.204408px;}
.wsd{word-spacing:0.209214px;}
.ws9c{word-spacing:0.210420px;}
.ws19{word-spacing:0.215194px;}
.ws86{word-spacing:0.237600px;}
.ws2e{word-spacing:0.239102px;}
.ws91{word-spacing:0.240480px;}
.ws97{word-spacing:0.258516px;}
.ws14d{word-spacing:0.268992px;}
.wsf{word-spacing:0.292900px;}
.ws4a{word-spacing:0.298878px;}
.ws14a{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.ws10f{word-spacing:0.418429px;}
.ws11c{word-spacing:0.420840px;}
.wsd2{word-spacing:0.474948px;}
.ws54{word-spacing:0.478205px;}
.ws1c{word-spacing:0.484186px;}
.wsf7{word-spacing:0.486070px;}
.wsd3{word-spacing:0.498996px;}
.ws2a{word-spacing:0.537980px;}
.ws15d{word-spacing:0.537984px;}
.ws5c{word-spacing:0.597756px;}
.ws4c{word-spacing:0.657532px;}
.wsc0{word-spacing:0.721440px;}
.ws17e{word-spacing:0.753178px;}
.wsc6{word-spacing:0.763524px;}
.ws53{word-spacing:0.777083px;}
.wsc7{word-spacing:0.829656px;}
.ws10d{word-spacing:0.836858px;}
.ws107{word-spacing:0.852201px;}
.wsc1{word-spacing:0.871740px;}
.ws108{word-spacing:0.915327px;}
.ws4d{word-spacing:0.956410px;}
.ws11e{word-spacing:0.961920px;}
.ws17c{word-spacing:0.968371px;}
.ws11d{word-spacing:1.064124px;}
.ws56{word-spacing:1.075961px;}
.ws157{word-spacing:1.075968px;}
.ws6b{word-spacing:1.135736px;}
.ws61{word-spacing:1.255288px;}
.ws125{word-spacing:1.268532px;}
.ws124{word-spacing:1.292580px;}
.ws158{word-spacing:1.344960px;}
.ws141{word-spacing:1.374839px;}
.ws18a{word-spacing:1.398758px;}
.ws38{word-spacing:1.434614px;}
.wscf{word-spacing:1.478952px;}
.ws123{word-spacing:1.484964px;}
.wsa0{word-spacing:1.494390px;}
.wsb0{word-spacing:1.503000px;}
.ws60{word-spacing:1.554166px;}
.ws16b{word-spacing:1.560154px;}
.ws10b{word-spacing:1.571837px;}
.ws5a{word-spacing:1.613941px;}
.ws10c{word-spacing:1.616026px;}
.ws106{word-spacing:1.628651px;}
.ws45{word-spacing:1.673717px;}
.ws15a{word-spacing:1.775347px;}
.ws26{word-spacing:1.793268px;}
.ws49{word-spacing:1.853044px;}
.ws63{word-spacing:1.912819px;}
.ws109{word-spacing:1.944281px;}
.ws73{word-spacing:1.972595px;}
.wse{word-spacing:2.008454px;}
.ws52{word-spacing:2.032370px;}
.ws3e{word-spacing:2.092146px;}
.ws1d{word-spacing:2.098138px;}
.ws3f{word-spacing:2.151922px;}
.ws5e{word-spacing:2.211697px;}
.ws135{word-spacing:2.248488px;}
.ws144{word-spacing:2.271473px;}
.ws134{word-spacing:2.278548px;}
.ws164{word-spacing:2.313331px;}
.wsb5{word-spacing:2.320632px;}
.ws10a{word-spacing:2.373538px;}
.ws47{word-spacing:2.391024px;}
.wsa3{word-spacing:2.450800px;}
.ws163{word-spacing:2.474726px;}
.ws9{word-spacing:2.510276px;}
.ws184{word-spacing:2.528525px;}
.ws62{word-spacing:2.570351px;}
.ws145{word-spacing:2.630126px;}
.ws170{word-spacing:2.689920px;}
.wsb7{word-spacing:2.699388px;}
.wsad{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws18e{word-spacing:2.905114px;}
.ws69{word-spacing:2.929004px;}
.wsd0{word-spacing:2.939868px;}
.ws12a{word-spacing:2.957904px;}
.ws34{word-spacing:2.988780px;}
.ws138{word-spacing:3.018024px;}
.ws139{word-spacing:3.030048px;}
.ws28{word-spacing:3.048556px;}
.ws12b{word-spacing:3.072132px;}
.ws146{word-spacing:3.108331px;}
.ws3d{word-spacing:3.168107px;}
.ws162{word-spacing:3.174106px;}
.ws16d{word-spacing:3.204374px;}
.ws21{word-spacing:3.219667px;}
.ws185{word-spacing:3.221904px;}
.ws160{word-spacing:3.222154px;}
.ws15e{word-spacing:3.223037px;}
.ws14b{word-spacing:3.223286px;}
.ws16f{word-spacing:3.223824px;}
.ws18b{word-spacing:3.223843px;}
.ws18d{word-spacing:3.224678px;}
.ws149{word-spacing:3.224822px;}
.ws181{word-spacing:3.225082px;}
.ws175{word-spacing:3.225139px;}
.ws161{word-spacing:3.225610px;}
.ws174{word-spacing:3.225965px;}
.ws14f{word-spacing:3.226339px;}
.ws188{word-spacing:3.226502px;}
.wsaa{word-spacing:3.227882px;}
.ws14e{word-spacing:3.227904px;}
.ws172{word-spacing:3.228758px;}
.ws183{word-spacing:3.230794px;}
.ws15b{word-spacing:3.230918px;}
.ws173{word-spacing:3.281702px;}
.ws75{word-spacing:3.287658px;}
.wsd6{word-spacing:3.288564px;}
.ws168{word-spacing:3.335501px;}
.wsa6{word-spacing:3.347434px;}
.ws166{word-spacing:3.389299px;}
.ws165{word-spacing:3.440926px;}
.ws153{word-spacing:3.443098px;}
.ws58{word-spacing:3.466985px;}
.wsfc{word-spacing:3.497180px;}
.ws2b{word-spacing:3.526760px;}
.wsfd{word-spacing:3.547681px;}
.ws22{word-spacing:3.586536px;}
.ws6f{word-spacing:3.646312px;}
.ws39{word-spacing:3.706087px;}
.ws127{word-spacing:3.709404px;}
.wsde{word-spacing:3.825638px;}
.ws103{word-spacing:3.875936px;}
.wsab{word-spacing:3.885414px;}
.wsae{word-spacing:3.991968px;}
.ws44{word-spacing:4.004965px;}
.ws104{word-spacing:4.008501px;}
.ws5d{word-spacing:4.124516px;}
.ws68{word-spacing:4.184292px;}
.ws169{word-spacing:4.250074px;}
.ws151{word-spacing:4.303872px;}
.ws186{word-spacing:4.357670px;}
.ws111{word-spacing:4.363619px;}
.wsaf{word-spacing:4.400784px;}
.wsb3{word-spacing:4.406796px;}
.wsb2{word-spacing:4.418820px;}
.ws143{word-spacing:4.423394px;}
.ws11f{word-spacing:4.478940px;}
.ws66{word-spacing:4.483170px;}
.ws76{word-spacing:4.602721px;}
.wsfe{word-spacing:4.639761px;}
.wsff{word-spacing:4.658699px;}
.ws13f{word-spacing:4.782048px;}
.ws9f{word-spacing:4.841824px;}
.ws5f{word-spacing:4.961375px;}
.wsf6{word-spacing:4.968016px;}
.ws42{word-spacing:5.021150px;}
.ws64{word-spacing:5.080926px;}
.ws7b{word-spacing:5.092164px;}
.ws81{word-spacing:5.110200px;}
.ws7c{word-spacing:5.140260px;}
.ws41{word-spacing:5.140702px;}
.ws12d{word-spacing:5.146272px;}
.ws12e{word-spacing:5.158296px;}
.ws167{word-spacing:5.272243px;}
.ws83{word-spacing:5.302584px;}
.wsa4{word-spacing:5.320028px;}
.ws82{word-spacing:5.362704px;}
.wsa9{word-spacing:5.379804px;}
.ws57{word-spacing:5.499355px;}
.wsbe{word-spacing:5.525028px;}
.ws17d{word-spacing:5.541235px;}
.ws142{word-spacing:5.618906px;}
.wsbf{word-spacing:5.621220px;}
.ws16e{word-spacing:5.756429px;}
.ws102{word-spacing:5.776029px;}
.ws65{word-spacing:5.798233px;}
.ws182{word-spacing:5.864026px;}
.ws50{word-spacing:5.917784px;}
.ws15{word-spacing:6.067206px;}
.ws46{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.ws51{word-spacing:6.156887px;}
.ws13b{word-spacing:6.192360px;}
.wsc5{word-spacing:6.198372px;}
.wsc4{word-spacing:6.228432px;}
.ws13a{word-spacing:6.234444px;}
.wsb1{word-spacing:6.246468px;}
.ws115{word-spacing:6.336214px;}
.ws6a{word-spacing:6.395989px;}
.ws126{word-spacing:6.408792px;}
.wsf5{word-spacing:6.464102px;}
.wsf4{word-spacing:6.539854px;}
.ws7e{word-spacing:6.547068px;}
.ws18f{word-spacing:6.563405px;}
.ws6c{word-spacing:6.754643px;}
.ws13d{word-spacing:6.814418px;}
.ws17a{word-spacing:6.886195px;}
.wsdd{word-spacing:6.993745px;}
.ws156{word-spacing:6.993792px;}
.ws3c{word-spacing:7.113296px;}
.ws17b{word-spacing:7.208986px;}
.wscb{word-spacing:7.304580px;}
.wsca{word-spacing:7.310592px;}
.ws12f{word-spacing:7.316604px;}
.ws128{word-spacing:7.328628px;}
.ws114{word-spacing:7.591501px;}
.wsac{word-spacing:7.651277px;}
.wsb9{word-spacing:7.659288px;}
.wsb8{word-spacing:7.713396px;}
.ws159{word-spacing:7.746970px;}
.ws3b{word-spacing:7.770828px;}
.ws55{word-spacing:8.009930px;}
.wsd9{word-spacing:8.290548px;}
.wsda{word-spacing:8.350668px;}
.ws2f{word-spacing:8.368584px;}
.wsa2{word-spacing:8.428360px;}
.ws13{word-spacing:8.661460px;}
.ws155{word-spacing:8.769139px;}
.ws154{word-spacing:8.822938px;}
.ws130{word-spacing:9.823608px;}
.ws131{word-spacing:9.847656px;}
.ws59{word-spacing:14.585246px;}
.wsc{word-spacing:15.481836px;}
.ws8{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws152{word-spacing:16.569907px;}
.wsd4{word-spacing:16.683300px;}
.wsd5{word-spacing:16.761456px;}
.ws187{word-spacing:16.785101px;}
.ws12{word-spacing:17.699504px;}
.ws13e{word-spacing:24.507996px;}
.ws14{word-spacing:27.448877px;}
.wse7{word-spacing:248.255620px;}
.wseb{word-spacing:303.415119px;}
.wsea{word-spacing:341.966167px;}
.wse9{word-spacing:388.054460px;}
.wse8{word-spacing:434.616197px;}
.wsec{word-spacing:445.549621px;}
.wsed{word-spacing:449.728562px;}
.wsdf{word-spacing:452.821133px;}
.wsee{word-spacing:474.606518px;}
.wse2{word-spacing:499.033958px;}
.wse0{word-spacing:523.566029px;}
.wsf1{word-spacing:528.219430px;}
.wse1{word-spacing:531.420595px;}
.wsef{word-spacing:557.775023px;}
.ws70{word-spacing:922.050778px;}
._6a{margin-left:-142.573466px;}
._6b{margin-left:-99.631766px;}
._1{margin-left:-11.943245px;}
._11{margin-left:-7.471910px;}
._9{margin-left:-5.917824px;}
._7{margin-left:-4.519022px;}
._8{margin-left:-2.999988px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._2{width:2.999988px;}
._1a{width:4.550513px;}
._7e{width:11.728008px;}
._6{width:12.971268px;}
._e{width:14.822586px;}
._a{width:16.300915px;}
._b{width:17.968666px;}
._d{width:19.150894px;}
._12{width:20.622582px;}
._16{width:22.236523px;}
._c{width:23.312986px;}
._13{width:24.627547px;}
._14{width:26.002426px;}
._1b{width:27.795654px;}
._17{width:29.588922px;}
._1c{width:31.441966px;}
._0{width:33.355008px;}
._18{width:34.430746px;}
._5b{width:35.506706px;}
._19{width:37.359750px;}
._15{width:43.038432px;}
._7a{width:54.831244px;}
._7d{width:61.868160px;}
._3{width:69.349092px;}
._41{width:81.802286px;}
._76{width:89.916674px;}
._34{width:92.714066px;}
._30{width:98.702018px;}
._75{width:108.532532px;}
._69{width:118.815757px;}
._79{width:119.892196px;}
._73{width:133.486240px;}
._71{width:137.646243px;}
._3e{width:149.196806px;}
._4a{width:161.715101px;}
._40{width:163.060478px;}
._33{width:169.129584px;}
._35{width:171.507338px;}
._31{width:172.526364px;}
._74{width:173.801800px;}
._36{width:177.717734px;}
._6e{width:187.850351px;}
._2e{width:192.149532px;}
._72{width:197.887385px;}
._70{width:201.965324px;}
._3c{width:203.277744px;}
._6c{width:208.385239px;}
._37{width:216.696528px;}
._2f{width:229.291668px;}
._3b{width:239.770584px;}
._6d{width:241.261259px;}
._5f{width:252.368294px;}
._32{width:257.316614px;}
._39{width:271.835594px;}
._6f{width:279.831245px;}
._38{width:297.356534px;}
._44{width:301.157924px;}
._5a{width:304.660339px;}
._47{width:311.331341px;}
._60{width:321.176448px;}
._57{width:325.049933px;}
._42{width:331.937558px;}
._2d{width:334.429524px;}
._58{width:337.046976px;}
._49{width:338.230541px;}
._59{width:341.297050px;}
._67{width:342.426816px;}
._77{width:349.162531px;}
._50{width:352.379520px;}
._45{width:365.397336px;}
._46{width:367.970462px;}
._4b{width:371.832211px;}
._3d{width:381.581640px;}
._48{width:389.554214px;}
._3a{width:404.261918px;}
._51{width:423.178214px;}
._5e{width:427.159296px;}
._4c{width:441.469670px;}
._53{width:463.419418px;}
._4d{width:474.986074px;}
._66{width:478.429171px;}
._4f{width:485.422963px;}
._62{width:491.771174px;}
._52{width:493.438925px;}
._3f{width:495.412848px;}
._4e{width:500.056128px;}
._56{width:518.186189px;}
._5c{width:520.680466px;}
._54{width:536.423846px;}
._61{width:544.933133px;}
._5d{width:558.158400px;}
._43{width:574.428564px;}
._55{width:578.547994px;}
._65{width:584.250624px;}
._64{width:597.377434px;}
._63{width:623.846246px;}
._78{width:648.524961px;}
._f{width:684.838813px;}
._22{width:721.974528px;}
._2a{width:814.238784px;}
._1e{width:846.407338px;}
._1f{width:872.932838px;}
._20{width:910.430323px;}
._1d{width:933.294643px;}
._29{width:949.972147px;}
._23{width:959.064077px;}
._25{width:960.516634px;}
._28{width:965.143296px;}
._24{width:979.668864px;}
._2b{width:981.336614px;}
._21{width:982.520179px;}
._26{width:1004.846515px;}
._27{width:1017.973325px;}
._7c{width:2023.968996px;}
._2c{width:2048.100516px;}
._68{width:2125.167446px;}
._7b{width:2384.714400px;}
._10{width:2408.624400px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fsd{font-size:50.274000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fsf{font-size:56.700000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fse{font-size:63.126000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y1dd{bottom:-555.472962px;}
.y1dc{bottom:-536.303700px;}
.y1db{bottom:-517.044258px;}
.y1da{bottom:-497.784816px;}
.y112{bottom:-485.313519px;}
.y165{bottom:-482.576187px;}
.y1d9{bottom:-478.615554px;}
.y111{bottom:-465.063600px;}
.y164{bottom:-463.316745px;}
.y1d8{bottom:-459.356112px;}
.y110{bottom:-444.813681px;}
.y163{bottom:-444.057303px;}
.y1d7{bottom:-440.096670px;}
.y162{bottom:-424.888041px;}
.y10f{bottom:-424.563762px;}
.y1d6{bottom:-420.927408px;}
.y161{bottom:-405.628599px;}
.y10e{bottom:-404.313843px;}
.y1d5{bottom:-401.667966px;}
.y10d{bottom:-394.234725px;}
.y160{bottom:-386.369157px;}
.y1d4{bottom:-382.498704px;}
.y1b9{bottom:-376.720155px;}
.y15f{bottom:-367.199895px;}
.y10c{bottom:-363.904185px;}
.y1d3{bottom:-363.239262px;}
.y1b8{bottom:-356.497741px;}
.y10b{bottom:-353.734887px;}
.y15e{bottom:-347.940453px;}
.y1d2{bottom:-343.979820px;}
.y1b7{bottom:-336.275327px;}
.y15d{bottom:-328.771191px;}
.y1d1{bottom:-324.810558px;}
.y10a{bottom:-323.404347px;}
.y1b6{bottom:-316.147602px;}
.y15c{bottom:-309.511749px;}
.y1d0{bottom:-305.551116px;}
.y109{bottom:-303.154428px;}
.y1b5{bottom:-295.925188px;}
.y15b{bottom:-290.252307px;}
.y1cf{bottom:-286.381854px;}
.y108{bottom:-282.904509px;}
.y1b4{bottom:-275.797462px;}
.y15a{bottom:-271.083045px;}
.y1ce{bottom:-267.122412px;}
.y107{bottom:-262.654590px;}
.y1b3{bottom:-255.575048px;}
.y159{bottom:-251.823603px;}
.y1cd{bottom:-247.862970px;}
.y106{bottom:-242.493348px;}
.y1b2{bottom:-235.352634px;}
.y158{bottom:-232.654341px;}
.y105{bottom:-232.324050px;}
.y1cc{bottom:-228.693708px;}
.y1b1{bottom:-215.224909px;}
.y157{bottom:-213.394899px;}
.y1cb{bottom:-209.434266px;}
.y104{bottom:-201.993819px;}
.y1b0{bottom:-195.002495px;}
.y156{bottom:-194.135457px;}
.y1ca{bottom:-190.265004px;}
.y103{bottom:-181.743900px;}
.y155{bottom:-174.966195px;}
.y1af{bottom:-174.874770px;}
.y1c9{bottom:-171.005562px;}
.y102{bottom:-160.684050px;}
.y154{bottom:-155.706753px;}
.y1ae{bottom:-154.652356px;}
.y1c8{bottom:-151.746120px;}
.y153{bottom:-136.535988px;}
.y1ad{bottom:-134.429942px;}
.y1c7{bottom:-132.576858px;}
.y101{bottom:-130.624050px;}
.y152{bottom:-117.276546px;}
.y1ac{bottom:-114.302217px;}
.y1c6{bottom:-113.317416px;}
.y151{bottom:-98.017104px;}
.y100{bottom:-94.893312px;}
.y1ab{bottom:-94.079803px;}
.y1c5{bottom:-94.057974px;}
.y150{bottom:-78.847842px;}
.yff{bottom:-75.724050px;}
.y1aa{bottom:-73.952077px;}
.y1c4{bottom:-70.298550px;}
.y14f{bottom:-59.588400px;}
.yfe{bottom:-38.824050px;}
.y1a9{bottom:-35.206920px;}
.y1c3{bottom:-33.578550px;}
.y14e{bottom:-22.778550px;}
.yfd{bottom:-16.412619px;}
.y1a8{bottom:-2.226420px;}
.y1c2{bottom:-2.077929px;}
.y14d{bottom:-0.276174px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y4b{bottom:31.890000px;}
.y223{bottom:90.870000px;}
.y1bc{bottom:91.681500px;}
.y1fd{bottom:98.644500px;}
.y188{bottom:99.804000px;}
.y23{bottom:102.823500px;}
.y259{bottom:103.557000px;}
.yd7{bottom:106.246500px;}
.y202{bottom:106.695000px;}
.y222{bottom:108.130500px;}
.y82{bottom:109.366500px;}
.y4a{bottom:109.680000px;}
.y1bb{bottom:110.511000px;}
.y132{bottom:111.841500px;}
.y1fc{bottom:117.474000px;}
.y187{bottom:118.633500px;}
.y22{bottom:120.711000px;}
.y258{bottom:120.817500px;}
.yb6{bottom:125.076000px;}
.y221{bottom:125.391000px;}
.y201{bottom:125.524500px;}
.y81{bottom:128.196000px;}
.y49{bottom:128.509500px;}
.y131{bottom:130.671000px;}
.y1fb{bottom:136.303500px;}
.y186{bottom:137.463000px;}
.y257{bottom:138.078000px;}
.y21{bottom:138.600000px;}
.y220{bottom:142.651500px;}
.yb5{bottom:143.905500px;}
.y1ba{bottom:144.076500px;}
.y200{bottom:144.354000px;}
.y80{bottom:147.025500px;}
.y48{bottom:147.339000px;}
.y130{bottom:149.499000px;}
.yf2{bottom:152.532000px;}
.y1fa{bottom:155.133000px;}
.y256{bottom:155.338500px;}
.y185{bottom:156.292500px;}
.y20{bottom:156.487500px;}
.y21f{bottom:159.910500px;}
.yb4{bottom:162.735000px;}
.y1ff{bottom:163.183500px;}
.y7f{bottom:165.855000px;}
.y47{bottom:166.168500px;}
.y198{bottom:166.506000px;}
.y12f{bottom:168.328500px;}
.yf1{bottom:171.361500px;}
.y255{bottom:172.599000px;}
.y1f9{bottom:173.962500px;}
.y1f{bottom:174.375000px;}
.y184{bottom:175.120500px;}
.y21e{bottom:177.171000px;}
.yb3{bottom:181.564500px;}
.y1fe{bottom:182.013000px;}
.y7e{bottom:184.684500px;}
.y46{bottom:184.998000px;}
.y12e{bottom:187.158000px;}
.y254{bottom:189.858000px;}
.yf0{bottom:190.191000px;}
.y1e{bottom:192.264000px;}
.y1f8{bottom:192.792000px;}
.y183{bottom:193.950000px;}
.y21d{bottom:194.431500px;}
.yb2{bottom:200.394000px;}
.y13f{bottom:200.842500px;}
.y7d{bottom:203.514000px;}
.y45{bottom:203.827500px;}
.y12d{bottom:205.987500px;}
.y253{bottom:207.118500px;}
.yef{bottom:209.019000px;}
.y1d{bottom:210.151500px;}
.y1f7{bottom:211.621500px;}
.y21c{bottom:211.692000px;}
.y182{bottom:212.779500px;}
.yb1{bottom:219.223500px;}
.y13e{bottom:219.672000px;}
.y7c{bottom:222.343500px;}
.y44{bottom:222.655500px;}
.y252{bottom:224.379000px;}
.y12c{bottom:224.817000px;}
.yee{bottom:227.848500px;}
.y1c{bottom:228.039000px;}
.y21b{bottom:228.952500px;}
.y1f6{bottom:230.451000px;}
.y181{bottom:231.609000px;}
.yb0{bottom:238.053000px;}
.y13d{bottom:238.501500px;}
.y7b{bottom:241.173000px;}
.y43{bottom:241.485000px;}
.y251{bottom:241.639500px;}
.y12b{bottom:243.646500px;}
.y21a{bottom:246.213000px;}
.yed{bottom:246.678000px;}
.y1f5{bottom:249.280500px;}
.y180{bottom:250.438500px;}
.yaf{bottom:256.882500px;}
.y13c{bottom:257.331000px;}
.y250{bottom:258.900000px;}
.y7a{bottom:260.002500px;}
.y42{bottom:260.314500px;}
.y12a{bottom:262.476000px;}
.y219{bottom:263.473500px;}
.yec{bottom:265.507500px;}
.y1f4{bottom:268.110000px;}
.y17f{bottom:269.268000px;}
.yae{bottom:275.712000px;}
.y13b{bottom:276.160500px;}
.y79{bottom:278.832000px;}
.y41{bottom:279.144000px;}
.y218{bottom:280.734000px;}
.y129{bottom:281.305500px;}
.yeb{bottom:284.337000px;}
.y1f3{bottom:286.939500px;}
.y17e{bottom:288.097500px;}
.y24f{bottom:293.421000px;}
.yad{bottom:294.541500px;}
.y13a{bottom:294.990000px;}
.y78{bottom:297.661500px;}
.y40{bottom:297.973500px;}
.y217{bottom:297.994500px;}
.y128{bottom:300.135000px;}
.yea{bottom:303.166500px;}
.y1f2{bottom:305.769000px;}
.y17d{bottom:306.927000px;}
.y1b{bottom:307.299000px;}
.y24e{bottom:310.681500px;}
.yac{bottom:313.371000px;}
.y139{bottom:313.819500px;}
.y216{bottom:315.253500px;}
.y77{bottom:316.491000px;}
.y3f{bottom:316.803000px;}
.y127{bottom:318.964500px;}
.y1f1{bottom:324.598500px;}
.y1a{bottom:325.186500px;}
.y17c{bottom:325.756500px;}
.y24d{bottom:327.940500px;}
.yab{bottom:332.200500px;}
.y215{bottom:332.514000px;}
.y138{bottom:332.649000px;}
.y76{bottom:335.320500px;}
.y3e{bottom:335.632500px;}
.y126{bottom:337.794000px;}
.y19{bottom:343.074000px;}
.y1f0{bottom:343.428000px;}
.y17b{bottom:344.586000px;}
.y24c{bottom:345.201000px;}
.ye9{bottom:348.628500px;}
.y214{bottom:349.774500px;}
.yaa{bottom:351.030000px;}
.y137{bottom:351.478500px;}
.y75{bottom:354.150000px;}
.y3d{bottom:354.462000px;}
.y125{bottom:356.623500px;}
.y14c{bottom:360.534006px;}
.y18{bottom:360.963000px;}
.y1ef{bottom:362.257500px;}
.y24b{bottom:362.461500px;}
.y17a{bottom:363.415500px;}
.ye8{bottom:365.067000px;}
.y213{bottom:367.035000px;}
.ya9{bottom:369.859500px;}
.y136{bottom:370.308000px;}
.y74{bottom:372.979500px;}
.y3c{bottom:373.291500px;}
.y124{bottom:375.453000px;}
.y24a{bottom:379.722000px;}
.y14b{bottom:379.793448px;}
.y1ee{bottom:381.087000px;}
.ye7{bottom:381.505500px;}
.y179{bottom:382.245000px;}
.y212{bottom:384.295500px;}
.ya8{bottom:388.689000px;}
.y135{bottom:389.137500px;}
.y73{bottom:391.809000px;}
.y3b{bottom:392.121000px;}
.y123{bottom:394.282500px;}
.y249{bottom:396.982500px;}
.ye6{bottom:397.944000px;}
.y17{bottom:399.024000px;}
.y14a{bottom:399.052890px;}
.y1ed{bottom:399.916500px;}
.y178{bottom:401.074500px;}
.y211{bottom:401.556000px;}
.yfc{bottom:406.318155px;}
.ya7{bottom:407.518500px;}
.y134{bottom:407.967000px;}
.y72{bottom:410.638500px;}
.y3a{bottom:410.950500px;}
.yd6{bottom:412.002000px;}
.y122{bottom:413.112000px;}
.y248{bottom:414.243000px;}
.ye5{bottom:414.382500px;}
.y16{bottom:416.913000px;}
.y149{bottom:418.223655px;}
.y1ec{bottom:418.746000px;}
.y210{bottom:418.816500px;}
.y177{bottom:419.904000px;}
.yfb{bottom:425.577597px;}
.ya6{bottom:426.348000px;}
.y133{bottom:426.796500px;}
.y71{bottom:429.468000px;}
.y39{bottom:429.780000px;}
.ye4{bottom:430.821000px;}
.y247{bottom:431.503500px;}
.y1c1{bottom:434.512008px;}
.y15{bottom:434.800500px;}
.y20f{bottom:436.077000px;}
.y148{bottom:437.483097px;}
.y1eb{bottom:437.575500px;}
.y176{bottom:438.733500px;}
.yfa{bottom:444.748362px;}
.ya5{bottom:445.177500px;}
.yd5{bottom:445.626000px;}
.ye3{bottom:447.259500px;}
.y70{bottom:448.297500px;}
.y38{bottom:448.609500px;}
.y246{bottom:448.764000px;}
.y20e{bottom:453.336000px;}
.y1c0{bottom:453.771450px;}
.y1ea{bottom:456.403500px;}
.y147{bottom:456.653862px;}
.y175{bottom:457.563000px;}
.y1a7{bottom:457.989547px;}
.y121{bottom:458.574000px;}
.ye2{bottom:463.698000px;}
.ya4{bottom:464.007000px;}
.yf9{bottom:464.007804px;}
.yd4{bottom:464.454000px;}
.y245{bottom:466.024500px;}
.y6f{bottom:467.127000px;}
.y37{bottom:467.439000px;}
.y20d{bottom:470.596500px;}
.y14{bottom:470.622000px;}
.y120{bottom:475.012500px;}
.y1e9{bottom:475.233000px;}
.y146{bottom:475.913304px;}
.y174{bottom:476.392500px;}
.y1a6{bottom:479.251962px;}
.ye1{bottom:480.136500px;}
.ya3{bottom:482.836500px;}
.yf8{bottom:483.267246px;}
.yd3{bottom:483.283500px;}
.y6e{bottom:485.956500px;}
.y36{bottom:486.268500px;}
.y13{bottom:488.509500px;}
.y11f{bottom:491.451000px;}
.y20c{bottom:492.340500px;}
.y1e8{bottom:494.062500px;}
.y145{bottom:495.172746px;}
.y173{bottom:495.222000px;}
.ye0{bottom:496.573500px;}
.y1a5{bottom:500.514377px;}
.y244{bottom:500.544000px;}
.ya2{bottom:501.666000px;}
.yd2{bottom:502.113000px;}
.yf7{bottom:502.436508px;}
.y6d{bottom:504.786000px;}
.y35{bottom:505.098000px;}
.y11e{bottom:507.889500px;}
.y1bf{bottom:508.312035px;}
.y1e7{bottom:512.892000px;}
.ydf{bottom:513.012000px;}
.y172{bottom:514.051500px;}
.y144{bottom:514.342008px;}
.y243{bottom:517.804500px;}
.y1be{bottom:518.121450px;}
.ya1{bottom:520.495500px;}
.yd1{bottom:520.942500px;}
.yf6{bottom:521.695950px;}
.y1a4{bottom:521.776792px;}
.y6c{bottom:523.615500px;}
.y11d{bottom:524.328000px;}
.y12{bottom:524.329500px;}
.y20b{bottom:525.964500px;}
.y34{bottom:528.411000px;}
.yde{bottom:529.450500px;}
.y1e6{bottom:531.721500px;}
.y171{bottom:532.881000px;}
.y143{bottom:533.601450px;}
.y242{bottom:535.065000px;}
.ya0{bottom:539.323500px;}
.yd0{bottom:539.772000px;}
.y11c{bottom:540.765000px;}
.y11{bottom:542.218500px;}
.y6b{bottom:542.445000px;}
.y1a3{bottom:543.039207px;}
.ydd{bottom:545.889000px;}
.y1e5{bottom:550.551000px;}
.y170{bottom:551.710500px;}
.y241{bottom:552.325500px;}
.y20a{bottom:552.505500px;}
.y11b{bottom:557.203500px;}
.y9f{bottom:558.153000px;}
.ycf{bottom:558.601500px;}
.y10{bottom:560.106000px;}
.y6a{bottom:561.274500px;}
.ydc{bottom:562.327500px;}
.y1a2{bottom:564.301622px;}
.y1e4{bottom:569.380500px;}
.y240{bottom:569.586000px;}
.y16f{bottom:570.540000px;}
.y11a{bottom:573.642000px;}
.yf5{bottom:576.236535px;}
.y9e{bottom:576.982500px;}
.yce{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.ydb{bottom:578.766000px;}
.y209{bottom:579.045000px;}
.y69{bottom:580.104000px;}
.y1a1{bottom:585.564037px;}
.yf4{bottom:586.045950px;}
.y23f{bottom:586.846500px;}
.y142{bottom:588.142035px;}
.y1e3{bottom:588.210000px;}
.y16e{bottom:589.369500px;}
.y119{bottom:590.080500px;}
.y9d{bottom:595.812000px;}
.ye{bottom:595.882500px;}
.ycd{bottom:596.260500px;}
.y141{bottom:597.951450px;}
.y68{bottom:598.932000px;}
.yda{bottom:602.406000px;}
.y33{bottom:603.561000px;}
.y23e{bottom:604.107000px;}
.y208{bottom:605.586000px;}
.y118{bottom:606.519000px;}
.y1a0{bottom:606.731763px;}
.y1e2{bottom:607.039500px;}
.y16d{bottom:608.199000px;}
.y197{bottom:609.402000px;}
.yd{bottom:613.770000px;}
.y9c{bottom:614.641500px;}
.ycc{bottom:615.090000px;}
.y67{bottom:617.761500px;}
.y23d{bottom:621.366000px;}
.y117{bottom:622.957500px;}
.y196{bottom:625.840500px;}
.y1e1{bottom:625.869000px;}
.y16c{bottom:627.028500px;}
.y19f{bottom:627.994178px;}
.yc{bottom:631.657500px;}
.y207{bottom:632.127000px;}
.y9b{bottom:633.471000px;}
.ycb{bottom:633.919500px;}
.yd9{bottom:634.026000px;}
.y66{bottom:636.591000px;}
.y23c{bottom:638.626500px;}
.y19d{bottom:638.671941px;}
.y116{bottom:639.396000px;}
.y32{bottom:640.950000px;}
.y195{bottom:642.279000px;}
.y1e0{bottom:644.698500px;}
.y16b{bottom:645.858000px;}
.y19e{bottom:649.256593px;}
.yb{bottom:649.546500px;}
.y9a{bottom:652.300500px;}
.yca{bottom:652.749000px;}
.y65{bottom:655.420500px;}
.y23b{bottom:655.887000px;}
.y206{bottom:658.666500px;}
.y194{bottom:658.717500px;}
.y31{bottom:660.408000px;}
.y115{bottom:663.036000px;}
.y16a{bottom:664.687500px;}
.y1df{bottom:668.011500px;}
.y19c{bottom:670.519008px;}
.y99{bottom:671.130000px;}
.yc9{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y23a{bottom:673.147500px;}
.y64{bottom:674.250000px;}
.y193{bottom:675.154500px;}
.y205{bottom:676.240500px;}
.y30{bottom:679.864500px;}
.y169{bottom:683.515500px;}
.y98{bottom:689.959500px;}
.yc8{bottom:690.408000px;}
.y192{bottom:691.593000px;}
.y19b{bottom:691.781423px;}
.y63{bottom:693.079500px;}
.y204{bottom:693.816000px;}
.y114{bottom:694.656000px;}
.y2f{bottom:699.321000px;}
.y168{bottom:702.345000px;}
.y1de{bottom:702.922500px;}
.y239{bottom:707.668500px;}
.y191{bottom:708.031500px;}
.y97{bottom:708.789000px;}
.yc7{bottom:709.237500px;}
.y203{bottom:711.390000px;}
.y62{bottom:711.909000px;}
.y2e{bottom:718.779000px;}
.y167{bottom:721.174500px;}
.y190{bottom:724.470000px;}
.y238{bottom:724.929000px;}
.y1bd{bottom:725.350500px;}
.y96{bottom:727.618500px;}
.yc6{bottom:728.067000px;}
.y113{bottom:728.833500px;}
.y61{bottom:730.738500px;}
.y2d{bottom:738.235500px;}
.y18f{bottom:740.908500px;}
.y237{bottom:742.189500px;}
.y95{bottom:746.448000px;}
.yc5{bottom:746.896500px;}
.y60{bottom:749.568000px;}
.y19a{bottom:749.899537px;}
.yf3{bottom:751.261500px;}
.y166{bottom:754.741500px;}
.y18e{bottom:757.347000px;}
.y2c{bottom:757.693500px;}
.y236{bottom:759.450000px;}
.y199{bottom:760.199423px;}
.y94{bottom:765.277500px;}
.yc4{bottom:765.726000px;}
.y5f{bottom:768.397500px;}
.y18d{bottom:773.785500px;}
.y235{bottom:776.709000px;}
.y2b{bottom:777.150000px;}
.y140{bottom:777.169500px;}
.y93{bottom:784.107000px;}
.yc3{bottom:784.555500px;}
.y5e{bottom:787.227000px;}
.y18c{bottom:790.224000px;}
.y234{bottom:793.969500px;}
.y2a{bottom:796.606500px;}
.y92{bottom:802.936500px;}
.yc2{bottom:803.385000px;}
.y5d{bottom:806.056500px;}
.y18b{bottom:806.662500px;}
.y233{bottom:811.230000px;}
.y29{bottom:816.064500px;}
.y91{bottom:821.766000px;}
.yc1{bottom:822.214500px;}
.y5c{bottom:824.886000px;}
.y232{bottom:828.490500px;}
.y18a{bottom:830.302500px;}
.y28{bottom:835.521000px;}
.y90{bottom:840.595500px;}
.yc0{bottom:841.044000px;}
.y5b{bottom:843.715500px;}
.y231{bottom:845.751000px;}
.y8f{bottom:859.425000px;}
.ybf{bottom:859.873500px;}
.y189{bottom:861.922500px;}
.y5a{bottom:862.545000px;}
.y230{bottom:863.011500px;}
.y27{bottom:874.107000px;}
.y8e{bottom:878.254500px;}
.ybe{bottom:878.703000px;}
.y22f{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y26{bottom:894.586500px;}
.y8d{bottom:897.084000px;}
.ybd{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y25{bottom:906.385500px;}
.y22e{bottom:914.793000px;}
.y8c{bottom:915.913500px;}
.ybc{bottom:916.362000px;}
.y57{bottom:919.033500px;}
.y24{bottom:926.865000px;}
.y22d{bottom:932.052000px;}
.y8b{bottom:934.743000px;}
.ybb{bottom:935.191500px;}
.y56{bottom:937.863000px;}
.yd8{bottom:939.226500px;}
.y22c{bottom:949.312500px;}
.y8a{bottom:953.572500px;}
.yba{bottom:954.021000px;}
.y55{bottom:956.692500px;}
.y22b{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.y89{bottom:972.402000px;}
.yb9{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.y22a{bottom:983.833500px;}
.yb8{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y88{bottom:995.713500px;}
.y229{bottom:1001.094000px;}
.yb7{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y52{bottom:1013.181000px;}
.y228{bottom:1018.354500px;}
.y87{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y227{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y86{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.y226{bottom:1052.875500px;}
.y85{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y225{bottom:1070.134500px;}
.y84{bottom:1085.826000px;}
.y224{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y83{bottom:1104.655500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.he{height:26.296208px;}
.hc{height:26.302208px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h13{height:35.052500px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h24{height:39.434227px;}
.h11{height:43.217759px;}
.h12{height:43.516637px;}
.h4{height:43.815515px;}
.h23{height:44.091914px;}
.h16{height:44.279648px;}
.h1f{height:46.493631px;}
.h19{height:46.645840px;}
.h14{height:49.117939px;}
.h18{height:49.939453px;}
.h2{height:50.931027px;}
.h21{height:52.436426px;}
.h6{height:54.547601px;}
.h1c{height:54.575123px;}
.h17{height:55.599258px;}
.h20{height:58.379221px;}
.h3{height:69.505289px;}
.h5{height:77.792486px;}
.h1b{height:95.921742px;}
.h1a{height:96.276450px;}
.h1d{height:342.430500px;}
.h15{height:368.338500px;}
.h22{height:394.249500px;}
.h1e{height:410.285925px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w6{width:569.841143px;}
.w5{width:571.416000px;}
.w4{width:604.329000px;}
.w7{width:631.639050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x94{left:-139.273500px;}
.x79{left:-116.164500px;}
.xaa{left:-79.326608px;}
.xbf{left:-74.848950px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x97{left:62.686500px;}
.x7a{left:79.405500px;}
.xd1{left:85.855500px;}
.x7e{left:87.055500px;}
.x95{left:88.156394px;}
.x88{left:90.654593px;}
.x8c{left:92.916000px;}
.x7f{left:94.435500px;}
.x90{left:95.707500px;}
.x89{left:100.644050px;}
.x87{left:101.906066px;}
.x85{left:104.786167px;}
.x8f{left:106.353000px;}
.x8e{left:108.814500px;}
.x7b{left:111.265394px;}
.xa8{left:112.888500px;}
.x86{left:114.055975px;}
.x83{left:116.575500px;}
.x8d{left:119.331000px;}
.xa9{left:120.381000px;}
.xb8{left:126.022003px;}
.xa6{left:129.331500px;}
.xbe{left:130.638450px;}
.x80{left:133.135822px;}
.xb4{left:134.813401px;}
.xa7{left:137.824500px;}
.xab{left:141.803393px;}
.x78{left:144.292500px;}
.x7d{left:151.225500px;}
.xc2{left:152.580944px;}
.xc1{left:155.821050px;}
.xaf{left:157.491829px;}
.xb1{left:159.004671px;}
.xb2{left:160.044256px;}
.xb0{left:162.689757px;}
.xb3{left:166.187119px;}
.xb5{left:179.605504px;}
.xac{left:182.344079px;}
.xad{left:186.691724px;}
.x8b{left:221.058000px;}
.x81{left:229.076081px;}
.xb7{left:244.997393px;}
.x48{left:248.655000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x5{left:271.221000px;}
.x82{left:280.465673px;}
.x8{left:282.786000px;}
.xc3{left:285.030000px;}
.xa5{left:287.302500px;}
.x61{left:290.629500px;}
.x73{left:294.474000px;}
.x23{left:301.287000px;}
.xcb{left:304.317000px;}
.x62{left:305.574000px;}
.x32{left:307.992000px;}
.x7{left:309.439500px;}
.x93{left:311.166000px;}
.x77{left:314.421000px;}
.x24{left:316.231500px;}
.x25{left:319.941000px;}
.x8a{left:321.451500px;}
.x33{left:322.935000px;}
.x71{left:325.818000px;}
.xca{left:327.021000px;}
.xc9{left:329.119500px;}
.x34{left:330.310500px;}
.x72{left:332.127000px;}
.x26{left:334.885500px;}
.x4b{left:338.196000px;}
.x55{left:341.568000px;}
.x29{left:344.499000px;}
.x70{left:347.325000px;}
.x3f{left:348.639000px;}
.x6e{left:349.885500px;}
.x74{left:350.982000px;}
.x76{left:352.138500px;}
.x4c{left:353.140500px;}
.x40{left:356.112000px;}
.x2a{left:359.443500px;}
.x75{left:361.830000px;}
.xc6{left:363.964500px;}
.x46{left:365.662500px;}
.x41{left:367.263000px;}
.x91{left:370.107000px;}
.x4d{left:371.895000px;}
.x35{left:375.390000px;}
.x65{left:378.883500px;}
.x47{left:380.607000px;}
.xba{left:383.166000px;}
.x6c{left:384.850500px;}
.x36{left:390.334500px;}
.xd0{left:391.962000px;}
.x66{left:393.828000px;}
.xbb{left:398.110500px;}
.x6d{left:399.795000px;}
.x84{left:403.404694px;}
.x2b{left:425.605500px;}
.x2d{left:430.870500px;}
.xcc{left:433.120500px;}
.x49{left:434.896500px;}
.x51{left:438.921000px;}
.x2c{left:440.550000px;}
.x2e{left:445.815000px;}
.x99{left:448.009500px;}
.x4a{left:449.839500px;}
.xc4{left:451.333500px;}
.x11{left:454.713000px;}
.x39{left:457.102500px;}
.x12{left:462.184500px;}
.x13{left:465.846000px;}
.x30{left:470.275500px;}
.x3a{left:472.047000px;}
.x14{left:473.319000px;}
.x9c{left:477.244500px;}
.x3b{left:480.678000px;}
.x92{left:481.771500px;}
.x9f{left:487.758000px;}
.x31{left:489.018000px;}
.x52{left:492.523500px;}
.x3c{left:495.622500px;}
.x3d{left:499.399500px;}
.x6f{left:504.714000px;}
.x53{left:507.468000px;}
.xb9{left:509.706000px;}
.x3e{left:514.344000px;}
.x1d{left:517.752000px;}
.x1e{left:532.695000px;}
.x1f{left:540.316500px;}
.x20{left:555.261000px;}
.x96{left:567.044892px;}
.x5f{left:572.866500px;}
.x4e{left:579.274500px;}
.x60{left:587.809500px;}
.x4f{left:594.217500px;}
.x9a{left:595.369500px;}
.x27{left:601.800000px;}
.x9b{left:610.314000px;}
.x37{left:613.918500px;}
.x28{left:616.743000px;}
.x7c{left:618.323892px;}
.xae{left:622.618868px;}
.xa0{left:625.210500px;}
.x38{left:628.861500px;}
.x67{left:630.904500px;}
.x63{left:632.353500px;}
.xc0{left:636.508492px;}
.x68{left:645.847500px;}
.x64{left:647.298000px;}
.x69{left:649.659000px;}
.x5a{left:654.216000px;}
.x9{left:661.465500px;}
.x6a{left:664.602000px;}
.xb6{left:667.601393px;}
.xa{left:668.937000px;}
.x2f{left:670.050000px;}
.x56{left:671.959500px;}
.x9d{left:675.450000px;}
.xb{left:676.558500px;}
.x9e{left:679.261500px;}
.x21{left:682.087500px;}
.xc{left:684.031500px;}
.x57{left:686.904000px;}
.x22{left:697.030500px;}
.xd7{left:698.040000px;}
.x5b{left:704.848500px;}
.xcd{left:709.530000px;}
.xbc{left:715.296000px;}
.xa1{left:718.093500px;}
.x5c{left:719.791500px;}
.xce{left:724.473000px;}
.xcf{left:728.142000px;}
.xbd{left:730.240500px;}
.xa2{left:733.038000px;}
.xc7{left:734.601000px;}
.xa3{left:736.702500px;}
.xc5{left:740.215500px;}
.x98{left:742.837500px;}
.x54{left:744.100500px;}
.x15{left:747.505500px;}
.xc8{left:749.545500px;}
.xa4{left:751.647000px;}
.x16{left:754.978500px;}
.xd5{left:756.766500px;}
.x17{left:758.640000px;}
.xd6{left:760.210500px;}
.xd4{left:762.402000px;}
.x18{left:766.111500px;}
.x6b{left:770.070000px;}
.xd{left:772.384500px;}
.x19{left:774.490500px;}
.xd8{left:776.907000px;}
.xe{left:779.856000px;}
.x50{left:782.038500px;}
.xf{left:783.667500px;}
.x58{left:785.986500px;}
.x1a{left:789.435000px;}
.x10{left:791.139000px;}
.x1b{left:797.056500px;}
.x42{left:798.495000px;}
.x59{left:800.931000px;}
.xd2{left:810.265500px;}
.x1c{left:811.999500px;}
.x43{left:813.439500px;}
.x44{left:817.159500px;}
.x5d{left:818.893500px;}
.x45{left:832.104000px;}
.x5e{left:833.838000px;}
.xd3{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:36.157504pt;}
.ls5a{letter-spacing:-0.219104pt;}
.ls21{letter-spacing:-0.197728pt;}
.ls5e{letter-spacing:-0.171008pt;}
.ls25{letter-spacing:-0.154976pt;}
.ls22{letter-spacing:-0.144288pt;}
.ls5c{letter-spacing:-0.133600pt;}
.ls27{letter-spacing:-0.128256pt;}
.ls2b{letter-spacing:-0.117568pt;}
.ls26{letter-spacing:-0.112224pt;}
.ls2a{letter-spacing:-0.106880pt;}
.ls2e{letter-spacing:-0.101536pt;}
.ls56{letter-spacing:-0.101002pt;}
.ls5f{letter-spacing:-0.096192pt;}
.ls28{letter-spacing:-0.090848pt;}
.ls3e{letter-spacing:-0.085504pt;}
.ls4c{letter-spacing:-0.080438pt;}
.ls5d{letter-spacing:-0.080160pt;}
.ls4d{letter-spacing:-0.078557pt;}
.ls1e{letter-spacing:-0.076608pt;}
.ls2c{letter-spacing:-0.074816pt;}
.ls29{letter-spacing:-0.069472pt;}
.ls2f{letter-spacing:-0.064128pt;}
.ls3a{letter-spacing:-0.058784pt;}
.ls5b{letter-spacing:-0.053440pt;}
.ls57{letter-spacing:-0.050501pt;}
.ls3b{letter-spacing:-0.048096pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls55{letter-spacing:-0.039278pt;}
.ls1f{letter-spacing:-0.037408pt;}
.ls50{letter-spacing:-0.033667pt;}
.ls24{letter-spacing:-0.026720pt;}
.ls30{letter-spacing:-0.021376pt;}
.ls4e{letter-spacing:-0.016834pt;}
.ls20{letter-spacing:-0.016032pt;}
.ls52{letter-spacing:-0.011222pt;}
.ls3d{letter-spacing:-0.010688pt;}
.ls54{letter-spacing:-0.010080pt;}
.ls4f{letter-spacing:-0.005611pt;}
.ls3c{letter-spacing:-0.005344pt;}
.ls7{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000016pt;}
.lsa{letter-spacing:0.000034pt;}
.ls72{letter-spacing:0.000447pt;}
.lsb{letter-spacing:0.000503pt;}
.ls6d{letter-spacing:0.000585pt;}
.ls62{letter-spacing:0.000621pt;}
.ls65{letter-spacing:0.000659pt;}
.ls68{letter-spacing:0.000711pt;}
.ls69{letter-spacing:0.001026pt;}
.ls67{letter-spacing:0.002262pt;}
.ls6f{letter-spacing:0.002574pt;}
.ls71{letter-spacing:0.004267pt;}
.ls17{letter-spacing:0.004800pt;}
.ls38{letter-spacing:0.005344pt;}
.ls49{letter-spacing:0.005611pt;}
.ls34{letter-spacing:0.010688pt;}
.ls44{letter-spacing:0.011222pt;}
.ls59{letter-spacing:0.014400pt;}
.ls32{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.016834pt;}
.ls10{letter-spacing:0.021376pt;}
.ls43{letter-spacing:0.022445pt;}
.ls36{letter-spacing:0.024000pt;}
.ls13{letter-spacing:0.026720pt;}
.ls14{letter-spacing:0.028800pt;}
.ls46{letter-spacing:0.030240pt;}
.ls33{letter-spacing:0.032064pt;}
.lse{letter-spacing:0.034048pt;}
.ls41{letter-spacing:0.035750pt;}
.ls35{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.038304pt;}
.ls18{letter-spacing:0.038400pt;}
.ls4b{letter-spacing:0.039278pt;}
.ls3f{letter-spacing:0.040219pt;}
.ls11{letter-spacing:0.042752pt;}
.ls48{letter-spacing:0.044890pt;}
.ls12{letter-spacing:0.048096pt;}
.ls16{letter-spacing:0.053440pt;}
.ls47{letter-spacing:0.056112pt;}
.ls1d{letter-spacing:0.058784pt;}
.ls51{letter-spacing:0.061723pt;}
.ls19{letter-spacing:0.064128pt;}
.ls39{letter-spacing:0.080160pt;}
.ls15{letter-spacing:0.081600pt;}
.ls45{letter-spacing:0.084168pt;}
.ls37{letter-spacing:0.085504pt;}
.ls31{letter-spacing:0.112224pt;}
.ls53{letter-spacing:0.140280pt;}
.lsf{letter-spacing:0.161728pt;}
.ls42{letter-spacing:0.169814pt;}
.lsd{letter-spacing:0.170240pt;}
.ls40{letter-spacing:0.178752pt;}
.ls8{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls58{letter-spacing:2.104200pt;}
.ls0{letter-spacing:2.657067pt;}
.ls3{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls6e{letter-spacing:11.841399pt;}
.ls6a{letter-spacing:11.843342pt;}
.ls70{letter-spacing:11.891361pt;}
.ls6c{letter-spacing:11.919630pt;}
.ls64{letter-spacing:11.924539pt;}
.ls61{letter-spacing:11.954133pt;}
.ls63{letter-spacing:11.959467pt;}
.ls1{letter-spacing:13.282422pt;}
.ls9{letter-spacing:13.283467pt;}
.ls66{letter-spacing:13.519310pt;}
.ls6b{letter-spacing:15.746761pt;}
.ls1a{letter-spacing:41.383953pt;}
.ls1b{letter-spacing:54.189065pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls1c{letter-spacing:67.314065pt;}
.ls2d{letter-spacing:510.368032pt;}
.ws1{word-spacing:-13.283467pt;}
.wse3{word-spacing:-11.955200pt;}
.wse4{word-spacing:-11.350752pt;}
.ws74{word-spacing:-10.810240pt;}
.ws33{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.wsdb{word-spacing:-3.147616pt;}
.wsdc{word-spacing:-2.837664pt;}
.wsa1{word-spacing:-2.816095pt;}
.wsc2{word-spacing:-2.810944pt;}
.wsc3{word-spacing:-2.800256pt;}
.ws4b{word-spacing:-2.656693pt;}
.wsc8{word-spacing:-2.506336pt;}
.ws23{word-spacing:-2.497292pt;}
.wsc9{word-spacing:-2.490304pt;}
.ws189{word-spacing:-2.486682pt;}
.ws117{word-spacing:-2.479616pt;}
.ws116{word-spacing:-2.463584pt;}
.ws178{word-spacing:-2.391040pt;}
.ws43{word-spacing:-2.337890pt;}
.ws27{word-spacing:-2.231622pt;}
.wsce{word-spacing:-2.201728pt;}
.ws7f{word-spacing:-2.196384pt;}
.wsa7{word-spacing:-2.178489pt;}
.ws7a{word-spacing:-2.175008pt;}
.wsd1{word-spacing:-2.142944pt;}
.ws80{word-spacing:-2.137600pt;}
.ws35{word-spacing:-2.125355pt;}
.wsfb{word-spacing:-1.969531pt;}
.wsfa{word-spacing:-1.919030pt;}
.ws88{word-spacing:-1.886432pt;}
.ws179{word-spacing:-1.865011pt;}
.ws40{word-spacing:-1.859685pt;}
.ws79{word-spacing:-1.795584pt;}
.ws5b{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws72{word-spacing:-1.594016pt;}
.ws87{word-spacing:-1.490976pt;}
.ws6e{word-spacing:-1.434614pt;}
.ws2d{word-spacing:-1.381481pt;}
.ws148{word-spacing:-1.291162pt;}
.ws136{word-spacing:-1.234464pt;}
.ws11b{word-spacing:-1.181024pt;}
.ws6{word-spacing:-1.175671pt;}
.ws6d{word-spacing:-1.115811pt;}
.ws13c{word-spacing:-1.062677pt;}
.ws15f{word-spacing:-1.004237pt;}
.wsa5{word-spacing:-0.956410pt;}
.wsa8{word-spacing:-0.903276pt;}
.wscd{word-spacing:-0.892448pt;}
.ws120{word-spacing:-0.876416pt;}
.ws112{word-spacing:-0.850142pt;}
.ws140{word-spacing:-0.797008pt;}
.wscc{word-spacing:-0.774880pt;}
.ws10e{word-spacing:-0.743874pt;}
.ws121{word-spacing:-0.742816pt;}
.ws37{word-spacing:-0.690740pt;}
.ws9e{word-spacing:-0.637606pt;}
.wsd7{word-spacing:-0.593184pt;}
.ws4e{word-spacing:-0.584473pt;}
.ws100{word-spacing:-0.577954pt;}
.ws48{word-spacing:-0.531339pt;}
.ws171{word-spacing:-0.526029pt;}
.ws101{word-spacing:-0.482563pt;}
.ws110{word-spacing:-0.478205pt;}
.ws18c{word-spacing:-0.430387pt;}
.ws4f{word-spacing:-0.425071pt;}
.ws67{word-spacing:-0.371937pt;}
.ws177{word-spacing:-0.334746pt;}
.ws113{word-spacing:-0.318803pt;}
.ws8d{word-spacing:-0.299264pt;}
.ws12c{word-spacing:-0.293920pt;}
.ws16c{word-spacing:-0.286925pt;}
.ws132{word-spacing:-0.283232pt;}
.wsd8{word-spacing:-0.277888pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws105{word-spacing:-0.263726pt;}
.ws8e{word-spacing:-0.261856pt;}
.wsf9{word-spacing:-0.252504pt;}
.wse6{word-spacing:-0.250253pt;}
.ws17f{word-spacing:-0.239104pt;}
.ws78{word-spacing:-0.238336pt;}
.wsf0{word-spacing:-0.235670pt;}
.ws122{word-spacing:-0.229792pt;}
.ws31{word-spacing:-0.212535pt;}
.ws147{word-spacing:-0.191283pt;}
.wsf8{word-spacing:-0.168336pt;}
.ws30{word-spacing:-0.159402pt;}
.ws92{word-spacing:-0.144288pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws99{word-spacing:-0.133600pt;}
.ws95{word-spacing:-0.128256pt;}
.ws90{word-spacing:-0.122912pt;}
.ws96{word-spacing:-0.117568pt;}
.wse5{word-spacing:-0.116189pt;}
.ws77{word-spacing:-0.110656pt;}
.ws36{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws137{word-spacing:-0.090848pt;}
.ws2{word-spacing:-0.053134pt;}
.ws71{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws9d{word-spacing:-0.026720pt;}
.ws176{word-spacing:-0.023535pt;}
.ws16a{word-spacing:-0.007927pt;}
.ws14c{word-spacing:-0.004847pt;}
.ws32{word-spacing:-0.002739pt;}
.ws15c{word-spacing:-0.002569pt;}
.wsa{word-spacing:-0.002543pt;}
.ws3{word-spacing:-0.002348pt;}
.ws180{word-spacing:-0.001937pt;}
.ws0{word-spacing:0.000000pt;}
.ws150{word-spacing:0.000026pt;}
.ws4{word-spacing:0.001593pt;}
.ws8f{word-spacing:0.026720pt;}
.ws8a{word-spacing:0.032064pt;}
.ws7d{word-spacing:0.037408pt;}
.ws129{word-spacing:0.042752pt;}
.ws20{word-spacing:0.047821pt;}
.wsb4{word-spacing:0.048096pt;}
.ws2c{word-spacing:0.053134pt;}
.wsb6{word-spacing:0.053440pt;}
.ws118{word-spacing:0.069472pt;}
.wsbd{word-spacing:0.074816pt;}
.ws85{word-spacing:0.081600pt;}
.ws89{word-spacing:0.085504pt;}
.wsbc{word-spacing:0.090848pt;}
.ws1a{word-spacing:0.095642pt;}
.ws11a{word-spacing:0.096192pt;}
.wsba{word-spacing:0.101536pt;}
.ws24{word-spacing:0.106268pt;}
.ws9b{word-spacing:0.106880pt;}
.ws8c{word-spacing:0.124800pt;}
.ws84{word-spacing:0.134400pt;}
.wsbb{word-spacing:0.139200pt;}
.wsf2{word-spacing:0.141120pt;}
.ws1f{word-spacing:0.143462pt;}
.ws119{word-spacing:0.148800pt;}
.ws9a{word-spacing:0.149632pt;}
.ws94{word-spacing:0.154976pt;}
.ws8b{word-spacing:0.158400pt;}
.ws25{word-spacing:0.159402pt;}
.ws98{word-spacing:0.160320pt;}
.ws93{word-spacing:0.176352pt;}
.wsf3{word-spacing:0.181440pt;}
.ws133{word-spacing:0.181696pt;}
.wsd{word-spacing:0.185968pt;}
.ws9c{word-spacing:0.187040pt;}
.ws19{word-spacing:0.191283pt;}
.ws86{word-spacing:0.211200pt;}
.ws2e{word-spacing:0.212535pt;}
.ws91{word-spacing:0.213760pt;}
.ws97{word-spacing:0.229792pt;}
.ws14d{word-spacing:0.239104pt;}
.wsf{word-spacing:0.260355pt;}
.ws4a{word-spacing:0.265669pt;}
.ws14a{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.ws10f{word-spacing:0.371937pt;}
.ws11c{word-spacing:0.374080pt;}
.wsd2{word-spacing:0.422176pt;}
.ws54{word-spacing:0.425071pt;}
.ws1c{word-spacing:0.430387pt;}
.wsf7{word-spacing:0.432062pt;}
.wsd3{word-spacing:0.443552pt;}
.ws2a{word-spacing:0.478205pt;}
.ws15d{word-spacing:0.478208pt;}
.ws5c{word-spacing:0.531339pt;}
.ws4c{word-spacing:0.584473pt;}
.wsc0{word-spacing:0.641280pt;}
.ws17e{word-spacing:0.669491pt;}
.wsc6{word-spacing:0.678688pt;}
.ws53{word-spacing:0.690740pt;}
.wsc7{word-spacing:0.737472pt;}
.ws10d{word-spacing:0.743874pt;}
.ws107{word-spacing:0.757512pt;}
.wsc1{word-spacing:0.774880pt;}
.ws108{word-spacing:0.813624pt;}
.ws4d{word-spacing:0.850142pt;}
.ws11e{word-spacing:0.855040pt;}
.ws17c{word-spacing:0.860774pt;}
.ws11d{word-spacing:0.945888pt;}
.ws56{word-spacing:0.956410pt;}
.ws157{word-spacing:0.956416pt;}
.ws6b{word-spacing:1.009543pt;}
.ws61{word-spacing:1.115811pt;}
.ws125{word-spacing:1.127584pt;}
.ws124{word-spacing:1.148960pt;}
.ws158{word-spacing:1.195520pt;}
.ws141{word-spacing:1.222079pt;}
.ws18a{word-spacing:1.243341pt;}
.ws38{word-spacing:1.275213pt;}
.wscf{word-spacing:1.314624pt;}
.ws123{word-spacing:1.319968pt;}
.wsa0{word-spacing:1.328347pt;}
.wsb0{word-spacing:1.336000pt;}
.ws60{word-spacing:1.381481pt;}
.ws16b{word-spacing:1.386803pt;}
.ws10b{word-spacing:1.397189pt;}
.ws5a{word-spacing:1.434614pt;}
.ws10c{word-spacing:1.436467pt;}
.ws106{word-spacing:1.447690pt;}
.ws45{word-spacing:1.487748pt;}
.ws15a{word-spacing:1.578086pt;}
.ws26{word-spacing:1.594016pt;}
.ws49{word-spacing:1.647150pt;}
.ws63{word-spacing:1.700284pt;}
.ws109{word-spacing:1.728250pt;}
.ws73{word-spacing:1.753418pt;}
.wse{word-spacing:1.785293pt;}
.ws52{word-spacing:1.806551pt;}
.ws3e{word-spacing:1.859685pt;}
.ws1d{word-spacing:1.865011pt;}
.ws3f{word-spacing:1.912819pt;}
.ws5e{word-spacing:1.965953pt;}
.ws135{word-spacing:1.998656pt;}
.ws144{word-spacing:2.019087pt;}
.ws134{word-spacing:2.025376pt;}
.ws164{word-spacing:2.056294pt;}
.wsb5{word-spacing:2.062784pt;}
.ws10a{word-spacing:2.109811pt;}
.ws47{word-spacing:2.125355pt;}
.wsa3{word-spacing:2.178489pt;}
.ws163{word-spacing:2.199757pt;}
.ws9{word-spacing:2.231357pt;}
.ws184{word-spacing:2.247578pt;}
.ws62{word-spacing:2.284756pt;}
.ws145{word-spacing:2.337890pt;}
.ws170{word-spacing:2.391040pt;}
.wsb7{word-spacing:2.399456pt;}
.wsad{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws18e{word-spacing:2.582323pt;}
.ws69{word-spacing:2.603559pt;}
.wsd0{word-spacing:2.613216pt;}
.ws12a{word-spacing:2.629248pt;}
.ws34{word-spacing:2.656693pt;}
.ws138{word-spacing:2.682688pt;}
.ws139{word-spacing:2.693376pt;}
.ws28{word-spacing:2.709827pt;}
.ws12b{word-spacing:2.730784pt;}
.ws146{word-spacing:2.762961pt;}
.ws3d{word-spacing:2.816095pt;}
.ws162{word-spacing:2.821427pt;}
.ws16d{word-spacing:2.848333pt;}
.ws21{word-spacing:2.861926pt;}
.ws185{word-spacing:2.863915pt;}
.ws160{word-spacing:2.864137pt;}
.ws15e{word-spacing:2.864922pt;}
.ws14b{word-spacing:2.865143pt;}
.ws16f{word-spacing:2.865621pt;}
.ws18b{word-spacing:2.865638pt;}
.ws18d{word-spacing:2.866381pt;}
.ws149{word-spacing:2.866509pt;}
.ws181{word-spacing:2.866739pt;}
.ws175{word-spacing:2.866790pt;}
.ws161{word-spacing:2.867209pt;}
.ws174{word-spacing:2.867524pt;}
.ws14f{word-spacing:2.867857pt;}
.ws188{word-spacing:2.868002pt;}
.wsaa{word-spacing:2.869229pt;}
.ws14e{word-spacing:2.869248pt;}
.ws172{word-spacing:2.870007pt;}
.ws183{word-spacing:2.871817pt;}
.ws15b{word-spacing:2.871927pt;}
.ws173{word-spacing:2.917069pt;}
.ws75{word-spacing:2.922363pt;}
.wsd6{word-spacing:2.923168pt;}
.ws168{word-spacing:2.964890pt;}
.wsa6{word-spacing:2.975497pt;}
.ws166{word-spacing:3.012710pt;}
.ws165{word-spacing:3.058601pt;}
.ws153{word-spacing:3.060531pt;}
.ws58{word-spacing:3.081764pt;}
.wsfc{word-spacing:3.108605pt;}
.ws2b{word-spacing:3.134898pt;}
.wsfd{word-spacing:3.153494pt;}
.ws22{word-spacing:3.188032pt;}
.ws6f{word-spacing:3.241166pt;}
.ws39{word-spacing:3.294300pt;}
.ws127{word-spacing:3.297248pt;}
.wsde{word-spacing:3.400567pt;}
.ws103{word-spacing:3.445277pt;}
.wsab{word-spacing:3.453701pt;}
.wsae{word-spacing:3.548416pt;}
.ws44{word-spacing:3.559969pt;}
.ws104{word-spacing:3.563112pt;}
.ws5d{word-spacing:3.666237pt;}
.ws68{word-spacing:3.719371pt;}
.ws169{word-spacing:3.777843pt;}
.ws151{word-spacing:3.825664pt;}
.ws186{word-spacing:3.873485pt;}
.ws111{word-spacing:3.878772pt;}
.wsaf{word-spacing:3.911808pt;}
.wsb3{word-spacing:3.917152pt;}
.wsb2{word-spacing:3.927840pt;}
.ws143{word-spacing:3.931906pt;}
.ws11f{word-spacing:3.981280pt;}
.ws66{word-spacing:3.985040pt;}
.ws76{word-spacing:4.091308pt;}
.wsfe{word-spacing:4.124232pt;}
.wsff{word-spacing:4.141066pt;}
.ws13f{word-spacing:4.250709pt;}
.ws9f{word-spacing:4.303843pt;}
.ws5f{word-spacing:4.410111pt;}
.wsf6{word-spacing:4.416014pt;}
.ws42{word-spacing:4.463245pt;}
.ws64{word-spacing:4.516379pt;}
.ws7b{word-spacing:4.526368pt;}
.ws81{word-spacing:4.542400pt;}
.ws7c{word-spacing:4.569120pt;}
.ws41{word-spacing:4.569513pt;}
.ws12d{word-spacing:4.574464pt;}
.ws12e{word-spacing:4.585152pt;}
.ws167{word-spacing:4.686438pt;}
.ws83{word-spacing:4.713408pt;}
.wsa4{word-spacing:4.728914pt;}
.ws82{word-spacing:4.766848pt;}
.wsa9{word-spacing:4.782048pt;}
.ws57{word-spacing:4.888316pt;}
.wsbe{word-spacing:4.911136pt;}
.ws17d{word-spacing:4.925542pt;}
.ws142{word-spacing:4.994583pt;}
.wsbf{word-spacing:4.996640pt;}
.ws16e{word-spacing:5.116826pt;}
.ws102{word-spacing:5.134248pt;}
.ws65{word-spacing:5.153985pt;}
.ws182{word-spacing:5.212467pt;}
.ws50{word-spacing:5.260253pt;}
.ws15{word-spacing:5.393072pt;}
.ws46{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.ws51{word-spacing:5.472788pt;}
.ws13b{word-spacing:5.504320pt;}
.wsc5{word-spacing:5.509664pt;}
.wsc4{word-spacing:5.536384pt;}
.ws13a{word-spacing:5.541728pt;}
.wsb1{word-spacing:5.552416pt;}
.ws115{word-spacing:5.632190pt;}
.ws6a{word-spacing:5.685324pt;}
.ws126{word-spacing:5.696704pt;}
.wsf5{word-spacing:5.745869pt;}
.wsf4{word-spacing:5.813203pt;}
.ws7e{word-spacing:5.819616pt;}
.ws18f{word-spacing:5.834138pt;}
.ws6c{word-spacing:6.004127pt;}
.ws13d{word-spacing:6.057261pt;}
.ws17a{word-spacing:6.121062pt;}
.wsdd{word-spacing:6.216662pt;}
.ws156{word-spacing:6.216704pt;}
.ws3c{word-spacing:6.322930pt;}
.ws17b{word-spacing:6.407987pt;}
.wscb{word-spacing:6.492960pt;}
.wsca{word-spacing:6.498304pt;}
.ws12f{word-spacing:6.503648pt;}
.ws128{word-spacing:6.514336pt;}
.ws114{word-spacing:6.748001pt;}
.wsac{word-spacing:6.801135pt;}
.wsb9{word-spacing:6.808256pt;}
.wsb8{word-spacing:6.856352pt;}
.ws159{word-spacing:6.886195pt;}
.ws3b{word-spacing:6.907403pt;}
.ws55{word-spacing:7.119938pt;}
.wsd9{word-spacing:7.369376pt;}
.wsda{word-spacing:7.422816pt;}
.ws2f{word-spacing:7.438741pt;}
.wsa2{word-spacing:7.491875pt;}
.ws13{word-spacing:7.699075pt;}
.ws155{word-spacing:7.794790pt;}
.ws154{word-spacing:7.842611pt;}
.ws130{word-spacing:8.732096pt;}
.ws131{word-spacing:8.753472pt;}
.ws59{word-spacing:12.964663pt;}
.wsc{word-spacing:13.761632pt;}
.ws8{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws152{word-spacing:14.728806pt;}
.wsd4{word-spacing:14.829600pt;}
.wsd5{word-spacing:14.899072pt;}
.ws187{word-spacing:14.920090pt;}
.ws12{word-spacing:15.732893pt;}
.ws13e{word-spacing:21.784885pt;}
.ws14{word-spacing:24.399002pt;}
.wse7{word-spacing:220.671662pt;}
.wseb{word-spacing:269.702328pt;}
.wsea{word-spacing:303.969926pt;}
.wse9{word-spacing:344.937298pt;}
.wse8{word-spacing:386.325509pt;}
.wsec{word-spacing:396.044107pt;}
.wsed{word-spacing:399.758722pt;}
.wsdf{word-spacing:402.507674pt;}
.wsee{word-spacing:421.872461pt;}
.wse2{word-spacing:443.585741pt;}
.wse0{word-spacing:465.392026pt;}
.wsf1{word-spacing:469.528382pt;}
.wse1{word-spacing:472.373862pt;}
.wsef{word-spacing:495.800021pt;}
.ws70{word-spacing:819.600691pt;}
._6a{margin-left:-126.731970pt;}
._6b{margin-left:-88.561570pt;}
._1{margin-left:-10.616218pt;}
._11{margin-left:-6.641698pt;}
._9{margin-left:-5.260288pt;}
._7{margin-left:-4.016909pt;}
._8{margin-left:-2.666656pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._2{width:2.666656pt;}
._1a{width:4.044900pt;}
._7e{width:10.424896pt;}
._6{width:11.530016pt;}
._e{width:13.175632pt;}
._a{width:14.489702pt;}
._b{width:15.972147pt;}
._d{width:17.023017pt;}
._12{width:18.331184pt;}
._16{width:19.765798pt;}
._c{width:20.722654pt;}
._13{width:21.891153pt;}
._14{width:23.113267pt;}
._1b{width:24.707248pt;}
._17{width:26.301264pt;}
._1c{width:27.948414pt;}
._0{width:29.648896pt;}
._18{width:30.605107pt;}
._5b{width:31.561517pt;}
._19{width:33.208667pt;}
._15{width:38.256384pt;}
._7a{width:48.738883pt;}
._7d{width:54.993920pt;}
._3{width:61.643637pt;}
._41{width:72.713143pt;}
._76{width:79.925933pt;}
._34{width:82.412503pt;}
._30{width:87.735127pt;}
._75{width:96.473362pt;}
._69{width:105.614006pt;}
._79{width:106.570841pt;}
._73{width:118.654435pt;}
._71{width:122.352216pt;}
._3e{width:132.619383pt;}
._4a{width:143.746756pt;}
._40{width:144.942647pt;}
._33{width:150.337408pt;}
._35{width:152.450967pt;}
._31{width:153.356768pt;}
._74{width:154.490489pt;}
._36{width:157.971319pt;}
._6e{width:166.978090pt;}
._2e{width:170.799584pt;}
._72{width:175.899898pt;}
._70{width:179.524733pt;}
._3c{width:180.691328pt;}
._6c{width:185.231323pt;}
._37{width:192.619136pt;}
._2f{width:203.814816pt;}
._3b{width:213.129408pt;}
._6d{width:214.454453pt;}
._5f{width:224.327373pt;}
._32{width:228.725879pt;}
._39{width:241.631639pt;}
._6f{width:248.738885pt;}
._38{width:264.316919pt;}
._44{width:267.695933pt;}
._5a{width:270.809190pt;}
._47{width:276.738970pt;}
._60{width:285.490176pt;}
._57{width:288.933274pt;}
._42{width:295.055607pt;}
._2d{width:297.270688pt;}
._58{width:299.597312pt;}
._49{width:300.649370pt;}
._59{width:303.375155pt;}
._67{width:304.379392pt;}
._77{width:310.366694pt;}
._50{width:313.226240pt;}
._45{width:324.797632pt;}
._46{width:327.084855pt;}
._4b{width:330.517521pt;}
._3d{width:339.183680pt;}
._48{width:346.270413pt;}
._3a{width:359.343927pt;}
._51{width:376.158413pt;}
._5e{width:379.697152pt;}
._4c{width:392.417485pt;}
._53{width:411.928371pt;}
._4d{width:422.209843pt;}
._66{width:425.270374pt;}
._4f{width:431.487078pt;}
._62{width:437.129933pt;}
._52{width:438.612378pt;}
._3f{width:440.366976pt;}
._4e{width:444.494336pt;}
._56{width:460.609946pt;}
._5c{width:462.827081pt;}
._54{width:476.821197pt;}
._61{width:484.385007pt;}
._5d{width:496.140800pt;}
._43{width:510.603168pt;}
._55{width:514.264883pt;}
._65{width:519.333888pt;}
._64{width:531.002163pt;}
._63{width:554.529997pt;}
._78{width:576.466632pt;}
._f{width:608.745611pt;}
._22{width:641.755136pt;}
._2a{width:723.767808pt;}
._1e{width:752.362078pt;}
._1f{width:775.940301pt;}
._20{width:809.271398pt;}
._1d{width:829.595238pt;}
._29{width:844.419686pt;}
._23{width:852.501402pt;}
._25{width:853.792563pt;}
._28{width:857.905152pt;}
._24{width:870.816768pt;}
._2b{width:872.299213pt;}
._21{width:873.351270pt;}
._26{width:893.196902pt;}
._27{width:904.865178pt;}
._7c{width:1799.083552pt;}
._2c{width:1820.533792pt;}
._68{width:1889.037730pt;}
._7b{width:2119.746133pt;}
._10{width:2140.999467pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fsd{font-size:44.688000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fsf{font-size:50.400000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fse{font-size:56.112000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y1dd{bottom:-493.753744pt;}
.y1dc{bottom:-476.714400pt;}
.y1db{bottom:-459.594896pt;}
.y1da{bottom:-442.475392pt;}
.y112{bottom:-431.389795pt;}
.y165{bottom:-428.956611pt;}
.y1d9{bottom:-425.436048pt;}
.y111{bottom:-413.389867pt;}
.y164{bottom:-411.837107pt;}
.y1d8{bottom:-408.316544pt;}
.y110{bottom:-395.389939pt;}
.y163{bottom:-394.717603pt;}
.y1d7{bottom:-391.197040pt;}
.y162{bottom:-377.678259pt;}
.y10f{bottom:-377.390011pt;}
.y1d6{bottom:-374.157696pt;}
.y161{bottom:-360.558755pt;}
.y10e{bottom:-359.390083pt;}
.y1d5{bottom:-357.038192pt;}
.y10d{bottom:-350.430867pt;}
.y160{bottom:-343.439251pt;}
.y1d4{bottom:-339.998848pt;}
.y1b9{bottom:-334.862360pt;}
.y15f{bottom:-326.399907pt;}
.y10c{bottom:-323.470387pt;}
.y1d3{bottom:-322.879344pt;}
.y1b8{bottom:-316.886881pt;}
.y10b{bottom:-314.431011pt;}
.y15e{bottom:-309.280403pt;}
.y1d2{bottom:-305.759840pt;}
.y1b7{bottom:-298.911402pt;}
.y15d{bottom:-292.241059pt;}
.y1d1{bottom:-288.720496pt;}
.y10a{bottom:-287.470531pt;}
.y1b6{bottom:-281.020090pt;}
.y15c{bottom:-275.121555pt;}
.y1d0{bottom:-271.600992pt;}
.y109{bottom:-269.470603pt;}
.y1b5{bottom:-263.044611pt;}
.y15b{bottom:-258.002051pt;}
.y1cf{bottom:-254.561648pt;}
.y108{bottom:-251.470675pt;}
.y1b4{bottom:-245.153300pt;}
.y15a{bottom:-240.962707pt;}
.y1ce{bottom:-237.442144pt;}
.y107{bottom:-233.470747pt;}
.y1b3{bottom:-227.177821pt;}
.y159{bottom:-223.843203pt;}
.y1cd{bottom:-220.322640pt;}
.y106{bottom:-215.549643pt;}
.y1b2{bottom:-209.202342pt;}
.y158{bottom:-206.803859pt;}
.y105{bottom:-206.510267pt;}
.y1cc{bottom:-203.283296pt;}
.y1b1{bottom:-191.311030pt;}
.y157{bottom:-189.684355pt;}
.y1cb{bottom:-186.163792pt;}
.y104{bottom:-179.550061pt;}
.y1b0{bottom:-173.335551pt;}
.y156{bottom:-172.564851pt;}
.y1ca{bottom:-169.124448pt;}
.y103{bottom:-161.550133pt;}
.y155{bottom:-155.525507pt;}
.y1af{bottom:-155.444240pt;}
.y1c9{bottom:-152.004944pt;}
.y102{bottom:-142.830267pt;}
.y154{bottom:-138.406003pt;}
.y1ae{bottom:-137.468761pt;}
.y1c8{bottom:-134.885440pt;}
.y153{bottom:-121.365323pt;}
.y1ad{bottom:-119.493282pt;}
.y1c7{bottom:-117.846096pt;}
.y101{bottom:-116.110267pt;}
.y152{bottom:-104.245819pt;}
.y1ac{bottom:-101.601970pt;}
.y1c6{bottom:-100.726592pt;}
.y151{bottom:-87.126315pt;}
.y100{bottom:-84.349611pt;}
.y1ab{bottom:-83.626491pt;}
.y1c5{bottom:-83.607088pt;}
.y150{bottom:-70.086971pt;}
.yff{bottom:-67.310267pt;}
.y1aa{bottom:-65.735180pt;}
.y1c4{bottom:-62.487600pt;}
.y14f{bottom:-52.967467pt;}
.yfe{bottom:-34.510267pt;}
.y1a9{bottom:-31.295040pt;}
.y1c3{bottom:-29.847600pt;}
.y14e{bottom:-20.247600pt;}
.yfd{bottom:-14.588995pt;}
.y1a8{bottom:-1.979040pt;}
.y1c2{bottom:-1.847048pt;}
.y14d{bottom:-0.245488pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y4b{bottom:28.346667pt;}
.y223{bottom:80.773333pt;}
.y1bc{bottom:81.494667pt;}
.y1fd{bottom:87.684000pt;}
.y188{bottom:88.714667pt;}
.y23{bottom:91.398667pt;}
.y259{bottom:92.050667pt;}
.yd7{bottom:94.441333pt;}
.y202{bottom:94.840000pt;}
.y222{bottom:96.116000pt;}
.y82{bottom:97.214667pt;}
.y4a{bottom:97.493333pt;}
.y1bb{bottom:98.232000pt;}
.y132{bottom:99.414667pt;}
.y1fc{bottom:104.421333pt;}
.y187{bottom:105.452000pt;}
.y22{bottom:107.298667pt;}
.y258{bottom:107.393333pt;}
.yb6{bottom:111.178667pt;}
.y221{bottom:111.458667pt;}
.y201{bottom:111.577333pt;}
.y81{bottom:113.952000pt;}
.y49{bottom:114.230667pt;}
.y131{bottom:116.152000pt;}
.y1fb{bottom:121.158667pt;}
.y186{bottom:122.189333pt;}
.y257{bottom:122.736000pt;}
.y21{bottom:123.200000pt;}
.y220{bottom:126.801333pt;}
.yb5{bottom:127.916000pt;}
.y1ba{bottom:128.068000pt;}
.y200{bottom:128.314667pt;}
.y80{bottom:130.689333pt;}
.y48{bottom:130.968000pt;}
.y130{bottom:132.888000pt;}
.yf2{bottom:135.584000pt;}
.y1fa{bottom:137.896000pt;}
.y256{bottom:138.078667pt;}
.y185{bottom:138.926667pt;}
.y20{bottom:139.100000pt;}
.y21f{bottom:142.142667pt;}
.yb4{bottom:144.653333pt;}
.y1ff{bottom:145.052000pt;}
.y7f{bottom:147.426667pt;}
.y47{bottom:147.705333pt;}
.y198{bottom:148.005333pt;}
.y12f{bottom:149.625333pt;}
.yf1{bottom:152.321333pt;}
.y255{bottom:153.421333pt;}
.y1f9{bottom:154.633333pt;}
.y1f{bottom:155.000000pt;}
.y184{bottom:155.662667pt;}
.y21e{bottom:157.485333pt;}
.yb3{bottom:161.390667pt;}
.y1fe{bottom:161.789333pt;}
.y7e{bottom:164.164000pt;}
.y46{bottom:164.442667pt;}
.y12e{bottom:166.362667pt;}
.y254{bottom:168.762667pt;}
.yf0{bottom:169.058667pt;}
.y1e{bottom:170.901333pt;}
.y1f8{bottom:171.370667pt;}
.y183{bottom:172.400000pt;}
.y21d{bottom:172.828000pt;}
.yb2{bottom:178.128000pt;}
.y13f{bottom:178.526667pt;}
.y7d{bottom:180.901333pt;}
.y45{bottom:181.180000pt;}
.y12d{bottom:183.100000pt;}
.y253{bottom:184.105333pt;}
.yef{bottom:185.794667pt;}
.y1d{bottom:186.801333pt;}
.y1f7{bottom:188.108000pt;}
.y21c{bottom:188.170667pt;}
.y182{bottom:189.137333pt;}
.yb1{bottom:194.865333pt;}
.y13e{bottom:195.264000pt;}
.y7c{bottom:197.638667pt;}
.y44{bottom:197.916000pt;}
.y252{bottom:199.448000pt;}
.y12c{bottom:199.837333pt;}
.yee{bottom:202.532000pt;}
.y1c{bottom:202.701333pt;}
.y21b{bottom:203.513333pt;}
.y1f6{bottom:204.845333pt;}
.y181{bottom:205.874667pt;}
.yb0{bottom:211.602667pt;}
.y13d{bottom:212.001333pt;}
.y7b{bottom:214.376000pt;}
.y43{bottom:214.653333pt;}
.y251{bottom:214.790667pt;}
.y12b{bottom:216.574667pt;}
.y21a{bottom:218.856000pt;}
.yed{bottom:219.269333pt;}
.y1f5{bottom:221.582667pt;}
.y180{bottom:222.612000pt;}
.yaf{bottom:228.340000pt;}
.y13c{bottom:228.738667pt;}
.y250{bottom:230.133333pt;}
.y7a{bottom:231.113333pt;}
.y42{bottom:231.390667pt;}
.y12a{bottom:233.312000pt;}
.y219{bottom:234.198667pt;}
.yec{bottom:236.006667pt;}
.y1f4{bottom:238.320000pt;}
.y17f{bottom:239.349333pt;}
.yae{bottom:245.077333pt;}
.y13b{bottom:245.476000pt;}
.y79{bottom:247.850667pt;}
.y41{bottom:248.128000pt;}
.y218{bottom:249.541333pt;}
.y129{bottom:250.049333pt;}
.yeb{bottom:252.744000pt;}
.y1f3{bottom:255.057333pt;}
.y17e{bottom:256.086667pt;}
.y24f{bottom:260.818667pt;}
.yad{bottom:261.814667pt;}
.y13a{bottom:262.213333pt;}
.y78{bottom:264.588000pt;}
.y40{bottom:264.865333pt;}
.y217{bottom:264.884000pt;}
.y128{bottom:266.786667pt;}
.yea{bottom:269.481333pt;}
.y1f2{bottom:271.794667pt;}
.y17d{bottom:272.824000pt;}
.y1b{bottom:273.154667pt;}
.y24e{bottom:276.161333pt;}
.yac{bottom:278.552000pt;}
.y139{bottom:278.950667pt;}
.y216{bottom:280.225333pt;}
.y77{bottom:281.325333pt;}
.y3f{bottom:281.602667pt;}
.y127{bottom:283.524000pt;}
.y1f1{bottom:288.532000pt;}
.y1a{bottom:289.054667pt;}
.y17c{bottom:289.561333pt;}
.y24d{bottom:291.502667pt;}
.yab{bottom:295.289333pt;}
.y215{bottom:295.568000pt;}
.y138{bottom:295.688000pt;}
.y76{bottom:298.062667pt;}
.y3e{bottom:298.340000pt;}
.y126{bottom:300.261333pt;}
.y19{bottom:304.954667pt;}
.y1f0{bottom:305.269333pt;}
.y17b{bottom:306.298667pt;}
.y24c{bottom:306.845333pt;}
.ye9{bottom:309.892000pt;}
.y214{bottom:310.910667pt;}
.yaa{bottom:312.026667pt;}
.y137{bottom:312.425333pt;}
.y75{bottom:314.800000pt;}
.y3d{bottom:315.077333pt;}
.y125{bottom:316.998667pt;}
.y14c{bottom:320.474672pt;}
.y18{bottom:320.856000pt;}
.y1ef{bottom:322.006667pt;}
.y24b{bottom:322.188000pt;}
.y17a{bottom:323.036000pt;}
.ye8{bottom:324.504000pt;}
.y213{bottom:326.253333pt;}
.ya9{bottom:328.764000pt;}
.y136{bottom:329.162667pt;}
.y74{bottom:331.537333pt;}
.y3c{bottom:331.814667pt;}
.y124{bottom:333.736000pt;}
.y24a{bottom:337.530667pt;}
.y14b{bottom:337.594176pt;}
.y1ee{bottom:338.744000pt;}
.ye7{bottom:339.116000pt;}
.y179{bottom:339.773333pt;}
.y212{bottom:341.596000pt;}
.ya8{bottom:345.501333pt;}
.y135{bottom:345.900000pt;}
.y73{bottom:348.274667pt;}
.y3b{bottom:348.552000pt;}
.y123{bottom:350.473333pt;}
.y249{bottom:352.873333pt;}
.ye6{bottom:353.728000pt;}
.y17{bottom:354.688000pt;}
.y14a{bottom:354.713680pt;}
.y1ed{bottom:355.481333pt;}
.y178{bottom:356.510667pt;}
.y211{bottom:356.938667pt;}
.yfc{bottom:361.171693pt;}
.ya7{bottom:362.238667pt;}
.y134{bottom:362.637333pt;}
.y72{bottom:365.012000pt;}
.y3a{bottom:365.289333pt;}
.yd6{bottom:366.224000pt;}
.y122{bottom:367.210667pt;}
.y248{bottom:368.216000pt;}
.ye5{bottom:368.340000pt;}
.y16{bottom:370.589333pt;}
.y149{bottom:371.754360pt;}
.y1ec{bottom:372.218667pt;}
.y210{bottom:372.281333pt;}
.y177{bottom:373.248000pt;}
.yfb{bottom:378.291197pt;}
.ya6{bottom:378.976000pt;}
.y133{bottom:379.374667pt;}
.y71{bottom:381.749333pt;}
.y39{bottom:382.026667pt;}
.ye4{bottom:382.952000pt;}
.y247{bottom:383.558667pt;}
.y1c1{bottom:386.232896pt;}
.y15{bottom:386.489333pt;}
.y20f{bottom:387.624000pt;}
.y148{bottom:388.873864pt;}
.y1eb{bottom:388.956000pt;}
.y176{bottom:389.985333pt;}
.yfa{bottom:395.331877pt;}
.ya5{bottom:395.713333pt;}
.yd5{bottom:396.112000pt;}
.ye3{bottom:397.564000pt;}
.y70{bottom:398.486667pt;}
.y38{bottom:398.764000pt;}
.y246{bottom:398.901333pt;}
.y20e{bottom:402.965333pt;}
.y1c0{bottom:403.352400pt;}
.y1ea{bottom:405.692000pt;}
.y147{bottom:405.914544pt;}
.y175{bottom:406.722667pt;}
.y1a7{bottom:407.101820pt;}
.y121{bottom:407.621333pt;}
.ye2{bottom:412.176000pt;}
.ya4{bottom:412.450667pt;}
.yf9{bottom:412.451381pt;}
.yd4{bottom:412.848000pt;}
.y245{bottom:414.244000pt;}
.y6f{bottom:415.224000pt;}
.y37{bottom:415.501333pt;}
.y20d{bottom:418.308000pt;}
.y14{bottom:418.330667pt;}
.y120{bottom:422.233333pt;}
.y1e9{bottom:422.429333pt;}
.y146{bottom:423.034048pt;}
.y174{bottom:423.460000pt;}
.y1a6{bottom:426.001744pt;}
.ye1{bottom:426.788000pt;}
.ya3{bottom:429.188000pt;}
.yf8{bottom:429.570885pt;}
.yd3{bottom:429.585333pt;}
.y6e{bottom:431.961333pt;}
.y36{bottom:432.238667pt;}
.y13{bottom:434.230667pt;}
.y11f{bottom:436.845333pt;}
.y20c{bottom:437.636000pt;}
.y1e8{bottom:439.166667pt;}
.y145{bottom:440.153552pt;}
.y173{bottom:440.197333pt;}
.ye0{bottom:441.398667pt;}
.y1a5{bottom:444.901668pt;}
.y244{bottom:444.928000pt;}
.ya2{bottom:445.925333pt;}
.yd2{bottom:446.322667pt;}
.yf7{bottom:446.610229pt;}
.y6d{bottom:448.698667pt;}
.y35{bottom:448.976000pt;}
.y11e{bottom:451.457333pt;}
.y1bf{bottom:451.832920pt;}
.y1e7{bottom:455.904000pt;}
.ydf{bottom:456.010667pt;}
.y172{bottom:456.934667pt;}
.y144{bottom:457.192896pt;}
.y243{bottom:460.270667pt;}
.y1be{bottom:460.552400pt;}
.ya1{bottom:462.662667pt;}
.yd1{bottom:463.060000pt;}
.yf6{bottom:463.729733pt;}
.y1a4{bottom:463.801593pt;}
.y6c{bottom:465.436000pt;}
.y11d{bottom:466.069333pt;}
.y12{bottom:466.070667pt;}
.y20b{bottom:467.524000pt;}
.y34{bottom:469.698667pt;}
.yde{bottom:470.622667pt;}
.y1e6{bottom:472.641333pt;}
.y171{bottom:473.672000pt;}
.y143{bottom:474.312400pt;}
.y242{bottom:475.613333pt;}
.ya0{bottom:479.398667pt;}
.yd0{bottom:479.797333pt;}
.y11c{bottom:480.680000pt;}
.y11{bottom:481.972000pt;}
.y6b{bottom:482.173333pt;}
.y1a3{bottom:482.701517pt;}
.ydd{bottom:485.234667pt;}
.y1e5{bottom:489.378667pt;}
.y170{bottom:490.409333pt;}
.y241{bottom:490.956000pt;}
.y20a{bottom:491.116000pt;}
.y11b{bottom:495.292000pt;}
.y9f{bottom:496.136000pt;}
.ycf{bottom:496.534667pt;}
.y10{bottom:497.872000pt;}
.y6a{bottom:498.910667pt;}
.ydc{bottom:499.846667pt;}
.y1a2{bottom:501.601442pt;}
.y1e4{bottom:506.116000pt;}
.y240{bottom:506.298667pt;}
.y16f{bottom:507.146667pt;}
.y11a{bottom:509.904000pt;}
.yf5{bottom:512.210253pt;}
.y9e{bottom:512.873333pt;}
.yce{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.ydb{bottom:514.458667pt;}
.y209{bottom:514.706667pt;}
.y69{bottom:515.648000pt;}
.y1a1{bottom:520.501366pt;}
.yf4{bottom:520.929733pt;}
.y23f{bottom:521.641333pt;}
.y142{bottom:522.792920pt;}
.y1e3{bottom:522.853333pt;}
.y16e{bottom:523.884000pt;}
.y119{bottom:524.516000pt;}
.y9d{bottom:529.610667pt;}
.ye{bottom:529.673333pt;}
.ycd{bottom:530.009333pt;}
.y141{bottom:531.512400pt;}
.y68{bottom:532.384000pt;}
.yda{bottom:535.472000pt;}
.y33{bottom:536.498667pt;}
.y23e{bottom:536.984000pt;}
.y208{bottom:538.298667pt;}
.y118{bottom:539.128000pt;}
.y1a0{bottom:539.317122pt;}
.y1e2{bottom:539.590667pt;}
.y16d{bottom:540.621333pt;}
.y197{bottom:541.690667pt;}
.yd{bottom:545.573333pt;}
.y9c{bottom:546.348000pt;}
.ycc{bottom:546.746667pt;}
.y67{bottom:549.121333pt;}
.y23d{bottom:552.325333pt;}
.y117{bottom:553.740000pt;}
.y196{bottom:556.302667pt;}
.y1e1{bottom:556.328000pt;}
.y16c{bottom:557.358667pt;}
.y19f{bottom:558.217047pt;}
.yc{bottom:561.473333pt;}
.y207{bottom:561.890667pt;}
.y9b{bottom:563.085333pt;}
.ycb{bottom:563.484000pt;}
.yd9{bottom:563.578667pt;}
.y66{bottom:565.858667pt;}
.y23c{bottom:567.668000pt;}
.y19d{bottom:567.708392pt;}
.y116{bottom:568.352000pt;}
.y32{bottom:569.733333pt;}
.y195{bottom:570.914667pt;}
.y1e0{bottom:573.065333pt;}
.y16b{bottom:574.096000pt;}
.y19e{bottom:577.116971pt;}
.yb{bottom:577.374667pt;}
.y9a{bottom:579.822667pt;}
.yca{bottom:580.221333pt;}
.y65{bottom:582.596000pt;}
.y23b{bottom:583.010667pt;}
.y206{bottom:585.481333pt;}
.y194{bottom:585.526667pt;}
.y31{bottom:587.029333pt;}
.y115{bottom:589.365333pt;}
.y16a{bottom:590.833333pt;}
.y1df{bottom:593.788000pt;}
.y19c{bottom:596.016896pt;}
.y99{bottom:596.560000pt;}
.yc9{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y23a{bottom:598.353333pt;}
.y64{bottom:599.333333pt;}
.y193{bottom:600.137333pt;}
.y205{bottom:601.102667pt;}
.y30{bottom:604.324000pt;}
.y169{bottom:607.569333pt;}
.y98{bottom:613.297333pt;}
.yc8{bottom:613.696000pt;}
.y192{bottom:614.749333pt;}
.y19b{bottom:614.916820pt;}
.y63{bottom:616.070667pt;}
.y204{bottom:616.725333pt;}
.y114{bottom:617.472000pt;}
.y2f{bottom:621.618667pt;}
.y168{bottom:624.306667pt;}
.y1de{bottom:624.820000pt;}
.y239{bottom:629.038667pt;}
.y191{bottom:629.361333pt;}
.y97{bottom:630.034667pt;}
.yc7{bottom:630.433333pt;}
.y203{bottom:632.346667pt;}
.y62{bottom:632.808000pt;}
.y2e{bottom:638.914667pt;}
.y167{bottom:641.044000pt;}
.y190{bottom:643.973333pt;}
.y238{bottom:644.381333pt;}
.y1bd{bottom:644.756000pt;}
.y96{bottom:646.772000pt;}
.yc6{bottom:647.170667pt;}
.y113{bottom:647.852000pt;}
.y61{bottom:649.545333pt;}
.y2d{bottom:656.209333pt;}
.y18f{bottom:658.585333pt;}
.y237{bottom:659.724000pt;}
.y95{bottom:663.509333pt;}
.yc5{bottom:663.908000pt;}
.y60{bottom:666.282667pt;}
.y19a{bottom:666.577366pt;}
.yf3{bottom:667.788000pt;}
.y166{bottom:670.881333pt;}
.y18e{bottom:673.197333pt;}
.y2c{bottom:673.505333pt;}
.y236{bottom:675.066667pt;}
.y199{bottom:675.732820pt;}
.y94{bottom:680.246667pt;}
.yc4{bottom:680.645333pt;}
.y5f{bottom:683.020000pt;}
.y18d{bottom:687.809333pt;}
.y235{bottom:690.408000pt;}
.y2b{bottom:690.800000pt;}
.y140{bottom:690.817333pt;}
.y93{bottom:696.984000pt;}
.yc3{bottom:697.382667pt;}
.y5e{bottom:699.757333pt;}
.y18c{bottom:702.421333pt;}
.y234{bottom:705.750667pt;}
.y2a{bottom:708.094667pt;}
.y92{bottom:713.721333pt;}
.yc2{bottom:714.120000pt;}
.y5d{bottom:716.494667pt;}
.y18b{bottom:717.033333pt;}
.y233{bottom:721.093333pt;}
.y29{bottom:725.390667pt;}
.y91{bottom:730.458667pt;}
.yc1{bottom:730.857333pt;}
.y5c{bottom:733.232000pt;}
.y232{bottom:736.436000pt;}
.y18a{bottom:738.046667pt;}
.y28{bottom:742.685333pt;}
.y90{bottom:747.196000pt;}
.yc0{bottom:747.594667pt;}
.y5b{bottom:749.969333pt;}
.y231{bottom:751.778667pt;}
.y8f{bottom:763.933333pt;}
.ybf{bottom:764.332000pt;}
.y189{bottom:766.153333pt;}
.y5a{bottom:766.706667pt;}
.y230{bottom:767.121333pt;}
.y27{bottom:776.984000pt;}
.y8e{bottom:780.670667pt;}
.ybe{bottom:781.069333pt;}
.y22f{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y26{bottom:795.188000pt;}
.y8d{bottom:797.408000pt;}
.ybd{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y25{bottom:805.676000pt;}
.y22e{bottom:813.149333pt;}
.y8c{bottom:814.145333pt;}
.ybc{bottom:814.544000pt;}
.y57{bottom:816.918667pt;}
.y24{bottom:823.880000pt;}
.y22d{bottom:828.490667pt;}
.y8b{bottom:830.882667pt;}
.ybb{bottom:831.281333pt;}
.y56{bottom:833.656000pt;}
.yd8{bottom:834.868000pt;}
.y22c{bottom:843.833333pt;}
.y8a{bottom:847.620000pt;}
.yba{bottom:848.018667pt;}
.y55{bottom:850.393333pt;}
.y22b{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.y89{bottom:864.357333pt;}
.yb9{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.y22a{bottom:874.518667pt;}
.yb8{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y88{bottom:885.078667pt;}
.y229{bottom:889.861333pt;}
.yb7{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y52{bottom:900.605333pt;}
.y228{bottom:905.204000pt;}
.y87{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y227{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y86{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.y226{bottom:935.889333pt;}
.y85{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y225{bottom:951.230667pt;}
.y84{bottom:965.178667pt;}
.y224{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y83{bottom:981.916000pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.he{height:23.374407pt;}
.hc{height:23.379740pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h13{height:31.157778pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h24{height:35.052646pt;}
.h11{height:38.415786pt;}
.h12{height:38.681455pt;}
.h4{height:38.947124pt;}
.h23{height:39.192812pt;}
.h16{height:39.359687pt;}
.h1f{height:41.327672pt;}
.h19{height:41.462969pt;}
.h14{height:43.660390pt;}
.h18{height:44.390625pt;}
.h2{height:45.272024pt;}
.h21{height:46.610156pt;}
.h6{height:48.486756pt;}
.h1c{height:48.511220pt;}
.h17{height:49.421563pt;}
.h20{height:51.892641pt;}
.h3{height:61.782479pt;}
.h5{height:69.148877pt;}
.h1b{height:85.263770pt;}
.h1a{height:85.579067pt;}
.h1d{height:304.382667pt;}
.h15{height:327.412000pt;}
.h22{height:350.444000pt;}
.h1e{height:364.698600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w6{width:506.525460pt;}
.w5{width:507.925333pt;}
.w4{width:537.181333pt;}
.w7{width:561.456933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x94{left:-123.798667pt;}
.x79{left:-103.257333pt;}
.xaa{left:-70.512540pt;}
.xbf{left:-66.532400pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x97{left:55.721333pt;}
.x7a{left:70.582667pt;}
.xd1{left:76.316000pt;}
.x7e{left:77.382667pt;}
.x95{left:78.361239pt;}
.x88{left:80.581860pt;}
.x8c{left:82.592000pt;}
.x7f{left:83.942667pt;}
.x90{left:85.073333pt;}
.x89{left:89.461378pt;}
.x87{left:90.583170pt;}
.x85{left:93.143260pt;}
.x8f{left:94.536000pt;}
.x8e{left:96.724000pt;}
.x7b{left:98.902573pt;}
.xa8{left:100.345333pt;}
.x86{left:101.383089pt;}
.x83{left:103.622667pt;}
.x8d{left:106.072000pt;}
.xa9{left:107.005333pt;}
.xb8{left:112.019559pt;}
.xa6{left:114.961333pt;}
.xbe{left:116.123067pt;}
.x80{left:118.342953pt;}
.xb4{left:119.834135pt;}
.xa7{left:122.510667pt;}
.xab{left:126.047460pt;}
.x78{left:128.260000pt;}
.x7d{left:134.422667pt;}
.xc2{left:135.627506pt;}
.xc1{left:138.507600pt;}
.xaf{left:139.992737pt;}
.xb1{left:141.337485pt;}
.xb2{left:142.261561pt;}
.xb0{left:144.613118pt;}
.xb3{left:147.721884pt;}
.xb5{left:159.649337pt;}
.xac{left:162.083626pt;}
.xad{left:165.948199pt;}
.x8b{left:196.496000pt;}
.x81{left:203.623183pt;}
.xb7{left:217.775460pt;}
.x48{left:221.026667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x5{left:241.085333pt;}
.x82{left:249.302820pt;}
.x8{left:251.365333pt;}
.xc3{left:253.360000pt;}
.xa5{left:255.380000pt;}
.x61{left:258.337333pt;}
.x73{left:261.754667pt;}
.x23{left:267.810667pt;}
.xcb{left:270.504000pt;}
.x62{left:271.621333pt;}
.x32{left:273.770667pt;}
.x7{left:275.057333pt;}
.x93{left:276.592000pt;}
.x77{left:279.485333pt;}
.x24{left:281.094667pt;}
.x25{left:284.392000pt;}
.x8a{left:285.734667pt;}
.x33{left:287.053333pt;}
.x71{left:289.616000pt;}
.xca{left:290.685333pt;}
.xc9{left:292.550667pt;}
.x34{left:293.609333pt;}
.x72{left:295.224000pt;}
.x26{left:297.676000pt;}
.x4b{left:300.618667pt;}
.x55{left:303.616000pt;}
.x29{left:306.221333pt;}
.x70{left:308.733333pt;}
.x3f{left:309.901333pt;}
.x6e{left:311.009333pt;}
.x74{left:311.984000pt;}
.x76{left:313.012000pt;}
.x4c{left:313.902667pt;}
.x40{left:316.544000pt;}
.x2a{left:319.505333pt;}
.x75{left:321.626667pt;}
.xc6{left:323.524000pt;}
.x46{left:325.033333pt;}
.x41{left:326.456000pt;}
.x91{left:328.984000pt;}
.x4d{left:330.573333pt;}
.x35{left:333.680000pt;}
.x65{left:336.785333pt;}
.x47{left:338.317333pt;}
.xba{left:340.592000pt;}
.x6c{left:342.089333pt;}
.x36{left:346.964000pt;}
.xd0{left:348.410667pt;}
.x66{left:350.069333pt;}
.xbb{left:353.876000pt;}
.x6d{left:355.373333pt;}
.x84{left:358.581950pt;}
.x2b{left:378.316000pt;}
.x2d{left:382.996000pt;}
.xcc{left:384.996000pt;}
.x49{left:386.574667pt;}
.x51{left:390.152000pt;}
.x2c{left:391.600000pt;}
.x2e{left:396.280000pt;}
.x99{left:398.230667pt;}
.x4a{left:399.857333pt;}
.xc4{left:401.185333pt;}
.x11{left:404.189333pt;}
.x39{left:406.313333pt;}
.x12{left:410.830667pt;}
.x13{left:414.085333pt;}
.x30{left:418.022667pt;}
.x3a{left:419.597333pt;}
.x14{left:420.728000pt;}
.x9c{left:424.217333pt;}
.x3b{left:427.269333pt;}
.x92{left:428.241333pt;}
.x9f{left:433.562667pt;}
.x31{left:434.682667pt;}
.x52{left:437.798667pt;}
.x3c{left:440.553333pt;}
.x3d{left:443.910667pt;}
.x6f{left:448.634667pt;}
.x53{left:451.082667pt;}
.xb9{left:453.072000pt;}
.x3e{left:457.194667pt;}
.x1d{left:460.224000pt;}
.x1e{left:473.506667pt;}
.x1f{left:480.281333pt;}
.x20{left:493.565333pt;}
.x96{left:504.039904pt;}
.x5f{left:509.214667pt;}
.x4e{left:514.910667pt;}
.x60{left:522.497333pt;}
.x4f{left:528.193333pt;}
.x9a{left:529.217333pt;}
.x27{left:534.933333pt;}
.x9b{left:542.501333pt;}
.x37{left:545.705333pt;}
.x28{left:548.216000pt;}
.x7c{left:549.621237pt;}
.xae{left:553.438994pt;}
.xa0{left:555.742667pt;}
.x38{left:558.988000pt;}
.x67{left:560.804000pt;}
.x63{left:562.092000pt;}
.xc0{left:565.785326pt;}
.x68{left:574.086667pt;}
.x64{left:575.376000pt;}
.x69{left:577.474667pt;}
.x5a{left:581.525333pt;}
.x9{left:587.969333pt;}
.x6a{left:590.757333pt;}
.xb6{left:593.423460pt;}
.xa{left:594.610667pt;}
.x2f{left:595.600000pt;}
.x56{left:597.297333pt;}
.x9d{left:600.400000pt;}
.xb{left:601.385333pt;}
.x9e{left:603.788000pt;}
.x21{left:606.300000pt;}
.xc{left:608.028000pt;}
.x57{left:610.581333pt;}
.x22{left:619.582667pt;}
.xd7{left:620.480000pt;}
.x5b{left:626.532000pt;}
.xcd{left:630.693333pt;}
.xbc{left:635.818667pt;}
.xa1{left:638.305333pt;}
.x5c{left:639.814667pt;}
.xce{left:643.976000pt;}
.xcf{left:647.237333pt;}
.xbd{left:649.102667pt;}
.xa2{left:651.589333pt;}
.xc7{left:652.978667pt;}
.xa3{left:654.846667pt;}
.xc5{left:657.969333pt;}
.x98{left:660.300000pt;}
.x54{left:661.422667pt;}
.x15{left:664.449333pt;}
.xc8{left:666.262667pt;}
.xa4{left:668.130667pt;}
.x16{left:671.092000pt;}
.xd5{left:672.681333pt;}
.x17{left:674.346667pt;}
.xd6{left:675.742667pt;}
.xd4{left:677.690667pt;}
.x18{left:680.988000pt;}
.x6b{left:684.506667pt;}
.xd{left:686.564000pt;}
.x19{left:688.436000pt;}
.xd8{left:690.584000pt;}
.xe{left:693.205333pt;}
.x50{left:695.145333pt;}
.xf{left:696.593333pt;}
.x58{left:698.654667pt;}
.x1a{left:701.720000pt;}
.x10{left:703.234667pt;}
.x1b{left:708.494667pt;}
.x42{left:709.773333pt;}
.x59{left:711.938667pt;}
.xd2{left:720.236000pt;}
.x1c{left:721.777333pt;}
.x43{left:723.057333pt;}
.x44{left:726.364000pt;}
.x5d{left:727.905333pt;}
.x45{left:739.648000pt;}
.x5e{left:741.189333pt;}
.xd3{left:744.146667pt;}
}




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