
    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_eb82e24c118d6dda1907e69b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c9765f977f2c723a823bddc4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1276b809492dc375313fde1f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59e6ec94587615a77f32f033.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3f309276f6b68aae6d4f07f8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a8ccb557bdeb4c8699f4e03.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7cde837c312a2d80290972f2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3f69652c0ec770e2056c38c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_20684d616d29af8d2a3e5ab8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_1c86e83320273c2f7febbd31.woff')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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_25f2d2624f3310af36cc30d1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_4a4131c834f2b57b1fe5d6f9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cc6cabfc9e459312c08fc2f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_6fa0706f85b4179969a2c087.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d047f576dcab4e5741f302c0.woff')format("woff");}.fff{font-family:fff;line-height:1.799000;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_330b73f9e77d1ddc234beba4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.683000;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_298b90e26395c8298076029f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.451000;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_c0fd65d2ed3f97058340ea6e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.726000;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_ca8fee349726ddd3857bc775.woff')format("woff");}.ff13{font-family:ff13;line-height:0.696000;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_047ca1d959066c15dbc8e8f7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.911000;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_4d878a1951c784bcce76870c.woff')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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_077a26808f002f3d0cbf421f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_364abfe9fdb5e80fa78a6c5d.woff')format("woff");}.ff17{font-family:ff17;line-height:0.521000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_18651b32d6c822441b4b8c65.woff')format("woff");}.ff18{font-family:ff18;line-height:0.518000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_94fefd1b9acab01eb63e9582.woff')format("woff");}.ff19{font-family:ff19;line-height:0.923000;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;}
.m2{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);}
.m19{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);}
.m29{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);}
.m0{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);}
.m21{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);}
.m1b{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);}
.m1c{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);}
.m11{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);}
.m10{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m25{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);}
.m14{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);}
.m24{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);}
.m22{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);}
.mc{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);}
.m1d{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);}
.m1f{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);}
.mf{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);}
.m1{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);}
.m15{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);}
.m23{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);}
.m9{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);}
.m13{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);}
.m8{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);}
.m1a{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);}
.m5{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);}
.m28{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);}
.m17{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);}
.m26{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);}
.m7{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);}
.m12{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);}
.m1e{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);}
.m27{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);}
.m20{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);}
.m18{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);}
.m3{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);}
.m16{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);}
.m6{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);}
.me{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);}
.va{vertical-align:-68.442000px;}
.vb{vertical-align:-49.092000px;}
.v2{vertical-align:-26.028000px;}
.v1b{vertical-align:-22.854000px;}
.v4{vertical-align:-10.662000px;}
.v3{vertical-align:-8.964000px;}
.v14{vertical-align:-3.120000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:2.862000px;}
.v10{vertical-align:3.924000px;}
.v12{vertical-align:6.048000px;}
.vd{vertical-align:9.816000px;}
.v19{vertical-align:12.090000px;}
.v15{vertical-align:13.320000px;}
.v1e{vertical-align:15.108000px;}
.v11{vertical-align:16.542000px;}
.v8{vertical-align:18.744000px;}
.v1d{vertical-align:21.690000px;}
.v5{vertical-align:23.748000px;}
.v1{vertical-align:26.028000px;}
.vc{vertical-align:27.030000px;}
.v17{vertical-align:33.456000px;}
.v7{vertical-align:34.500000px;}
.v9{vertical-align:44.280000px;}
.v6{vertical-align:49.092000px;}
.vf{vertical-align:53.022000px;}
.v1c{vertical-align:62.034000px;}
.v16{vertical-align:72.660000px;}
.ve{vertical-align:101.454000px;}
.v1a{vertical-align:107.082000px;}
.v18{vertical-align:115.242000px;}
.ls4{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.000513px;}
.ls45{letter-spacing:0.001044px;}
.ls6a{letter-spacing:0.001866px;}
.ls1d{letter-spacing:0.002147px;}
.ls4e{letter-spacing:0.002158px;}
.ls8a{letter-spacing:0.003031px;}
.ls40{letter-spacing:0.004177px;}
.ls3b{letter-spacing:0.004274px;}
.ls24{letter-spacing:0.008167px;}
.ls54{letter-spacing:0.016211px;}
.ls2a{letter-spacing:0.017337px;}
.ls3f{letter-spacing:0.021625px;}
.ls6d{letter-spacing:0.022141px;}
.ls71{letter-spacing:0.022308px;}
.ls3e{letter-spacing:0.025457px;}
.ls38{letter-spacing:0.028163px;}
.ls31{letter-spacing:0.028213px;}
.ls4b{letter-spacing:0.031050px;}
.ls36{letter-spacing:0.031457px;}
.ls8{letter-spacing:1.386797px;}
.lsb{letter-spacing:1.434618px;}
.ls59{letter-spacing:1.816322px;}
.ls5{letter-spacing:1.832729px;}
.ls52{letter-spacing:2.029093px;}
.ls6b{letter-spacing:2.151922px;}
.ls91{letter-spacing:2.342156px;}
.ls8d{letter-spacing:2.348156px;}
.ls1c{letter-spacing:2.966447px;}
.ls2e{letter-spacing:2.972447px;}
.ls1{letter-spacing:2.984915px;}
.ls3c{letter-spacing:2.986059px;}
.lse{letter-spacing:2.987236px;}
.ls43{letter-spacing:2.988099px;}
.ls41{letter-spacing:2.988248px;}
.ls69{letter-spacing:2.988532px;}
.ls20{letter-spacing:2.989289px;}
.ls11{letter-spacing:2.989739px;}
.ls48{letter-spacing:2.992059px;}
.lsf{letter-spacing:2.993236px;}
.ls22{letter-spacing:2.995289px;}
.ls42{letter-spacing:3.730007px;}
.ls60{letter-spacing:4.339712px;}
.ls51{letter-spacing:4.647277px;}
.ls3d{letter-spacing:5.105459px;}
.ls5b{letter-spacing:5.170913px;}
.ls18{letter-spacing:5.499369px;}
.ls49{letter-spacing:5.666765px;}
.ls5e{letter-spacing:5.690712px;}
.ls85{letter-spacing:6.432479px;}
.ls37{letter-spacing:6.715050px;}
.ls39{letter-spacing:6.721050px;}
.ls8f{letter-spacing:7.043428px;}
.ls92{letter-spacing:7.049428px;}
.ls80{letter-spacing:7.054177px;}
.ls93{letter-spacing:7.060177px;}
.ls57{letter-spacing:7.077449px;}
.ls25{letter-spacing:7.172157px;}
.ls15{letter-spacing:7.401249px;}
.ls16{letter-spacing:7.407249px;}
.ls1f{letter-spacing:7.409955px;}
.lsd{letter-spacing:7.427735px;}
.ls87{letter-spacing:8.303139px;}
.ls21{letter-spacing:9.002157px;}
.ls35{letter-spacing:9.086147px;}
.ls55{letter-spacing:9.088332px;}
.ls7b{letter-spacing:9.094332px;}
.ls82{letter-spacing:9.095252px;}
.lsc{letter-spacing:9.098189px;}
.ls1e{letter-spacing:10.042177px;}
.ls2b{letter-spacing:10.048177px;}
.ls67{letter-spacing:10.865464px;}
.ls13{letter-spacing:10.930918px;}
.ls61{letter-spacing:11.299036px;}
.ls23{letter-spacing:12.104157px;}
.lsa{letter-spacing:14.530921px;}
.ls5f{letter-spacing:14.540712px;}
.ls63{letter-spacing:14.546712px;}
.ls9{letter-spacing:14.596376px;}
.ls28{letter-spacing:14.615635px;}
.ls10{letter-spacing:15.315191px;}
.ls73{letter-spacing:16.617617px;}
.ls30{letter-spacing:18.130924px;}
.ls7{letter-spacing:18.196379px;}
.ls75{letter-spacing:19.905275px;}
.ls6{letter-spacing:21.076381px;}
.ls2d{letter-spacing:21.152447px;}
.ls83{letter-spacing:21.168103px;}
.ls27{letter-spacing:21.169289px;}
.ls56{letter-spacing:21.172059px;}
.ls17{letter-spacing:21.175289px;}
.ls2{letter-spacing:21.796382px;}
.ls8e{letter-spacing:21.927291px;}
.ls70{letter-spacing:22.057196px;}
.ls66{letter-spacing:24.806915px;}
.ls74{letter-spacing:24.866650px;}
.ls6f{letter-spacing:24.926425px;}
.ls4d{letter-spacing:25.330930px;}
.ls1a{letter-spacing:25.592749px;}
.ls72{letter-spacing:26.022479px;}
.ls97{letter-spacing:26.116385px;}
.ls0{letter-spacing:26.402915px;}
.ls4a{letter-spacing:26.827469px;}
.ls47{letter-spacing:27.229114px;}
.ls78{letter-spacing:27.249182px;}
.ls90{letter-spacing:27.269418px;}
.ls84{letter-spacing:27.275418px;}
.ls3{letter-spacing:27.294568px;}
.ls8c{letter-spacing:27.490932px;}
.ls81{letter-spacing:27.797950px;}
.ls53{letter-spacing:28.078059px;}
.ls4f{letter-spacing:28.145478px;}
.ls8b{letter-spacing:28.210933px;}
.ls2c{letter-spacing:28.228177px;}
.ls88{letter-spacing:28.288982px;}
.ls50{letter-spacing:28.930933px;}
.ls33{letter-spacing:29.624986px;}
.ls96{letter-spacing:29.634103px;}
.ls5d{letter-spacing:30.941412px;}
.ls19{letter-spacing:31.642670px;}
.ls7f{letter-spacing:31.864177px;}
.ls4c{letter-spacing:32.727300px;}
.ls58{letter-spacing:32.832699px;}
.ls6c{letter-spacing:33.381846px;}
.ls86{letter-spacing:33.593887px;}
.ls89{letter-spacing:33.605607px;}
.ls77{letter-spacing:34.255540px;}
.ls76{letter-spacing:34.298210px;}
.ls7a{letter-spacing:34.467176px;}
.ls79{letter-spacing:34.494574px;}
.ls94{letter-spacing:36.612103px;}
.ls68{letter-spacing:37.047304px;}
.ls7c{letter-spacing:38.117412px;}
.ls34{letter-spacing:38.618214px;}
.ls95{letter-spacing:42.713418px;}
.ls64{letter-spacing:49.745412px;}
.ls12{letter-spacing:72.626706px;}
.ls6e{letter-spacing:155.258311px;}
.ls2f{letter-spacing:156.464712px;}
.ls7d{letter-spacing:348.386700px;}
.ls14{letter-spacing:509.302243px;}
.ls7e{letter-spacing:678.633293px;}
.ls62{letter-spacing:772.233371px;}
.ls32{letter-spacing:787.091565px;}
.ls5c{letter-spacing:787.353383px;}
.ls29{letter-spacing:859.418898px;}
.ls26{letter-spacing:870.022543px;}
.ls3a{letter-spacing:877.157095px;}
.ls44{letter-spacing:880.298915px;}
.ls1b{letter-spacing:933.186232px;}
.ls65{letter-spacing:947.062607px;}
.ls46{letter-spacing:1006.495384px;}
.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;}
}
.ws83{word-spacing:-65.454600px;}
.ws45{word-spacing:-53.568045px;}
.ws41{word-spacing:-51.820407px;}
.ws5c{word-spacing:-50.809387px;}
.wsaa{word-spacing:-48.109131px;}
.ws87{word-spacing:-47.371213px;}
.ws84{word-spacing:-47.361385px;}
.ws80{word-spacing:-47.323676px;}
.ws72{word-spacing:-47.258221px;}
.ws76{word-spacing:-46.341857px;}
.wsc7{word-spacing:-44.299673px;}
.ws1d{word-spacing:-42.637126px;}
.ws9{word-spacing:-38.937826px;}
.wsc6{word-spacing:-38.814578px;}
.ws43{word-spacing:-33.211407px;}
.ws50{word-spacing:-31.941845px;}
.ws77{word-spacing:-31.706208px;}
.ws4c{word-spacing:-24.506202px;}
.ws73{word-spacing:-20.906199px;}
.ws40{word-spacing:-20.840745px;}
.ws34{word-spacing:-18.183288px;}
.wsae{word-spacing:-16.730196px;}
.ws47{word-spacing:-15.342558px;}
.ws81{word-spacing:-14.111859px;}
.wsb2{word-spacing:-10.321965px;}
.ws5d{word-spacing:-7.252370px;}
.ws46{word-spacing:-6.401460px;}
.wsb3{word-spacing:-3.652367px;}
.wsb4{word-spacing:-3.128730px;}
.wse3{word-spacing:-2.343275px;}
.ws8e{word-spacing:-2.277820px;}
.ws65{word-spacing:-1.688729px;}
.wsd5{word-spacing:-1.623274px;}
.wsd6{word-spacing:-1.557819px;}
.ws35{word-spacing:-1.426910px;}
.wse9{word-spacing:-1.296001px;}
.wse0{word-spacing:-1.165092px;}
.wsb5{word-spacing:-0.706910px;}
.ws1c{word-spacing:-0.576000px;}
.ws8f{word-spacing:-0.510546px;}
.wsb1{word-spacing:-0.314182px;}
.ws42{word-spacing:-0.216652px;}
.ws12{word-spacing:-0.117818px;}
.wsb{word-spacing:-0.107596px;}
.ws5f{word-spacing:-0.071731px;}
.ws3e{word-spacing:-0.065455px;}
.ws98{word-spacing:-0.053798px;}
.ws3a{word-spacing:-0.052364px;}
.wsbc{word-spacing:-0.041843px;}
.ws26{word-spacing:0.000000px;}
.ws44{word-spacing:0.013091px;}
.ws4b{word-spacing:0.078546px;}
.wsc2{word-spacing:0.144000px;}
.ws9c{word-spacing:0.310833px;}
.ws89{word-spacing:0.366546px;}
.wsdd{word-spacing:0.536728px;}
.wsd7{word-spacing:0.602182px;}
.ws70{word-spacing:0.890183px;}
.wsd3{word-spacing:0.929455px;}
.ws28{word-spacing:0.955637px;}
.ws27{word-spacing:1.086546px;}
.ws97{word-spacing:1.125819px;}
.ws1b{word-spacing:1.322183px;}
.ws3{word-spacing:1.386794px;}
.ws61{word-spacing:1.387638px;}
.ws62{word-spacing:1.453092px;}
.wsd8{word-spacing:1.518547px;}
.wsde{word-spacing:1.780365px;}
.wsdf{word-spacing:1.845820px;}
.ws7f{word-spacing:1.911274px;}
.ws7c{word-spacing:1.937456px;}
.ws63{word-spacing:1.976729px;}
.wsb6{word-spacing:2.107638px;}
.wsea{word-spacing:2.186184px;}
.wsd4{word-spacing:2.369457px;}
.ws3c{word-spacing:2.434911px;}
.ws3b{word-spacing:2.500366px;}
.ws66{word-spacing:2.565820px;}
.ws9d{word-spacing:2.701857px;}
.wse7{word-spacing:2.762184px;}
.ws38{word-spacing:2.827639px;}
.ws9b{word-spacing:2.940960px;}
.ws2f{word-spacing:2.958548px;}
.ws4{word-spacing:3.000735px;}
.ws1e{word-spacing:3.024003px;}
.ws88{word-spacing:3.039610px;}
.wsd{word-spacing:3.060511px;}
.ws8a{word-spacing:3.089457px;}
.wsa{word-spacing:3.120286px;}
.ws3f{word-spacing:3.154912px;}
.ws13{word-spacing:3.220366px;}
.wse{word-spacing:3.239838px;}
.ws57{word-spacing:3.285821px;}
.wsf{word-spacing:3.299613px;}
.ws30{word-spacing:3.351276px;}
.wsbb{word-spacing:3.359389px;}
.ws33{word-spacing:3.416730px;}
.ws5{word-spacing:3.419164px;}
.ws6{word-spacing:3.478940px;}
.ws49{word-spacing:3.482185px;}
.ws7{word-spacing:3.538716px;}
.ws11{word-spacing:3.547639px;}
.ws1f{word-spacing:3.613094px;}
.wsa1{word-spacing:3.658267px;}
.ws29{word-spacing:3.678549px;}
.ws21{word-spacing:3.744003px;}
.ws32{word-spacing:3.809458px;}
.ws23{word-spacing:3.874912px;}
.ws18{word-spacing:3.940367px;}
.ws36{word-spacing:4.005822px;}
.ws2b{word-spacing:4.071276px;}
.ws22{word-spacing:4.136731px;}
.ws6c{word-spacing:4.162913px;}
.ws79{word-spacing:4.228367px;}
.ws6f{word-spacing:4.267640px;}
.ws71{word-spacing:4.293822px;}
.wsc{word-spacing:4.315798px;}
.ws85{word-spacing:4.333095px;}
.ws86{word-spacing:4.398549px;}
.ws8d{word-spacing:4.424731px;}
.ws4a{word-spacing:4.529458px;}
.ws59{word-spacing:4.555640px;}
.ws7e{word-spacing:4.660368px;}
.ws69{word-spacing:4.725822px;}
.ws6e{word-spacing:4.882913px;}
.ws16{word-spacing:4.922186px;}
.ws6a{word-spacing:4.987641px;}
.ws9a{word-spacing:5.033106px;}
.ws82{word-spacing:5.053095px;}
.ws78{word-spacing:5.118550px;}
.wse1{word-spacing:5.184004px;}
.wse4{word-spacing:5.314914px;}
.ws90{word-spacing:5.380368px;}
.ws39{word-spacing:5.445823px;}
.ws99{word-spacing:5.511277px;}
.ws68{word-spacing:5.642187px;}
.ws3d{word-spacing:5.707641px;}
.ws24{word-spacing:5.773096px;}
.ws17{word-spacing:5.838550px;}
.ws53{word-spacing:5.969460px;}
.wse8{word-spacing:5.982550px;}
.ws96{word-spacing:6.034914px;}
.ws8{word-spacing:6.300348px;}
.ws58{word-spacing:6.309823px;}
.ws2d{word-spacing:6.427642px;}
.ws25{word-spacing:6.493096px;}
.wsd2{word-spacing:6.506187px;}
.wsec{word-spacing:6.637096px;}
.ws2a{word-spacing:6.689460px;}
.ws19{word-spacing:6.702551px;}
.wsa2{word-spacing:6.820369px;}
.ws5a{word-spacing:6.898915px;}
.ws7b{word-spacing:6.951279px;}
.wse6{word-spacing:6.964369px;}
.ws37{word-spacing:7.095279px;}
.wsa8{word-spacing:7.125252px;}
.ws56{word-spacing:7.147642px;}
.wsac{word-spacing:7.213097px;}
.wsd9{word-spacing:7.278552px;}
.ws92{word-spacing:7.343011px;}
.ws2e{word-spacing:7.344006px;}
.ws2c{word-spacing:7.370188px;}
.wsbe{word-spacing:7.409461px;}
.wsa0{word-spacing:7.424130px;}
.wsaf{word-spacing:7.474915px;}
.ws9e{word-spacing:7.605825px;}
.ws91{word-spacing:7.618915px;}
.ws48{word-spacing:7.736734px;}
.ws5b{word-spacing:7.762556px;}
.wsb9{word-spacing:8.021886px;}
.ws7a{word-spacing:8.024734px;}
.ws64{word-spacing:8.129461px;}
.wse5{word-spacing:8.142552px;}
.ws67{word-spacing:8.194916px;}
.wsa3{word-spacing:8.260371px;}
.wsab{word-spacing:8.325825px;}
.wsb0{word-spacing:8.522189px;}
.ws9f{word-spacing:8.718553px;}
.wsb8{word-spacing:8.784007px;}
.ws95{word-spacing:8.914917px;}
.ws94{word-spacing:8.980371px;}
.ws6d{word-spacing:9.045826px;}
.wsa7{word-spacing:9.456500px;}
.ws14{word-spacing:9.700372px;}
.ws15{word-spacing:9.765826px;}
.ws75{word-spacing:9.844372px;}
.ws93{word-spacing:10.027645px;}
.wsda{word-spacing:10.040736px;}
.wsbf{word-spacing:10.106190px;}
.wsdb{word-spacing:10.354918px;}
.wse2{word-spacing:10.420372px;}
.wsdc{word-spacing:10.551282px;}
.ws8c{word-spacing:10.747645px;}
.wseb{word-spacing:10.813100px;}
.wsa4{word-spacing:10.878555px;}
.ws55{word-spacing:11.336737px;}
.ws6b{word-spacing:11.398556px;}
.ws5e{word-spacing:11.480737px;}
.wsc0{word-spacing:11.742555px;}
.wsad{word-spacing:11.873464px;}
.ws51{word-spacing:12.187647px;}
.wsc4{word-spacing:12.253101px;}
.ws74{word-spacing:12.318556px;}
.ws8b{word-spacing:12.344738px;}
.ws7d{word-spacing:12.384010px;}
.ws31{word-spacing:12.907647px;}
.wsc1{word-spacing:13.968012px;}
.wsc3{word-spacing:14.229830px;}
.wsc5{word-spacing:14.544012px;}
.ws52{word-spacing:14.557103px;}
.wsbd{word-spacing:14.674556px;}
.ws4f{word-spacing:14.674921px;}
.wsa9{word-spacing:15.342558px;}
.ws60{word-spacing:16.480556px;}
.wsb7{word-spacing:17.722261px;}
.ws4e{word-spacing:19.869542px;}
.ws2{word-spacing:23.312640px;}
.wsba{word-spacing:24.759054px;}
.ws20{word-spacing:26.755738px;}
.ws4d{word-spacing:26.827469px;}
.ws54{word-spacing:34.769484px;}
.ws1{word-spacing:38.631358px;}
.ws0{word-spacing:39.251112px;}
.ws1a{word-spacing:45.922947px;}
.wsa6{word-spacing:50.832042px;}
.ws10{word-spacing:56.380723px;}
.wsc9{word-spacing:66.315636px;}
.wsa5{word-spacing:73.453152px;}
.wsca{word-spacing:86.937630px;}
.wscf{word-spacing:146.762304px;}
.wscc{word-spacing:146.827759px;}
.wscd{word-spacing:149.786307px;}
.wsd0{word-spacing:203.328169px;}
.wsce{word-spacing:246.855478px;}
.wsd1{word-spacing:255.547849px;}
.wscb{word-spacing:277.750050px;}
.wsc8{word-spacing:316.847809px;}
._19{margin-left:-44.845815px;}
._18{margin-left:-41.237573px;}
._17{margin-left:-36.654576px;}
._2d{margin-left:-33.977214px;}
._2e{margin-left:-31.451380px;}
._29{margin-left:-26.116385px;}
._22{margin-left:-10.996373px;}
._2{margin-left:-9.812778px;}
._5{margin-left:-5.881958px;}
._d{margin-left:-4.726375px;}
._0{margin-left:-3.305357px;}
._4{margin-left:-1.865011px;}
._3{width:1.936742px;}
._1{width:3.305357px;}
._1a{width:4.647277px;}
._1e{width:6.225534px;}
._e{width:10.996373px;}
._1f{width:15.459150px;}
._6{width:16.916495px;}
._10{width:18.130924px;}
._b{width:19.204204px;}
._24{width:20.519572px;}
._15{width:21.927291px;}
._23{width:23.040019px;}
._11{width:25.101394px;}
._7{width:26.994698px;}
._8{width:28.499647px;}
._a{width:29.650934px;}
._25{width:30.856012px;}
._21{width:32.398592px;}
._12{width:34.135019px;}
._14{width:36.130939px;}
._f{width:38.212933px;}
._28{width:39.750774px;}
._27{width:40.909125px;}
._1b{width:42.047859px;}
._13{width:43.658218px;}
._20{width:45.163674px;}
._9{width:47.939663px;}
._2c{width:49.876405px;}
._26{width:51.578225px;}
._1c{width:52.783303px;}
._c{width:56.452454px;}
._1d{width:64.139231px;}
._16{width:119.384143px;}
._2a{width:254.716475px;}
._2b{width:338.400282px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.y81{bottom:108.000000px;}
.y162{bottom:108.094500px;}
.y163{bottom:112.230000px;}
.y122{bottom:113.713500px;}
.yc6{bottom:116.415000px;}
.y56{bottom:117.618000px;}
.y57{bottom:117.781500px;}
.y1cf{bottom:121.177500px;}
.y55{bottom:121.753500px;}
.y25{bottom:122.638500px;}
.y143{bottom:125.610000px;}
.y80{bottom:128.323500px;}
.y160{bottom:130.078500px;}
.y121{bottom:130.152000px;}
.y1a8{bottom:130.936500px;}
.y161{bottom:134.215500px;}
.yc5{bottom:136.740000px;}
.y1ce{bottom:141.501000px;}
.y24{bottom:142.962000px;}
.y54{bottom:145.770000px;}
.y15f{bottom:150.403500px;}
.y141{bottom:150.438000px;}
.y1a7{bottom:151.260000px;}
.y120{bottom:153.636000px;}
.y142{bottom:156.376500px;}
.y7f{bottom:156.711000px;}
.yc4{bottom:157.063500px;}
.y17d{bottom:160.840500px;}
.yac{bottom:161.004000px;}
.y1cd{bottom:161.824500px;}
.y23{bottom:163.285500px;}
.y53{bottom:166.093500px;}
.y15d{bottom:170.727000px;}
.y140{bottom:170.761500px;}
.y1a6{bottom:171.585000px;}
.yf8{bottom:171.922500px;}
.y11f{bottom:173.959500px;}
.y15e{bottom:175.045500px;}
.y7e{bottom:177.036000px;}
.yc3{bottom:177.387000px;}
.y1cc{bottom:182.148000px;}
.y22{bottom:183.609000px;}
.yf7{bottom:188.359500px;}
.y52{bottom:189.022500px;}
.y15c{bottom:191.050500px;}
.y13f{bottom:191.085000px;}
.y1a5{bottom:191.908500px;}
.y17c{bottom:194.112000px;}
.y11e{bottom:194.283000px;}
.yab{bottom:194.778000px;}
.y7d{bottom:197.359500px;}
.yc2{bottom:197.710500px;}
.y51{bottom:199.918500px;}
.y21{bottom:203.932500px;}
.yf6{bottom:204.798000px;}
.yf5{bottom:210.511500px;}
.y15b{bottom:211.374000px;}
.y1a4{bottom:212.232000px;}
.y11d{bottom:214.608000px;}
.yaa{bottom:215.101500px;}
.y1cb{bottom:215.922000px;}
.y7c{bottom:217.683000px;}
.y50{bottom:220.243500px;}
.y13e{bottom:221.977500px;}
.y20{bottom:224.257500px;}
.y17b{bottom:227.382000px;}
.yc1{bottom:228.603000px;}
.y15a{bottom:231.697500px;}
.y1a3{bottom:232.555500px;}
.y11c{bottom:234.931500px;}
.yf4{bottom:236.239500px;}
.y1ca{bottom:236.245500px;}
.y4f{bottom:240.567000px;}
.ya9{bottom:248.875500px;}
.y159{bottom:252.022500px;}
.y1a2{bottom:252.879000px;}
.y11b{bottom:255.255000px;}
.yf3{bottom:256.563000px;}
.y1c9{bottom:256.569000px;}
.y17a{bottom:259.899000px;}
.y7b{bottom:260.386500px;}
.y1f{bottom:260.785500px;}
.y4e{bottom:260.890500px;}
.y13d{bottom:265.198500px;}
.ya8{bottom:269.199000px;}
.yc0{bottom:271.824000px;}
.y1a1{bottom:273.204000px;}
.y11a{bottom:275.578500px;}
.yf2{bottom:276.888000px;}
.y179{bottom:280.224000px;}
.y13c{bottom:285.523500px;}
.y7a{bottom:289.804500px;}
.y1c8{bottom:290.343000px;}
.ybf{bottom:292.147500px;}
.y1a0{bottom:293.527500px;}
.y79{bottom:293.850000px;}
.y119{bottom:295.902000px;}
.y4c{bottom:300.174000px;}
.y178{bottom:300.547500px;}
.y4d{bottom:301.222500px;}
.yf0{bottom:302.758500px;}
.ya7{bottom:302.971500px;}
.y158{bottom:303.727500px;}
.y127{bottom:303.855000px;}
.y13b{bottom:305.847000px;}
.y1e{bottom:306.366000px;}
.y1c7{bottom:310.666500px;}
.yef{bottom:311.563500px;}
.ybe{bottom:312.472500px;}
.y19f{bottom:313.851000px;}
.y177{bottom:320.871000px;}
.y157{bottom:321.661500px;}
.y126{bottom:321.787500px;}
.yee{bottom:322.788000px;}
.y13a{bottom:326.170500px;}
.y1d{bottom:326.689500px;}
.yf1{bottom:326.925000px;}
.y78{bottom:327.312000px;}
.y118{bottom:331.359000px;}
.ybd{bottom:332.796000px;}
.y19e{bottom:334.174500px;}
.ya6{bottom:336.745500px;}
.y125{bottom:339.720000px;}
.y4b{bottom:340.648500px;}
.y1c6{bottom:344.440500px;}
.y4a{bottom:345.334500px;}
.y139{bottom:346.494000px;}
.y1c{bottom:347.013000px;}
.y77{bottom:347.637000px;}
.yed{bottom:349.080000px;}
.y176{bottom:351.763500px;}
.ybc{bottom:353.119500px;}
.y19d{bottom:354.498000px;}
.ya5{bottom:357.069000px;}
.y124{bottom:357.652500px;}
.y1c5{bottom:364.764000px;}
.y117{bottom:366.816000px;}
.y137{bottom:366.817500px;}
.y1b{bottom:367.336500px;}
.y49{bottom:368.512500px;}
.yec{bottom:369.405000px;}
.y138{bottom:370.954500px;}
.ybb{bottom:373.443000px;}
.y19c{bottom:374.823000px;}
.y123{bottom:375.586500px;}
.ya4{bottom:377.392500px;}
.y76{bottom:384.165000px;}
.y1c4{bottom:385.087500px;}
.y116{bottom:387.139500px;}
.y136{bottom:388.803000px;}
.y48{bottom:388.836000px;}
.yeb{bottom:389.728500px;}
.y19b{bottom:395.146500px;}
.yba{bottom:404.335500px;}
.y1c3{bottom:405.411000px;}
.y114{bottom:407.463000px;}
.ya3{bottom:408.285000px;}
.y135{bottom:409.126500px;}
.y1a{bottom:410.559000px;}
.y115{bottom:413.401500px;}
.y175{bottom:414.375000px;}
.y19a{bottom:415.470000px;}
.ye8{bottom:425.116500px;}
.y47{bottom:425.364000px;}
.y1c2{bottom:425.734500px;}
.y113{bottom:427.788000px;}
.y75{bottom:429.226500px;}
.y134{bottom:429.450000px;}
.y19{bottom:430.882500px;}
.y173{bottom:432.309000px;}
.ye6{bottom:434.619000px;}
.y199{bottom:435.793500px;}
.y174{bottom:436.252500px;}
.yea{bottom:443.838000px;}
.yb9{bottom:447.556500px;}
.ye5{bottom:447.883500px;}
.y112{bottom:448.111500px;}
.y74{bottom:449.550000px;}
.y133{bottom:449.775000px;}
.y171{bottom:450.241500px;}
.y18{bottom:451.206000px;}
.ya2{bottom:451.506000px;}
.ye4{bottom:452.020500px;}
.y172{bottom:454.185000px;}
.y198{bottom:456.117000px;}
.ye7{bottom:458.953500px;}
.y1c1{bottom:459.508500px;}
.ye9{bottom:463.429500px;}
.yb8{bottom:467.880000px;}
.y111{bottom:468.435000px;}
.y73{bottom:469.875000px;}
.y132{bottom:470.098500px;}
.y46{bottom:470.305500px;}
.y17{bottom:471.529500px;}
.ya1{bottom:471.831000px;}
.y197{bottom:476.442000px;}
.y1c0{bottom:479.832000px;}
.yb7{bottom:488.205000px;}
.y110{bottom:488.758500px;}
.y45{bottom:490.629000px;}
.y16{bottom:491.853000px;}
.ya0{bottom:492.154500px;}
.ye3{bottom:492.423000px;}
.y196{bottom:496.765500px;}
.y72{bottom:499.293000px;}
.y71{bottom:503.337000px;}
.y10f{bottom:509.082000px;}
.y131{bottom:509.643000px;}
.y44{bottom:510.952500px;}
.y15{bottom:512.178000px;}
.y9f{bottom:512.478000px;}
.ye2{bottom:512.746500px;}
.y1bf{bottom:513.606000px;}
.yb6{bottom:521.977500px;}
.y130{bottom:527.577000px;}
.y10e{bottom:529.407000px;}
.y43{bottom:531.277500px;}
.y14{bottom:532.501500px;}
.y9e{bottom:532.801500px;}
.ye1{bottom:533.070000px;}
.y195{bottom:533.293500px;}
.y1be{bottom:533.929500px;}
.y70{bottom:536.800500px;}
.y12f{bottom:545.509500px;}
.y42{bottom:551.601000px;}
.y9d{bottom:553.125000px;}
.ye0{bottom:553.393500px;}
.y1bd{bottom:554.253000px;}
.yb5{bottom:555.751500px;}
.y6f{bottom:557.124000px;}
.y10d{bottom:560.298000px;}
.y13{bottom:569.029500px;}
.y41{bottom:571.924500px;}
.y6e{bottom:572.599500px;}
.y9c{bottom:573.450000px;}
.y1bc{bottom:574.576500px;}
.yb4{bottom:576.075000px;}
.y6d{bottom:577.449000px;}
.ydf{bottom:587.251500px;}
.y40{bottom:592.248000px;}
.y9b{bottom:593.773500px;}
.yde{bottom:594.103500px;}
.y1bb{bottom:594.900000px;}
.y6c{bottom:597.772500px;}
.ydd{bottom:598.147500px;}
.ydc{bottom:602.284500px;}
.y194{bottom:602.904000px;}
.y10c{bottom:603.315000px;}
.yb3{bottom:609.847500px;}
.y3f{bottom:612.571500px;}
.y9a{bottom:614.097000px;}
.y12{bottom:614.610000px;}
.y1ba{bottom:615.225000px;}
.y6b{bottom:618.096000px;}
.y193{bottom:623.227500px;}
.y10b{bottom:623.638500px;}
.y11{bottom:632.542500px;}
.y3e{bottom:632.896500px;}
.y99{bottom:634.420500px;}
.ydb{bottom:638.080500px;}
.y6a{bottom:638.419500px;}
.yb2{bottom:643.621500px;}
.y10a{bottom:643.962000px;}
.y1b9{bottom:648.997500px;}
.y10{bottom:650.475000px;}
.y3d{bottom:653.220000px;}
.y98{bottom:654.744000px;}
.yd9{bottom:658.405500px;}
.yda{bottom:662.541000px;}
.y192{bottom:662.623500px;}
.yb1{bottom:663.945000px;}
.y109{bottom:664.285500px;}
.yf{bottom:668.409000px;}
.y1b8{bottom:669.321000px;}
.y3c{bottom:673.543500px;}
.yd8{bottom:674.683500px;}
.y69{bottom:674.947500px;}
.y97{bottom:675.069000px;}
.yd6{bottom:678.729000px;}
.yd7{bottom:682.864500px;}
.y191{bottom:682.947000px;}
.ye{bottom:686.341500px;}
.y1b7{bottom:689.646000px;}
.y3b{bottom:693.867000px;}
.y96{bottom:695.392500px;}
.yb0{bottom:697.719000px;}
.yd5{bottom:699.052500px;}
.y108{bottom:700.815000px;}
.y190{bottom:703.270500px;}
.yd{bottom:704.274000px;}
.y1b6{bottom:709.969500px;}
.y156{bottom:712.599000px;}
.y3a{bottom:714.190500px;}
.y95{bottom:715.716000px;}
.yaf{bottom:718.042500px;}
.yd4{bottom:719.376000px;}
.y68{bottom:720.010500px;}
.yc{bottom:722.206500px;}
.y18f{bottom:723.594000px;}
.y155{bottom:730.531500px;}
.y39{bottom:734.515500px;}
.y94{bottom:736.039500px;}
.yb{bottom:740.139000px;}
.y67{bottom:740.334000px;}
.y107{bottom:746.190000px;}
.y1b5{bottom:746.497500px;}
.y154{bottom:748.464000px;}
.yae{bottom:748.935000px;}
.yd3{bottom:750.268500px;}
.y18e{bottom:752.133000px;}
.y38{bottom:754.839000px;}
.y93{bottom:756.363000px;}
.ya{bottom:758.071500px;}
.y66{bottom:760.657500px;}
.y106{bottom:766.513500px;}
.y37{bottom:775.162500px;}
.y9{bottom:776.005500px;}
.y92{bottom:776.688000px;}
.y65{bottom:780.981000px;}
.y144{bottom:783.015000px;}
.y105{bottom:786.837000px;}
.y18d{bottom:791.455500px;}
.y1b4{bottom:792.078000px;}
.yd2{bottom:793.489500px;}
.y8{bottom:793.938000px;}
.y36{bottom:795.486000px;}
.y91{bottom:797.011500px;}
.yad{bottom:800.640000px;}
.y104{bottom:807.160500px;}
.y153{bottom:811.230000px;}
.y18c{bottom:811.779000px;}
.y1b3{bottom:812.401500px;}
.yd1{bottom:813.813000px;}
.y64{bottom:814.444500px;}
.y35{bottom:815.809500px;}
.y90{bottom:817.335000px;}
.y7{bottom:821.211000px;}
.y152{bottom:831.553500px;}
.y1b2{bottom:832.725000px;}
.yd0{bottom:834.136500px;}
.y34{bottom:836.133000px;}
.y8f{bottom:837.658500px;}
.y103{bottom:839.847000px;}
.y18b{bottom:845.551500px;}
.y63{bottom:847.908000px;}
.y151{bottom:851.877000px;}
.y1b1{bottom:853.050000px;}
.ycf{bottom:854.461500px;}
.y33{bottom:856.458000px;}
.y8e{bottom:857.982000px;}
.y102{bottom:860.170500px;}
.y189{bottom:865.876500px;}
.y62{bottom:868.231500px;}
.y18a{bottom:870.012000px;}
.y150{bottom:872.200500px;}
.y1b0{bottom:873.373500px;}
.yce{bottom:874.785000px;}
.y8d{bottom:878.305500px;}
.y6{bottom:881.622000px;}
.y188{bottom:882.870000px;}
.y186{bottom:887.935500px;}
.y61{bottom:888.555000px;}
.y32{bottom:890.647500px;}
.y187{bottom:892.254000px;}
.y14f{bottom:892.524000px;}
.y101{bottom:893.509500px;}
.y1af{bottom:893.697000px;}
.ycd{bottom:895.108500px;}
.y8c{bottom:898.630500px;}
.y170{bottom:906.169500px;}
.y60{bottom:908.880000px;}
.y31{bottom:910.971000px;}
.y14e{bottom:912.847500px;}
.y1ae{bottom:914.020500px;}
.y8b{bottom:918.954000px;}
.y185{bottom:921.709500px;}
.y16f{bottom:926.493000px;}
.y100{bottom:926.847000px;}
.ycc{bottom:928.882500px;}
.y5f{bottom:929.203500px;}
.y30{bottom:931.294500px;}
.y14d{bottom:933.172500px;}
.y1ad{bottom:934.344000px;}
.y12e{bottom:935.158500px;}
.y5{bottom:936.241500px;}
.y8a{bottom:939.277500px;}
.y184{bottom:942.033000px;}
.y16e{bottom:946.818000px;}
.yff{bottom:947.170500px;}
.y1d5{bottom:948.907500px;}
.y5e{bottom:949.527000px;}
.y2f{bottom:951.618000px;}
.y14c{bottom:953.496000px;}
.y1ac{bottom:954.669000px;}
.y12d{bottom:955.482000px;}
.y89{bottom:959.601000px;}
.ycb{bottom:962.655000px;}
.y4{bottom:963.670500px;}
.y16d{bottom:967.141500px;}
.y1d4{bottom:969.231000px;}
.y5d{bottom:969.850500px;}
.y14b{bottom:973.819500px;}
.y1ab{bottom:974.992500px;}
.y12c{bottom:975.805500px;}
.y88{bottom:979.924500px;}
.yfe{bottom:980.509500px;}
.yca{bottom:982.978500px;}
.y2e{bottom:984.036000px;}
.y16c{bottom:987.465000px;}
.y5c{bottom:990.174000px;}
.y14a{bottom:994.143000px;}
.y3{bottom:994.449000px;}
.y1aa{bottom:995.316000px;}
.y12b{bottom:996.129000px;}
.y87{bottom:1000.249500px;}
.y1d3{bottom:1003.003500px;}
.y2d{bottom:1004.359500px;}
.y16b{bottom:1007.788500px;}
.y5b{bottom:1010.499000px;}
.y183{bottom:1011.388500px;}
.y181{bottom:1011.604500px;}
.yfd{bottom:1013.847000px;}
.y149{bottom:1014.466500px;}
.y12a{bottom:1016.454000px;}
.yc9{bottom:1016.752500px;}
.y86{bottom:1020.573000px;}
.y182{bottom:1020.771000px;}
.y1d2{bottom:1023.328500px;}
.y2c{bottom:1024.683000px;}
.y169{bottom:1028.112000px;}
.y5a{bottom:1030.822500px;}
.y1a9{bottom:1031.844000px;}
.y16a{bottom:1032.249000px;}
.yfc{bottom:1034.170500px;}
.y148{bottom:1034.790000px;}
.y129{bottom:1036.777500px;}
.y2{bottom:1039.915500px;}
.y85{bottom:1040.896500px;}
.y1d1{bottom:1043.652000px;}
.y2b{bottom:1045.008000px;}
.yc8{bottom:1050.526500px;}
.y59{bottom:1051.146000px;}
.y180{bottom:1052.035500px;}
.y17e{bottom:1052.251500px;}
.y168{bottom:1054.066500px;}
.y147{bottom:1055.115000px;}
.y128{bottom:1057.101000px;}
.y84{bottom:1061.220000px;}
.y17f{bottom:1061.419500px;}
.y1d0{bottom:1063.975500px;}
.y166{bottom:1065.291000px;}
.yfb{bottom:1066.857000px;}
.y1{bottom:1072.792500px;}
.y146{bottom:1075.438500px;}
.y167{bottom:1076.664000px;}
.y2a{bottom:1077.424500px;}
.y83{bottom:1081.543500px;}
.yc7{bottom:1084.299000px;}
.y58{bottom:1084.609500px;}
.yfa{bottom:1087.180500px;}
.y145{bottom:1096.360500px;}
.y29{bottom:1097.748000px;}
.y82{bottom:1101.868500px;}
.yf9{bottom:1107.504000px;}
.y28{bottom:1118.073000px;}
.y165{bottom:1122.208500px;}
.y27{bottom:1138.396500px;}
.y164{bottom:1142.715000px;}
.h20{height:2.618184px;}
.h24{height:24.209280px;}
.h9{height:29.127297px;}
.h17{height:33.665702px;}
.h2b{height:33.668870px;}
.h4{height:35.865450px;}
.h25{height:37.927872px;}
.h6{height:44.831700px;}
.he{height:44.896950px;}
.h2a{height:45.080125px;}
.h1f{height:47.955450px;}
.h14{height:48.436950px;}
.h8{height:49.090950px;}
.h7{height:50.211840px;}
.h5{height:53.798400px;}
.h1c{height:56.225501px;}
.hf{height:57.419702px;}
.ha{height:59.613450px;}
.h12{height:59.619450px;}
.h29{height:59.939700px;}
.h21{height:60.689702px;}
.h10{height:60.695702px;}
.h3{height:61.893450px;}
.h1a{height:62.889450px;}
.h18{height:62.895450px;}
.h19{height:65.266950px;}
.h1b{height:65.272950px;}
.h15{height:65.632950px;}
.h16{height:65.638950px;}
.h28{height:66.364950px;}
.hc{height:67.834950px;}
.hb{height:70.365450px;}
.h2{height:72.304680px;}
.h11{height:92.674950px;}
.hd{height:93.370950px;}
.h22{height:93.376950px;}
.h27{height:93.988950px;}
.h13{height:104.072184px;}
.h23{height:109.700184px;}
.h26{height:111.124950px;}
.h1e{height:117.860184px;}
.h1d{height:118.862184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:106.086000px;}
.x1{left:108.000000px;}
.x10b{left:111.190500px;}
.x94{left:116.229000px;}
.xdd{left:121.657500px;}
.x4{left:123.643500px;}
.xce{left:126.655500px;}
.x1e{left:131.895000px;}
.x23{left:133.404000px;}
.x45{left:138.442500px;}
.x13a{left:140.298000px;}
.x139{left:141.636000px;}
.x2{left:142.695000px;}
.xfd{left:145.363500px;}
.x26{left:146.994000px;}
.xb{left:148.909500px;}
.x4a{left:152.485500px;}
.x53{left:154.018500px;}
.xc7{left:155.865000px;}
.x75{left:157.524000px;}
.x46{left:158.545500px;}
.xc8{left:160.410000px;}
.xa1{left:161.416500px;}
.x39{left:165.465000px;}
.x3f{left:167.736000px;}
.x8{left:171.325500px;}
.x54{left:173.812500px;}
.x76{left:177.732000px;}
.xb7{left:181.170000px;}
.x3a{left:183.481500px;}
.x40{left:184.632000px;}
.x79{left:188.368500px;}
.x3b{left:189.801000px;}
.x8b{left:191.896500px;}
.x31{left:193.185000px;}
.xab{left:196.900500px;}
.x3c{left:198.279000px;}
.x7a{left:202.071000px;}
.x112{left:203.590500px;}
.x63{left:205.461000px;}
.x111{left:206.781000px;}
.x136{left:208.582500px;}
.xe4{left:209.835000px;}
.x64{left:211.098000px;}
.xa6{left:212.953500px;}
.x10c{left:214.216500px;}
.x7b{left:215.901000px;}
.x32{left:217.078500px;}
.x10d{left:218.763000px;}
.x8c{left:227.076000px;}
.x29{left:231.823500px;}
.xd8{left:234.184500px;}
.xc9{left:241.042500px;}
.x12c{left:242.551500px;}
.x83{left:244.908000px;}
.xa2{left:246.592500px;}
.x2a{left:248.205000px;}
.xd0{left:249.940500px;}
.x8d{left:251.500500px;}
.x51{left:254.319000px;}
.x138{left:256.710000px;}
.x77{left:258.321000px;}
.x55{left:259.878000px;}
.xc1{left:262.636500px;}
.x12d{left:263.788500px;}
.x56{left:265.786500px;}
.x123{left:267.865500px;}
.x11f{left:269.499000px;}
.xba{left:271.455000px;}
.xe6{left:273.445500px;}
.x11c{left:275.371500px;}
.x120{left:277.510500px;}
.x12e{left:279.406500px;}
.x11d{left:280.768500px;}
.xe7{left:281.836500px;}
.x74{left:283.051500px;}
.xcf{left:285.025500px;}
.x71{left:286.779000px;}
.xe5{left:287.955000px;}
.x118{left:290.100000px;}
.x60{left:291.148500px;}
.x121{left:292.857000px;}
.xa3{left:295.074000px;}
.x25{left:297.172500px;}
.xf6{left:298.231500px;}
.x72{left:299.557500px;}
.x3{left:301.381500px;}
.x104{left:303.472500px;}
.x15{left:305.823000px;}
.xc2{left:308.349000px;}
.x69{left:310.693500px;}
.x78{left:312.321000px;}
.x113{left:313.725000px;}
.xf7{left:315.775500px;}
.x105{left:318.400500px;}
.x97{left:320.872500px;}
.x16{left:322.690500px;}
.x67{left:323.761500px;}
.x61{left:324.817500px;}
.xbb{left:327.015000px;}
.x17{left:328.530000px;}
.xa7{left:330.708000px;}
.xbc{left:333.387000px;}
.x6a{left:334.651500px;}
.x18{left:336.271500px;}
.x128{left:337.534500px;}
.x27{left:339.277500px;}
.x114{left:340.666500px;}
.x65{left:341.857500px;}
.x8e{left:343.014000px;}
.x62{left:344.500500px;}
.x5{left:346.282500px;}
.x28{left:347.460000px;}
.xbe{left:350.443500px;}
.x102{left:352.665000px;}
.x12{left:353.724000px;}
.x106{left:355.350000px;}
.x73{left:357.265500px;}
.x81{left:358.333500px;}
.x50{left:360.157500px;}
.x116{left:362.922000px;}
.xd1{left:365.008500px;}
.x8f{left:366.556500px;}
.xd2{left:369.555000px;}
.xa8{left:371.181000px;}
.x129{left:372.196500px;}
.x57{left:373.986000px;}
.x6b{left:375.535500px;}
.x82{left:378.618000px;}
.x115{left:379.756500px;}
.x6{left:385.464000px;}
.x6c{left:388.314000px;}
.xbd{left:390.328500px;}
.x5d{left:392.118000px;}
.x12a{left:394.141500px;}
.x7e{left:395.476500px;}
.x52{left:397.659000px;}
.xc3{left:399.828000px;}
.xbf{left:404.163000px;}
.x58{left:405.357000px;}
.x107{left:407.706000px;}
.x9b{left:409.636500px;}
.x7{left:413.811000px;}
.x10{left:416.728500px;}
.x59{left:418.135500px;}
.x6e{left:420.099000px;}
.x9{left:422.271000px;}
.x4b{left:423.874500px;}
.x9c{left:425.065500px;}
.xd9{left:426.736500px;}
.xc0{left:428.571000px;}
.xa9{left:431.097000px;}
.x7f{left:432.366000px;}
.x110{left:433.701000px;}
.xf8{left:435.106500px;}
.xa{left:437.230500px;}
.x103{left:438.274500px;}
.x6f{left:440.529000px;}
.x24{left:442.366500px;}
.x11{left:444.253500px;}
.xb8{left:445.350000px;}
.x70{left:447.019500px;}
.x4c{left:449.052000px;}
.x9d{left:455.926500px;}
.x4d{left:460.089000px;}
.x108{left:462.409500px;}
.x9e{left:464.083500px;}
.x5a{left:465.381000px;}
.x47{left:467.827500px;}
.x66{left:469.894500px;}
.x9f{left:471.355500px;}
.xc4{left:472.893000px;}
.x12f{left:474.678000px;}
.x41{left:475.719000px;}
.xeb{left:477.432000px;}
.xef{left:478.554000px;}
.xff{left:480.175500px;}
.x68{left:484.074000px;}
.x100{left:486.666000px;}
.xa0{left:487.671000px;}
.x42{left:489.256500px;}
.x132{left:490.837500px;}
.xb9{left:492.327000px;}
.xc{left:495.270000px;}
.x1f{left:496.920000px;}
.x5e{left:498.753000px;}
.xc5{left:501.370500px;}
.x33{left:504.972000px;}
.xec{left:506.505000px;}
.xc6{left:510.933000px;}
.x98{left:512.247000px;}
.x5f{left:515.136000px;}
.xd{left:517.467000px;}
.x95{left:519.546000px;}
.x20{left:520.815000px;}
.x34{left:522.990000px;}
.xdc{left:524.067000px;}
.x101{left:525.757500px;}
.x96{left:527.727000px;}
.x35{left:529.270500px;}
.xaa{left:532.122000px;}
.x124{left:534.123000px;}
.x36{left:537.747000px;}
.x84{left:539.574000px;}
.x11a{left:542.068500px;}
.x130{left:544.155000px;}
.x7c{left:547.944000px;}
.x92{left:549.403500px;}
.xe9{left:550.987500px;}
.xca{left:555.696000px;}
.x80{left:556.764000px;}
.xf0{left:560.073000px;}
.x93{left:562.129500px;}
.x85{left:563.833500px;}
.x7d{left:567.273000px;}
.x119{left:568.407000px;}
.xcb{left:569.926500px;}
.x86{left:572.311500px;}
.x43{left:573.324000px;}
.xfa{left:575.010000px;}
.xde{left:576.313500px;}
.x4e{left:578.905500px;}
.x122{left:581.554500px;}
.x10e{left:583.476000px;}
.x4f{left:584.542500px;}
.x131{left:589.842000px;}
.xfe{left:592.183500px;}
.xac{left:594.298500px;}
.xa4{left:596.163000px;}
.xda{left:598.645500px;}
.xdf{left:599.682000px;}
.x44{left:602.278500px;}
.xf1{left:604.780500px;}
.x3d{left:606.960000px;}
.xf2{left:609.327000px;}
.x10f{left:613.416000px;}
.x125{left:614.472000px;}
.xa5{left:616.672500px;}
.xf9{left:618.457500px;}
.xfb{left:619.531500px;}
.xd3{left:621.579000px;}
.x3e{left:623.356500px;}
.x48{left:624.381000px;}
.xd4{left:626.124000px;}
.x1c{left:627.235500px;}
.x49{left:630.019500px;}
.xf3{left:633.289500px;}
.x1d{left:635.416500px;}
.xed{left:637.798500px;}
.xad{left:640.162500px;}
.xf4{left:641.635500px;}
.xaf{left:642.778500px;}
.x99{left:644.538000px;}
.xae{left:645.969000px;}
.x137{left:651.135000px;}
.xb0{left:652.341000px;}
.xea{left:653.830500px;}
.xe0{left:656.244000px;}
.x9a{left:658.464000px;}
.xe3{left:659.983500px;}
.xf5{left:662.709000px;}
.x126{left:663.721500px;}
.x87{left:666.132000px;}
.xdb{left:667.981500px;}
.x13{left:672.418500px;}
.x133{left:673.603500px;}
.x37{left:678.043500px;}
.x134{left:680.031000px;}
.x117{left:681.327000px;}
.xb2{left:682.435500px;}
.x88{left:684.148500px;}
.xb1{left:685.626000px;}
.x135{left:688.507500px;}
.x6d{left:689.679000px;}
.x2d{left:690.691500px;}
.xb3{left:691.998000px;}
.xd5{left:694.426500px;}
.xee{left:696.562500px;}
.x14{left:698.328000px;}
.x5b{left:700.690500px;}
.xe{left:704.383500px;}
.xe1{left:705.610500px;}
.x38{left:707.394000px;}
.x2e{left:708.709500px;}
.x127{left:712.476000px;}
.xe2{left:714.003000px;}
.x2f{left:715.117500px;}
.x109{left:717.976500px;}
.xf{left:719.343000px;}
.x5c{left:720.486000px;}
.xb4{left:722.464500px;}
.x30{left:723.594000px;}
.x2b{left:724.971000px;}
.x12b{left:727.905000px;}
.x11e{left:731.710500px;}
.x2c{left:733.152000px;}
.xe8{left:735.562500px;}
.x90{left:739.180500px;}
.xd6{left:740.598000px;}
.xcc{left:741.856500px;}
.x19{left:743.383500px;}
.xd7{left:745.143000px;}
.x91{left:747.658500px;}
.x10a{left:750.196500px;}
.x11b{left:756.151500px;}
.xcd{left:758.602500px;}
.x1a{left:759.763500px;}
.xb5{left:764.698500px;}
.xfc{left:765.787500px;}
.x21{left:770.838000px;}
.x89{left:772.276500px;}
.x22{left:779.020500px;}
.x8a{left:780.459000px;}
.xb6{left:782.715000px;}
@media print{
.va{vertical-align:-60.837333pt;}
.vb{vertical-align:-43.637333pt;}
.v2{vertical-align:-23.136000pt;}
.v1b{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.477333pt;}
.v3{vertical-align:-7.968000pt;}
.v14{vertical-align:-2.773333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:2.544000pt;}
.v10{vertical-align:3.488000pt;}
.v12{vertical-align:5.376000pt;}
.vd{vertical-align:8.725333pt;}
.v19{vertical-align:10.746667pt;}
.v15{vertical-align:11.840000pt;}
.v1e{vertical-align:13.429333pt;}
.v11{vertical-align:14.704000pt;}
.v8{vertical-align:16.661333pt;}
.v1d{vertical-align:19.280000pt;}
.v5{vertical-align:21.109333pt;}
.v1{vertical-align:23.136000pt;}
.vc{vertical-align:24.026667pt;}
.v17{vertical-align:29.738667pt;}
.v7{vertical-align:30.666667pt;}
.v9{vertical-align:39.360000pt;}
.v6{vertical-align:43.637333pt;}
.vf{vertical-align:47.130667pt;}
.v1c{vertical-align:55.141333pt;}
.v16{vertical-align:64.586667pt;}
.ve{vertical-align:90.181333pt;}
.v1a{vertical-align:95.184000pt;}
.v18{vertical-align:102.437333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.000456pt;}
.ls45{letter-spacing:0.000928pt;}
.ls6a{letter-spacing:0.001659pt;}
.ls1d{letter-spacing:0.001908pt;}
.ls4e{letter-spacing:0.001918pt;}
.ls8a{letter-spacing:0.002694pt;}
.ls40{letter-spacing:0.003713pt;}
.ls3b{letter-spacing:0.003799pt;}
.ls24{letter-spacing:0.007259pt;}
.ls54{letter-spacing:0.014409pt;}
.ls2a{letter-spacing:0.015411pt;}
.ls3f{letter-spacing:0.019223pt;}
.ls6d{letter-spacing:0.019681pt;}
.ls71{letter-spacing:0.019829pt;}
.ls3e{letter-spacing:0.022628pt;}
.ls38{letter-spacing:0.025033pt;}
.ls31{letter-spacing:0.025078pt;}
.ls4b{letter-spacing:0.027600pt;}
.ls36{letter-spacing:0.027961pt;}
.ls8{letter-spacing:1.232709pt;}
.lsb{letter-spacing:1.275216pt;}
.ls59{letter-spacing:1.614508pt;}
.ls5{letter-spacing:1.629092pt;}
.ls52{letter-spacing:1.803638pt;}
.ls6b{letter-spacing:1.912819pt;}
.ls91{letter-spacing:2.081916pt;}
.ls8d{letter-spacing:2.087250pt;}
.ls1c{letter-spacing:2.636842pt;}
.ls2e{letter-spacing:2.642175pt;}
.ls1{letter-spacing:2.653258pt;}
.ls3c{letter-spacing:2.654275pt;}
.lse{letter-spacing:2.655321pt;}
.ls43{letter-spacing:2.656088pt;}
.ls41{letter-spacing:2.656220pt;}
.ls69{letter-spacing:2.656473pt;}
.ls20{letter-spacing:2.657146pt;}
.ls11{letter-spacing:2.657546pt;}
.ls48{letter-spacing:2.659608pt;}
.lsf{letter-spacing:2.660654pt;}
.ls22{letter-spacing:2.662479pt;}
.ls42{letter-spacing:3.315562pt;}
.ls60{letter-spacing:3.857522pt;}
.ls51{letter-spacing:4.130913pt;}
.ls3d{letter-spacing:4.538186pt;}
.ls5b{letter-spacing:4.596367pt;}
.ls18{letter-spacing:4.888328pt;}
.ls49{letter-spacing:5.037124pt;}
.ls5e{letter-spacing:5.058411pt;}
.ls85{letter-spacing:5.717759pt;}
.ls37{letter-spacing:5.968933pt;}
.ls39{letter-spacing:5.974266pt;}
.ls8f{letter-spacing:6.260825pt;}
.ls92{letter-spacing:6.266158pt;}
.ls80{letter-spacing:6.270379pt;}
.ls93{letter-spacing:6.275713pt;}
.ls57{letter-spacing:6.291066pt;}
.ls25{letter-spacing:6.375251pt;}
.ls15{letter-spacing:6.578888pt;}
.ls16{letter-spacing:6.584221pt;}
.ls1f{letter-spacing:6.586627pt;}
.lsd{letter-spacing:6.602431pt;}
.ls87{letter-spacing:7.380568pt;}
.ls21{letter-spacing:8.001917pt;}
.ls35{letter-spacing:8.076575pt;}
.ls55{letter-spacing:8.078517pt;}
.ls7b{letter-spacing:8.083850pt;}
.ls82{letter-spacing:8.084668pt;}
.lsc{letter-spacing:8.087279pt;}
.ls1e{letter-spacing:8.926379pt;}
.ls2b{letter-spacing:8.931713pt;}
.ls67{letter-spacing:9.658190pt;}
.ls13{letter-spacing:9.716372pt;}
.ls61{letter-spacing:10.043587pt;}
.ls23{letter-spacing:10.759251pt;}
.lsa{letter-spacing:12.916374pt;}
.ls5f{letter-spacing:12.925077pt;}
.ls63{letter-spacing:12.930411pt;}
.ls9{letter-spacing:12.974556pt;}
.ls28{letter-spacing:12.991676pt;}
.ls10{letter-spacing:13.613503pt;}
.ls73{letter-spacing:14.771215pt;}
.ls30{letter-spacing:16.116377pt;}
.ls7{letter-spacing:16.174559pt;}
.ls75{letter-spacing:17.693578pt;}
.ls6{letter-spacing:18.734561pt;}
.ls2d{letter-spacing:18.802175pt;}
.ls83{letter-spacing:18.816092pt;}
.ls27{letter-spacing:18.817146pt;}
.ls56{letter-spacing:18.819608pt;}
.ls17{letter-spacing:18.822479pt;}
.ls2{letter-spacing:19.374562pt;}
.ls8e{letter-spacing:19.490925pt;}
.ls70{letter-spacing:19.606397pt;}
.ls66{letter-spacing:22.050591pt;}
.ls74{letter-spacing:22.103689pt;}
.ls6f{letter-spacing:22.156822pt;}
.ls4d{letter-spacing:22.516382pt;}
.ls1a{letter-spacing:22.749110pt;}
.ls72{letter-spacing:23.131092pt;}
.ls97{letter-spacing:23.214565pt;}
.ls0{letter-spacing:23.469258pt;}
.ls4a{letter-spacing:23.846639pt;}
.ls47{letter-spacing:24.203657pt;}
.ls78{letter-spacing:24.221495pt;}
.ls90{letter-spacing:24.239483pt;}
.ls84{letter-spacing:24.244816pt;}
.ls3{letter-spacing:24.261838pt;}
.ls8c{letter-spacing:24.436384pt;}
.ls81{letter-spacing:24.709289pt;}
.ls53{letter-spacing:24.958275pt;}
.ls4f{letter-spacing:25.018203pt;}
.ls8b{letter-spacing:25.076385pt;}
.ls2c{letter-spacing:25.091713pt;}
.ls88{letter-spacing:25.145761pt;}
.ls50{letter-spacing:25.716385pt;}
.ls33{letter-spacing:26.333321pt;}
.ls96{letter-spacing:26.341425pt;}
.ls5d{letter-spacing:27.503477pt;}
.ls19{letter-spacing:28.126818pt;}
.ls7f{letter-spacing:28.323713pt;}
.ls4c{letter-spacing:29.090933pt;}
.ls58{letter-spacing:29.184622pt;}
.ls6c{letter-spacing:29.672752pt;}
.ls86{letter-spacing:29.861233pt;}
.ls89{letter-spacing:29.871651pt;}
.ls77{letter-spacing:30.449368pt;}
.ls76{letter-spacing:30.487298pt;}
.ls7a{letter-spacing:30.637490pt;}
.ls79{letter-spacing:30.661844pt;}
.ls94{letter-spacing:32.544092pt;}
.ls68{letter-spacing:32.930937pt;}
.ls7c{letter-spacing:33.882144pt;}
.ls34{letter-spacing:34.327301pt;}
.ls95{letter-spacing:37.967483pt;}
.ls64{letter-spacing:44.218144pt;}
.ls12{letter-spacing:64.557072pt;}
.ls6e{letter-spacing:138.007388pt;}
.ls2f{letter-spacing:139.079744pt;}
.ls7d{letter-spacing:309.677067pt;}
.ls14{letter-spacing:452.713105pt;}
.ls7e{letter-spacing:603.229594pt;}
.ls62{letter-spacing:686.429663pt;}
.ls32{letter-spacing:699.636947pt;}
.ls5c{letter-spacing:699.869674pt;}
.ls29{letter-spacing:763.927909pt;}
.ls26{letter-spacing:773.353372pt;}
.ls3a{letter-spacing:779.695195pt;}
.ls44{letter-spacing:782.487925pt;}
.ls1b{letter-spacing:829.498873pt;}
.ls65{letter-spacing:841.833429pt;}
.ls46{letter-spacing:894.662564pt;}
.ws83{word-spacing:-58.181867pt;}
.ws45{word-spacing:-47.616040pt;}
.ws41{word-spacing:-46.062584pt;}
.ws5c{word-spacing:-45.163900pt;}
.wsaa{word-spacing:-42.763672pt;}
.ws87{word-spacing:-42.107745pt;}
.ws84{word-spacing:-42.099009pt;}
.ws80{word-spacing:-42.065490pt;}
.ws72{word-spacing:-42.007308pt;}
.ws76{word-spacing:-41.192762pt;}
.wsc7{word-spacing:-39.377487pt;}
.ws1d{word-spacing:-37.899668pt;}
.ws9{word-spacing:-34.611401pt;}
.wsc6{word-spacing:-34.501847pt;}
.ws43{word-spacing:-29.521250pt;}
.ws50{word-spacing:-28.392751pt;}
.ws77{word-spacing:-28.183296pt;}
.ws4c{word-spacing:-21.783291pt;}
.ws73{word-spacing:-18.583288pt;}
.ws40{word-spacing:-18.525106pt;}
.ws34{word-spacing:-16.162923pt;}
.wsae{word-spacing:-14.871285pt;}
.ws47{word-spacing:-13.637830pt;}
.ws81{word-spacing:-12.543875pt;}
.wsb2{word-spacing:-9.175080pt;}
.ws5d{word-spacing:-6.446551pt;}
.ws46{word-spacing:-5.690187pt;}
.wsb3{word-spacing:-3.246548pt;}
.wsb4{word-spacing:-2.781093pt;}
.wse3{word-spacing:-2.082911pt;}
.ws8e{word-spacing:-2.024729pt;}
.ws65{word-spacing:-1.501092pt;}
.wsd5{word-spacing:-1.442910pt;}
.wsd6{word-spacing:-1.384728pt;}
.ws35{word-spacing:-1.268365pt;}
.wse9{word-spacing:-1.152001pt;}
.wse0{word-spacing:-1.035637pt;}
.wsb5{word-spacing:-0.628364pt;}
.ws1c{word-spacing:-0.512000pt;}
.ws8f{word-spacing:-0.453819pt;}
.wsb1{word-spacing:-0.279273pt;}
.ws42{word-spacing:-0.192579pt;}
.ws12{word-spacing:-0.104727pt;}
.wsb{word-spacing:-0.095641pt;}
.ws5f{word-spacing:-0.063761pt;}
.ws3e{word-spacing:-0.058182pt;}
.ws98{word-spacing:-0.047821pt;}
.ws3a{word-spacing:-0.046545pt;}
.wsbc{word-spacing:-0.037194pt;}
.ws26{word-spacing:0.000000pt;}
.ws44{word-spacing:0.011636pt;}
.ws4b{word-spacing:0.069818pt;}
.wsc2{word-spacing:0.128000pt;}
.ws9c{word-spacing:0.276296pt;}
.ws89{word-spacing:0.325818pt;}
.wsdd{word-spacing:0.477091pt;}
.wsd7{word-spacing:0.535273pt;}
.ws70{word-spacing:0.791273pt;}
.wsd3{word-spacing:0.826183pt;}
.ws28{word-spacing:0.849455pt;}
.ws27{word-spacing:0.965819pt;}
.ws97{word-spacing:1.000728pt;}
.ws1b{word-spacing:1.175274pt;}
.ws3{word-spacing:1.232706pt;}
.ws61{word-spacing:1.233456pt;}
.ws62{word-spacing:1.291637pt;}
.wsd8{word-spacing:1.349819pt;}
.wsde{word-spacing:1.582547pt;}
.wsdf{word-spacing:1.640729pt;}
.ws7f{word-spacing:1.698911pt;}
.ws7c{word-spacing:1.722183pt;}
.ws63{word-spacing:1.757092pt;}
.wsb6{word-spacing:1.873456pt;}
.wsea{word-spacing:1.943274pt;}
.wsd4{word-spacing:2.106184pt;}
.ws3c{word-spacing:2.164365pt;}
.ws3b{word-spacing:2.222547pt;}
.ws66{word-spacing:2.280729pt;}
.ws9d{word-spacing:2.401651pt;}
.wse7{word-spacing:2.455275pt;}
.ws38{word-spacing:2.513457pt;}
.ws9b{word-spacing:2.614186pt;}
.ws2f{word-spacing:2.629820pt;}
.ws4{word-spacing:2.667320pt;}
.ws1e{word-spacing:2.688002pt;}
.ws88{word-spacing:2.701875pt;}
.wsd{word-spacing:2.720454pt;}
.ws8a{word-spacing:2.746184pt;}
.wsa{word-spacing:2.773588pt;}
.ws3f{word-spacing:2.804366pt;}
.ws13{word-spacing:2.862548pt;}
.wse{word-spacing:2.879856pt;}
.ws57{word-spacing:2.920730pt;}
.wsf{word-spacing:2.932989pt;}
.ws30{word-spacing:2.978912pt;}
.wsbb{word-spacing:2.986123pt;}
.ws33{word-spacing:3.037093pt;}
.ws5{word-spacing:3.039257pt;}
.ws6{word-spacing:3.092391pt;}
.ws49{word-spacing:3.095275pt;}
.ws7{word-spacing:3.145525pt;}
.ws11{word-spacing:3.153457pt;}
.ws1f{word-spacing:3.211639pt;}
.wsa1{word-spacing:3.251793pt;}
.ws29{word-spacing:3.269821pt;}
.ws21{word-spacing:3.328003pt;}
.ws32{word-spacing:3.386185pt;}
.ws23{word-spacing:3.444367pt;}
.ws18{word-spacing:3.502548pt;}
.ws36{word-spacing:3.560730pt;}
.ws2b{word-spacing:3.618912pt;}
.ws22{word-spacing:3.677094pt;}
.ws6c{word-spacing:3.700367pt;}
.ws79{word-spacing:3.758549pt;}
.ws6f{word-spacing:3.793458pt;}
.ws71{word-spacing:3.816730pt;}
.wsc{word-spacing:3.836265pt;}
.ws85{word-spacing:3.851640pt;}
.ws86{word-spacing:3.909821pt;}
.ws8d{word-spacing:3.933094pt;}
.ws4a{word-spacing:4.026185pt;}
.ws59{word-spacing:4.049458pt;}
.ws7e{word-spacing:4.142549pt;}
.ws69{word-spacing:4.200731pt;}
.ws6e{word-spacing:4.340367pt;}
.ws16{word-spacing:4.375276pt;}
.ws6a{word-spacing:4.433458pt;}
.ws9a{word-spacing:4.473872pt;}
.ws82{word-spacing:4.491640pt;}
.ws78{word-spacing:4.549822pt;}
.wse1{word-spacing:4.608004pt;}
.wse4{word-spacing:4.724368pt;}
.ws90{word-spacing:4.782549pt;}
.ws39{word-spacing:4.840731pt;}
.ws99{word-spacing:4.898913pt;}
.ws68{word-spacing:5.015277pt;}
.ws3d{word-spacing:5.073459pt;}
.ws24{word-spacing:5.131641pt;}
.ws17{word-spacing:5.189823pt;}
.ws53{word-spacing:5.306186pt;}
.wse8{word-spacing:5.317823pt;}
.ws96{word-spacing:5.364368pt;}
.ws8{word-spacing:5.600310pt;}
.ws58{word-spacing:5.608732pt;}
.ws2d{word-spacing:5.713459pt;}
.ws25{word-spacing:5.771641pt;}
.wsd2{word-spacing:5.783278pt;}
.wsec{word-spacing:5.899641pt;}
.ws2a{word-spacing:5.946187pt;}
.ws19{word-spacing:5.957823pt;}
.wsa2{word-spacing:6.062551pt;}
.ws5a{word-spacing:6.132369pt;}
.ws7b{word-spacing:6.178914pt;}
.wse6{word-spacing:6.190551pt;}
.ws37{word-spacing:6.306914pt;}
.wsa8{word-spacing:6.333557pt;}
.ws56{word-spacing:6.353460pt;}
.wsac{word-spacing:6.411642pt;}
.wsd9{word-spacing:6.469824pt;}
.ws92{word-spacing:6.527121pt;}
.ws2e{word-spacing:6.528005pt;}
.ws2c{word-spacing:6.551278pt;}
.wsbe{word-spacing:6.586187pt;}
.wsa0{word-spacing:6.599226pt;}
.wsaf{word-spacing:6.644369pt;}
.ws9e{word-spacing:6.760733pt;}
.ws91{word-spacing:6.772369pt;}
.ws48{word-spacing:6.877097pt;}
.ws5b{word-spacing:6.900050pt;}
.wsb9{word-spacing:7.130565pt;}
.ws7a{word-spacing:7.133097pt;}
.ws64{word-spacing:7.226188pt;}
.wse5{word-spacing:7.237824pt;}
.ws67{word-spacing:7.284370pt;}
.wsa3{word-spacing:7.342552pt;}
.wsab{word-spacing:7.400733pt;}
.wsb0{word-spacing:7.575279pt;}
.ws9f{word-spacing:7.749825pt;}
.wsb8{word-spacing:7.808007pt;}
.ws95{word-spacing:7.924370pt;}
.ws94{word-spacing:7.982552pt;}
.ws6d{word-spacing:8.040734pt;}
.wsa7{word-spacing:8.405778pt;}
.ws14{word-spacing:8.622553pt;}
.ws15{word-spacing:8.680735pt;}
.ws75{word-spacing:8.750553pt;}
.ws93{word-spacing:8.913462pt;}
.wsda{word-spacing:8.925098pt;}
.wsbf{word-spacing:8.983280pt;}
.wsdb{word-spacing:9.204371pt;}
.wse2{word-spacing:9.262553pt;}
.wsdc{word-spacing:9.378917pt;}
.ws8c{word-spacing:9.553463pt;}
.wseb{word-spacing:9.611644pt;}
.wsa4{word-spacing:9.669826pt;}
.ws55{word-spacing:10.077099pt;}
.ws6b{word-spacing:10.132050pt;}
.ws5e{word-spacing:10.205099pt;}
.wsc0{word-spacing:10.437827pt;}
.wsad{word-spacing:10.554191pt;}
.ws51{word-spacing:10.833464pt;}
.wsc4{word-spacing:10.891645pt;}
.ws74{word-spacing:10.949827pt;}
.ws8b{word-spacing:10.973100pt;}
.ws7d{word-spacing:11.008009pt;}
.ws31{word-spacing:11.473464pt;}
.wsc1{word-spacing:12.416010pt;}
.wsc3{word-spacing:12.648738pt;}
.wsc5{word-spacing:12.928011pt;}
.ws52{word-spacing:12.939647pt;}
.wsbd{word-spacing:13.044050pt;}
.ws4f{word-spacing:13.044375pt;}
.wsa9{word-spacing:13.637830pt;}
.ws60{word-spacing:14.649383pt;}
.wsb7{word-spacing:15.753121pt;}
.ws4e{word-spacing:17.661815pt;}
.ws2{word-spacing:20.722347pt;}
.wsba{word-spacing:22.008048pt;}
.ws20{word-spacing:23.782878pt;}
.ws4d{word-spacing:23.846639pt;}
.ws54{word-spacing:30.906208pt;}
.ws1{word-spacing:34.338985pt;}
.ws0{word-spacing:34.889877pt;}
.ws1a{word-spacing:40.820398pt;}
.wsa6{word-spacing:45.184038pt;}
.ws10{word-spacing:50.116198pt;}
.wsc9{word-spacing:58.947232pt;}
.wsa5{word-spacing:65.291691pt;}
.wsca{word-spacing:77.277894pt;}
.wscf{word-spacing:130.455381pt;}
.wscc{word-spacing:130.513563pt;}
.wscd{word-spacing:133.143384pt;}
.wsd0{word-spacing:180.736151pt;}
.wsce{word-spacing:219.427092pt;}
.wsd1{word-spacing:227.153644pt;}
.wscb{word-spacing:246.888933pt;}
.wsc8{word-spacing:281.642497pt;}
._19{margin-left:-39.862946pt;}
._18{margin-left:-36.655620pt;}
._17{margin-left:-32.581845pt;}
._2d{margin-left:-30.201968pt;}
._2e{margin-left:-27.956782pt;}
._29{margin-left:-23.214565pt;}
._22{margin-left:-9.774554pt;}
._2{margin-left:-8.722469pt;}
._5{margin-left:-5.228407pt;}
._d{margin-left:-4.201222pt;}
._0{margin-left:-2.938095pt;}
._4{margin-left:-1.657788pt;}
._3{width:1.721549pt;}
._1{width:2.938095pt;}
._1a{width:4.130913pt;}
._1e{width:5.533808pt;}
._e{width:9.774554pt;}
._1f{width:13.741467pt;}
._6{width:15.036884pt;}
._10{width:16.116377pt;}
._b{width:17.070403pt;}
._24{width:18.239620pt;}
._15{width:19.490925pt;}
._23{width:20.480017pt;}
._11{width:22.312350pt;}
._7{width:23.995287pt;}
._8{width:25.333019pt;}
._a{width:26.356386pt;}
._25{width:27.427566pt;}
._21{width:28.798748pt;}
._12{width:30.342239pt;}
._14{width:32.116390pt;}
._f{width:33.967052pt;}
._28{width:35.334021pt;}
._27{width:36.363667pt;}
._1b{width:37.375875pt;}
._13{width:38.807305pt;}
._20{width:40.145488pt;}
._9{width:42.613034pt;}
._2c{width:44.334582pt;}
._26{width:45.847311pt;}
._1c{width:46.918492pt;}
._c{width:50.179959pt;}
._1d{width:57.012650pt;}
._16{width:106.119239pt;}
._2a{width:226.414645pt;}
._2b{width:300.800251pt;}
.fs8{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.y81{bottom:96.000000pt;}
.y162{bottom:96.084000pt;}
.y163{bottom:99.760000pt;}
.y122{bottom:101.078667pt;}
.yc6{bottom:103.480000pt;}
.y56{bottom:104.549333pt;}
.y57{bottom:104.694667pt;}
.y1cf{bottom:107.713333pt;}
.y55{bottom:108.225333pt;}
.y25{bottom:109.012000pt;}
.y143{bottom:111.653333pt;}
.y80{bottom:114.065333pt;}
.y160{bottom:115.625333pt;}
.y121{bottom:115.690667pt;}
.y1a8{bottom:116.388000pt;}
.y161{bottom:119.302667pt;}
.yc5{bottom:121.546667pt;}
.y1ce{bottom:125.778667pt;}
.y24{bottom:127.077333pt;}
.y54{bottom:129.573333pt;}
.y15f{bottom:133.692000pt;}
.y141{bottom:133.722667pt;}
.y1a7{bottom:134.453333pt;}
.y120{bottom:136.565333pt;}
.y142{bottom:139.001333pt;}
.y7f{bottom:139.298667pt;}
.yc4{bottom:139.612000pt;}
.y17d{bottom:142.969333pt;}
.yac{bottom:143.114667pt;}
.y1cd{bottom:143.844000pt;}
.y23{bottom:145.142667pt;}
.y53{bottom:147.638667pt;}
.y15d{bottom:151.757333pt;}
.y140{bottom:151.788000pt;}
.y1a6{bottom:152.520000pt;}
.yf8{bottom:152.820000pt;}
.y11f{bottom:154.630667pt;}
.y15e{bottom:155.596000pt;}
.y7e{bottom:157.365333pt;}
.yc3{bottom:157.677333pt;}
.y1cc{bottom:161.909333pt;}
.y22{bottom:163.208000pt;}
.yf7{bottom:167.430667pt;}
.y52{bottom:168.020000pt;}
.y15c{bottom:169.822667pt;}
.y13f{bottom:169.853333pt;}
.y1a5{bottom:170.585333pt;}
.y17c{bottom:172.544000pt;}
.y11e{bottom:172.696000pt;}
.yab{bottom:173.136000pt;}
.y7d{bottom:175.430667pt;}
.yc2{bottom:175.742667pt;}
.y51{bottom:177.705333pt;}
.y21{bottom:181.273333pt;}
.yf6{bottom:182.042667pt;}
.yf5{bottom:187.121333pt;}
.y15b{bottom:187.888000pt;}
.y1a4{bottom:188.650667pt;}
.y11d{bottom:190.762667pt;}
.yaa{bottom:191.201333pt;}
.y1cb{bottom:191.930667pt;}
.y7c{bottom:193.496000pt;}
.y50{bottom:195.772000pt;}
.y13e{bottom:197.313333pt;}
.y20{bottom:199.340000pt;}
.y17b{bottom:202.117333pt;}
.yc1{bottom:203.202667pt;}
.y15a{bottom:205.953333pt;}
.y1a3{bottom:206.716000pt;}
.y11c{bottom:208.828000pt;}
.yf4{bottom:209.990667pt;}
.y1ca{bottom:209.996000pt;}
.y4f{bottom:213.837333pt;}
.ya9{bottom:221.222667pt;}
.y159{bottom:224.020000pt;}
.y1a2{bottom:224.781333pt;}
.y11b{bottom:226.893333pt;}
.yf3{bottom:228.056000pt;}
.y1c9{bottom:228.061333pt;}
.y17a{bottom:231.021333pt;}
.y7b{bottom:231.454667pt;}
.y1f{bottom:231.809333pt;}
.y4e{bottom:231.902667pt;}
.y13d{bottom:235.732000pt;}
.ya8{bottom:239.288000pt;}
.yc0{bottom:241.621333pt;}
.y1a1{bottom:242.848000pt;}
.y11a{bottom:244.958667pt;}
.yf2{bottom:246.122667pt;}
.y179{bottom:249.088000pt;}
.y13c{bottom:253.798667pt;}
.y7a{bottom:257.604000pt;}
.y1c8{bottom:258.082667pt;}
.ybf{bottom:259.686667pt;}
.y1a0{bottom:260.913333pt;}
.y79{bottom:261.200000pt;}
.y119{bottom:263.024000pt;}
.y4c{bottom:266.821333pt;}
.y178{bottom:267.153333pt;}
.y4d{bottom:267.753333pt;}
.yf0{bottom:269.118667pt;}
.ya7{bottom:269.308000pt;}
.y158{bottom:269.980000pt;}
.y127{bottom:270.093333pt;}
.y13b{bottom:271.864000pt;}
.y1e{bottom:272.325333pt;}
.y1c7{bottom:276.148000pt;}
.yef{bottom:276.945333pt;}
.ybe{bottom:277.753333pt;}
.y19f{bottom:278.978667pt;}
.y177{bottom:285.218667pt;}
.y157{bottom:285.921333pt;}
.y126{bottom:286.033333pt;}
.yee{bottom:286.922667pt;}
.y13a{bottom:289.929333pt;}
.y1d{bottom:290.390667pt;}
.yf1{bottom:290.600000pt;}
.y78{bottom:290.944000pt;}
.y118{bottom:294.541333pt;}
.ybd{bottom:295.818667pt;}
.y19e{bottom:297.044000pt;}
.ya6{bottom:299.329333pt;}
.y125{bottom:301.973333pt;}
.y4b{bottom:302.798667pt;}
.y1c6{bottom:306.169333pt;}
.y4a{bottom:306.964000pt;}
.y139{bottom:307.994667pt;}
.y1c{bottom:308.456000pt;}
.y77{bottom:309.010667pt;}
.yed{bottom:310.293333pt;}
.y176{bottom:312.678667pt;}
.ybc{bottom:313.884000pt;}
.y19d{bottom:315.109333pt;}
.ya5{bottom:317.394667pt;}
.y124{bottom:317.913333pt;}
.y1c5{bottom:324.234667pt;}
.y117{bottom:326.058667pt;}
.y137{bottom:326.060000pt;}
.y1b{bottom:326.521333pt;}
.y49{bottom:327.566667pt;}
.yec{bottom:328.360000pt;}
.y138{bottom:329.737333pt;}
.ybb{bottom:331.949333pt;}
.y19c{bottom:333.176000pt;}
.y123{bottom:333.854667pt;}
.ya4{bottom:335.460000pt;}
.y76{bottom:341.480000pt;}
.y1c4{bottom:342.300000pt;}
.y116{bottom:344.124000pt;}
.y136{bottom:345.602667pt;}
.y48{bottom:345.632000pt;}
.yeb{bottom:346.425333pt;}
.y19b{bottom:351.241333pt;}
.yba{bottom:359.409333pt;}
.y1c3{bottom:360.365333pt;}
.y114{bottom:362.189333pt;}
.ya3{bottom:362.920000pt;}
.y135{bottom:363.668000pt;}
.y1a{bottom:364.941333pt;}
.y115{bottom:367.468000pt;}
.y175{bottom:368.333333pt;}
.y19a{bottom:369.306667pt;}
.ye8{bottom:377.881333pt;}
.y47{bottom:378.101333pt;}
.y1c2{bottom:378.430667pt;}
.y113{bottom:380.256000pt;}
.y75{bottom:381.534667pt;}
.y134{bottom:381.733333pt;}
.y19{bottom:383.006667pt;}
.y173{bottom:384.274667pt;}
.ye6{bottom:386.328000pt;}
.y199{bottom:387.372000pt;}
.y174{bottom:387.780000pt;}
.yea{bottom:394.522667pt;}
.yb9{bottom:397.828000pt;}
.ye5{bottom:398.118667pt;}
.y112{bottom:398.321333pt;}
.y74{bottom:399.600000pt;}
.y133{bottom:399.800000pt;}
.y171{bottom:400.214667pt;}
.y18{bottom:401.072000pt;}
.ya2{bottom:401.338667pt;}
.ye4{bottom:401.796000pt;}
.y172{bottom:403.720000pt;}
.y198{bottom:405.437333pt;}
.ye7{bottom:407.958667pt;}
.y1c1{bottom:408.452000pt;}
.ye9{bottom:411.937333pt;}
.yb8{bottom:415.893333pt;}
.y111{bottom:416.386667pt;}
.y73{bottom:417.666667pt;}
.y132{bottom:417.865333pt;}
.y46{bottom:418.049333pt;}
.y17{bottom:419.137333pt;}
.ya1{bottom:419.405333pt;}
.y197{bottom:423.504000pt;}
.y1c0{bottom:426.517333pt;}
.yb7{bottom:433.960000pt;}
.y110{bottom:434.452000pt;}
.y45{bottom:436.114667pt;}
.y16{bottom:437.202667pt;}
.ya0{bottom:437.470667pt;}
.ye3{bottom:437.709333pt;}
.y196{bottom:441.569333pt;}
.y72{bottom:443.816000pt;}
.y71{bottom:447.410667pt;}
.y10f{bottom:452.517333pt;}
.y131{bottom:453.016000pt;}
.y44{bottom:454.180000pt;}
.y15{bottom:455.269333pt;}
.y9f{bottom:455.536000pt;}
.ye2{bottom:455.774667pt;}
.y1bf{bottom:456.538667pt;}
.yb6{bottom:463.980000pt;}
.y130{bottom:468.957333pt;}
.y10e{bottom:470.584000pt;}
.y43{bottom:472.246667pt;}
.y14{bottom:473.334667pt;}
.y9e{bottom:473.601333pt;}
.ye1{bottom:473.840000pt;}
.y195{bottom:474.038667pt;}
.y1be{bottom:474.604000pt;}
.y70{bottom:477.156000pt;}
.y12f{bottom:484.897333pt;}
.y42{bottom:490.312000pt;}
.y9d{bottom:491.666667pt;}
.ye0{bottom:491.905333pt;}
.y1bd{bottom:492.669333pt;}
.yb5{bottom:494.001333pt;}
.y6f{bottom:495.221333pt;}
.y10d{bottom:498.042667pt;}
.y13{bottom:505.804000pt;}
.y41{bottom:508.377333pt;}
.y6e{bottom:508.977333pt;}
.y9c{bottom:509.733333pt;}
.y1bc{bottom:510.734667pt;}
.yb4{bottom:512.066667pt;}
.y6d{bottom:513.288000pt;}
.ydf{bottom:522.001333pt;}
.y40{bottom:526.442667pt;}
.y9b{bottom:527.798667pt;}
.yde{bottom:528.092000pt;}
.y1bb{bottom:528.800000pt;}
.y6c{bottom:531.353333pt;}
.ydd{bottom:531.686667pt;}
.ydc{bottom:535.364000pt;}
.y194{bottom:535.914667pt;}
.y10c{bottom:536.280000pt;}
.yb3{bottom:542.086667pt;}
.y3f{bottom:544.508000pt;}
.y9a{bottom:545.864000pt;}
.y12{bottom:546.320000pt;}
.y1ba{bottom:546.866667pt;}
.y6b{bottom:549.418667pt;}
.y193{bottom:553.980000pt;}
.y10b{bottom:554.345333pt;}
.y11{bottom:562.260000pt;}
.y3e{bottom:562.574667pt;}
.y99{bottom:563.929333pt;}
.ydb{bottom:567.182667pt;}
.y6a{bottom:567.484000pt;}
.yb2{bottom:572.108000pt;}
.y10a{bottom:572.410667pt;}
.y1b9{bottom:576.886667pt;}
.y10{bottom:578.200000pt;}
.y3d{bottom:580.640000pt;}
.y98{bottom:581.994667pt;}
.yd9{bottom:585.249333pt;}
.yda{bottom:588.925333pt;}
.y192{bottom:588.998667pt;}
.yb1{bottom:590.173333pt;}
.y109{bottom:590.476000pt;}
.yf{bottom:594.141333pt;}
.y1b8{bottom:594.952000pt;}
.y3c{bottom:598.705333pt;}
.yd8{bottom:599.718667pt;}
.y69{bottom:599.953333pt;}
.y97{bottom:600.061333pt;}
.yd6{bottom:603.314667pt;}
.yd7{bottom:606.990667pt;}
.y191{bottom:607.064000pt;}
.ye{bottom:610.081333pt;}
.y1b7{bottom:613.018667pt;}
.y3b{bottom:616.770667pt;}
.y96{bottom:618.126667pt;}
.yb0{bottom:620.194667pt;}
.yd5{bottom:621.380000pt;}
.y108{bottom:622.946667pt;}
.y190{bottom:625.129333pt;}
.yd{bottom:626.021333pt;}
.y1b6{bottom:631.084000pt;}
.y156{bottom:633.421333pt;}
.y3a{bottom:634.836000pt;}
.y95{bottom:636.192000pt;}
.yaf{bottom:638.260000pt;}
.yd4{bottom:639.445333pt;}
.y68{bottom:640.009333pt;}
.yc{bottom:641.961333pt;}
.y18f{bottom:643.194667pt;}
.y155{bottom:649.361333pt;}
.y39{bottom:652.902667pt;}
.y94{bottom:654.257333pt;}
.yb{bottom:657.901333pt;}
.y67{bottom:658.074667pt;}
.y107{bottom:663.280000pt;}
.y1b5{bottom:663.553333pt;}
.y154{bottom:665.301333pt;}
.yae{bottom:665.720000pt;}
.yd3{bottom:666.905333pt;}
.y18e{bottom:668.562667pt;}
.y38{bottom:670.968000pt;}
.y93{bottom:672.322667pt;}
.ya{bottom:673.841333pt;}
.y66{bottom:676.140000pt;}
.y106{bottom:681.345333pt;}
.y37{bottom:689.033333pt;}
.y9{bottom:689.782667pt;}
.y92{bottom:690.389333pt;}
.y65{bottom:694.205333pt;}
.y144{bottom:696.013333pt;}
.y105{bottom:699.410667pt;}
.y18d{bottom:703.516000pt;}
.y1b4{bottom:704.069333pt;}
.yd2{bottom:705.324000pt;}
.y8{bottom:705.722667pt;}
.y36{bottom:707.098667pt;}
.y91{bottom:708.454667pt;}
.yad{bottom:711.680000pt;}
.y104{bottom:717.476000pt;}
.y153{bottom:721.093333pt;}
.y18c{bottom:721.581333pt;}
.y1b3{bottom:722.134667pt;}
.yd1{bottom:723.389333pt;}
.y64{bottom:723.950667pt;}
.y35{bottom:725.164000pt;}
.y90{bottom:726.520000pt;}
.y7{bottom:729.965333pt;}
.y152{bottom:739.158667pt;}
.y1b2{bottom:740.200000pt;}
.yd0{bottom:741.454667pt;}
.y34{bottom:743.229333pt;}
.y8f{bottom:744.585333pt;}
.y103{bottom:746.530667pt;}
.y18b{bottom:751.601333pt;}
.y63{bottom:753.696000pt;}
.y151{bottom:757.224000pt;}
.y1b1{bottom:758.266667pt;}
.ycf{bottom:759.521333pt;}
.y33{bottom:761.296000pt;}
.y8e{bottom:762.650667pt;}
.y102{bottom:764.596000pt;}
.y189{bottom:769.668000pt;}
.y62{bottom:771.761333pt;}
.y18a{bottom:773.344000pt;}
.y150{bottom:775.289333pt;}
.y1b0{bottom:776.332000pt;}
.yce{bottom:777.586667pt;}
.y8d{bottom:780.716000pt;}
.y6{bottom:783.664000pt;}
.y188{bottom:784.773333pt;}
.y186{bottom:789.276000pt;}
.y61{bottom:789.826667pt;}
.y32{bottom:791.686667pt;}
.y187{bottom:793.114667pt;}
.y14f{bottom:793.354667pt;}
.y101{bottom:794.230667pt;}
.y1af{bottom:794.397333pt;}
.ycd{bottom:795.652000pt;}
.y8c{bottom:798.782667pt;}
.y170{bottom:805.484000pt;}
.y60{bottom:807.893333pt;}
.y31{bottom:809.752000pt;}
.y14e{bottom:811.420000pt;}
.y1ae{bottom:812.462667pt;}
.y8b{bottom:816.848000pt;}
.y185{bottom:819.297333pt;}
.y16f{bottom:823.549333pt;}
.y100{bottom:823.864000pt;}
.ycc{bottom:825.673333pt;}
.y5f{bottom:825.958667pt;}
.y30{bottom:827.817333pt;}
.y14d{bottom:829.486667pt;}
.y1ad{bottom:830.528000pt;}
.y12e{bottom:831.252000pt;}
.y5{bottom:832.214667pt;}
.y8a{bottom:834.913333pt;}
.y184{bottom:837.362667pt;}
.y16e{bottom:841.616000pt;}
.yff{bottom:841.929333pt;}
.y1d5{bottom:843.473333pt;}
.y5e{bottom:844.024000pt;}
.y2f{bottom:845.882667pt;}
.y14c{bottom:847.552000pt;}
.y1ac{bottom:848.594667pt;}
.y12d{bottom:849.317333pt;}
.y89{bottom:852.978667pt;}
.ycb{bottom:855.693333pt;}
.y4{bottom:856.596000pt;}
.y16d{bottom:859.681333pt;}
.y1d4{bottom:861.538667pt;}
.y5d{bottom:862.089333pt;}
.y14b{bottom:865.617333pt;}
.y1ab{bottom:866.660000pt;}
.y12c{bottom:867.382667pt;}
.y88{bottom:871.044000pt;}
.yfe{bottom:871.564000pt;}
.yca{bottom:873.758667pt;}
.y2e{bottom:874.698667pt;}
.y16c{bottom:877.746667pt;}
.y5c{bottom:880.154667pt;}
.y14a{bottom:883.682667pt;}
.y3{bottom:883.954667pt;}
.y1aa{bottom:884.725333pt;}
.y12b{bottom:885.448000pt;}
.y87{bottom:889.110667pt;}
.y1d3{bottom:891.558667pt;}
.y2d{bottom:892.764000pt;}
.y16b{bottom:895.812000pt;}
.y5b{bottom:898.221333pt;}
.y183{bottom:899.012000pt;}
.y181{bottom:899.204000pt;}
.yfd{bottom:901.197333pt;}
.y149{bottom:901.748000pt;}
.y12a{bottom:903.514667pt;}
.yc9{bottom:903.780000pt;}
.y86{bottom:907.176000pt;}
.y182{bottom:907.352000pt;}
.y1d2{bottom:909.625333pt;}
.y2c{bottom:910.829333pt;}
.y169{bottom:913.877333pt;}
.y5a{bottom:916.286667pt;}
.y1a9{bottom:917.194667pt;}
.y16a{bottom:917.554667pt;}
.yfc{bottom:919.262667pt;}
.y148{bottom:919.813333pt;}
.y129{bottom:921.580000pt;}
.y2{bottom:924.369333pt;}
.y85{bottom:925.241333pt;}
.y1d1{bottom:927.690667pt;}
.y2b{bottom:928.896000pt;}
.yc8{bottom:933.801333pt;}
.y59{bottom:934.352000pt;}
.y180{bottom:935.142667pt;}
.y17e{bottom:935.334667pt;}
.y168{bottom:936.948000pt;}
.y147{bottom:937.880000pt;}
.y128{bottom:939.645333pt;}
.y84{bottom:943.306667pt;}
.y17f{bottom:943.484000pt;}
.y1d0{bottom:945.756000pt;}
.y166{bottom:946.925333pt;}
.yfb{bottom:948.317333pt;}
.y1{bottom:953.593333pt;}
.y146{bottom:955.945333pt;}
.y167{bottom:957.034667pt;}
.y2a{bottom:957.710667pt;}
.y83{bottom:961.372000pt;}
.yc7{bottom:963.821333pt;}
.y58{bottom:964.097333pt;}
.yfa{bottom:966.382667pt;}
.y145{bottom:974.542667pt;}
.y29{bottom:975.776000pt;}
.y82{bottom:979.438667pt;}
.yf9{bottom:984.448000pt;}
.y28{bottom:993.842667pt;}
.y165{bottom:997.518667pt;}
.y27{bottom:1011.908000pt;}
.y164{bottom:1015.746667pt;}
.h20{height:2.327275pt;}
.h24{height:21.519360pt;}
.h9{height:25.890931pt;}
.h17{height:29.925069pt;}
.h2b{height:29.927885pt;}
.h4{height:31.880400pt;}
.h25{height:33.713664pt;}
.h6{height:39.850400pt;}
.he{height:39.908400pt;}
.h2a{height:40.071222pt;}
.h1f{height:42.627067pt;}
.h14{height:43.055067pt;}
.h8{height:43.636400pt;}
.h7{height:44.632747pt;}
.h5{height:47.820800pt;}
.h1c{height:49.978223pt;}
.hf{height:51.039735pt;}
.ha{height:52.989733pt;}
.h12{height:52.995067pt;}
.h29{height:53.279733pt;}
.h21{height:53.946402pt;}
.h10{height:53.951735pt;}
.h3{height:55.016400pt;}
.h1a{height:55.901733pt;}
.h18{height:55.907067pt;}
.h19{height:58.015067pt;}
.h1b{height:58.020400pt;}
.h15{height:58.340400pt;}
.h16{height:58.345733pt;}
.h28{height:58.991067pt;}
.hc{height:60.297733pt;}
.hb{height:62.547067pt;}
.h2{height:64.270827pt;}
.h11{height:82.377733pt;}
.hd{height:82.996400pt;}
.h22{height:83.001733pt;}
.h27{height:83.545733pt;}
.h13{height:92.508608pt;}
.h23{height:97.511275pt;}
.h26{height:98.777733pt;}
.h1e{height:104.764608pt;}
.h1d{height:105.655275pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:94.298667pt;}
.x1{left:96.000000pt;}
.x10b{left:98.836000pt;}
.x94{left:103.314667pt;}
.xdd{left:108.140000pt;}
.x4{left:109.905333pt;}
.xce{left:112.582667pt;}
.x1e{left:117.240000pt;}
.x23{left:118.581333pt;}
.x45{left:123.060000pt;}
.x13a{left:124.709333pt;}
.x139{left:125.898667pt;}
.x2{left:126.840000pt;}
.xfd{left:129.212000pt;}
.x26{left:130.661333pt;}
.xb{left:132.364000pt;}
.x4a{left:135.542667pt;}
.x53{left:136.905333pt;}
.xc7{left:138.546667pt;}
.x75{left:140.021333pt;}
.x46{left:140.929333pt;}
.xc8{left:142.586667pt;}
.xa1{left:143.481333pt;}
.x39{left:147.080000pt;}
.x3f{left:149.098667pt;}
.x8{left:152.289333pt;}
.x54{left:154.500000pt;}
.x76{left:157.984000pt;}
.xb7{left:161.040000pt;}
.x3a{left:163.094667pt;}
.x40{left:164.117333pt;}
.x79{left:167.438667pt;}
.x3b{left:168.712000pt;}
.x8b{left:170.574667pt;}
.x31{left:171.720000pt;}
.xab{left:175.022667pt;}
.x3c{left:176.248000pt;}
.x7a{left:179.618667pt;}
.x112{left:180.969333pt;}
.x63{left:182.632000pt;}
.x111{left:183.805333pt;}
.x136{left:185.406667pt;}
.xe4{left:186.520000pt;}
.x64{left:187.642667pt;}
.xa6{left:189.292000pt;}
.x10c{left:190.414667pt;}
.x7b{left:191.912000pt;}
.x32{left:192.958667pt;}
.x10d{left:194.456000pt;}
.x8c{left:201.845333pt;}
.x29{left:206.065333pt;}
.xd8{left:208.164000pt;}
.xc9{left:214.260000pt;}
.x12c{left:215.601333pt;}
.x83{left:217.696000pt;}
.xa2{left:219.193333pt;}
.x2a{left:220.626667pt;}
.xd0{left:222.169333pt;}
.x8d{left:223.556000pt;}
.x51{left:226.061333pt;}
.x138{left:228.186667pt;}
.x77{left:229.618667pt;}
.x55{left:231.002667pt;}
.xc1{left:233.454667pt;}
.x12d{left:234.478667pt;}
.x56{left:236.254667pt;}
.x123{left:238.102667pt;}
.x11f{left:239.554667pt;}
.xba{left:241.293333pt;}
.xe6{left:243.062667pt;}
.x11c{left:244.774667pt;}
.x120{left:246.676000pt;}
.x12e{left:248.361333pt;}
.x11d{left:249.572000pt;}
.xe7{left:250.521333pt;}
.x74{left:251.601333pt;}
.xcf{left:253.356000pt;}
.x71{left:254.914667pt;}
.xe5{left:255.960000pt;}
.x118{left:257.866667pt;}
.x60{left:258.798667pt;}
.x121{left:260.317333pt;}
.xa3{left:262.288000pt;}
.x25{left:264.153333pt;}
.xf6{left:265.094667pt;}
.x72{left:266.273333pt;}
.x3{left:267.894667pt;}
.x104{left:269.753333pt;}
.x15{left:271.842667pt;}
.xc2{left:274.088000pt;}
.x69{left:276.172000pt;}
.x78{left:277.618667pt;}
.x113{left:278.866667pt;}
.xf7{left:280.689333pt;}
.x105{left:283.022667pt;}
.x97{left:285.220000pt;}
.x16{left:286.836000pt;}
.x67{left:287.788000pt;}
.x61{left:288.726667pt;}
.xbb{left:290.680000pt;}
.x17{left:292.026667pt;}
.xa7{left:293.962667pt;}
.xbc{left:296.344000pt;}
.x6a{left:297.468000pt;}
.x18{left:298.908000pt;}
.x128{left:300.030667pt;}
.x27{left:301.580000pt;}
.x114{left:302.814667pt;}
.x65{left:303.873333pt;}
.x8e{left:304.901333pt;}
.x62{left:306.222667pt;}
.x5{left:307.806667pt;}
.x28{left:308.853333pt;}
.xbe{left:311.505333pt;}
.x102{left:313.480000pt;}
.x12{left:314.421333pt;}
.x106{left:315.866667pt;}
.x73{left:317.569333pt;}
.x81{left:318.518667pt;}
.x50{left:320.140000pt;}
.x116{left:322.597333pt;}
.xd1{left:324.452000pt;}
.x8f{left:325.828000pt;}
.xd2{left:328.493333pt;}
.xa8{left:329.938667pt;}
.x129{left:330.841333pt;}
.x57{left:332.432000pt;}
.x6b{left:333.809333pt;}
.x82{left:336.549333pt;}
.x115{left:337.561333pt;}
.x6{left:342.634667pt;}
.x6c{left:345.168000pt;}
.xbd{left:346.958667pt;}
.x5d{left:348.549333pt;}
.x12a{left:350.348000pt;}
.x7e{left:351.534667pt;}
.x52{left:353.474667pt;}
.xc3{left:355.402667pt;}
.xbf{left:359.256000pt;}
.x58{left:360.317333pt;}
.x107{left:362.405333pt;}
.x9b{left:364.121333pt;}
.x7{left:367.832000pt;}
.x10{left:370.425333pt;}
.x59{left:371.676000pt;}
.x6e{left:373.421333pt;}
.x9{left:375.352000pt;}
.x4b{left:376.777333pt;}
.x9c{left:377.836000pt;}
.xd9{left:379.321333pt;}
.xc0{left:380.952000pt;}
.xa9{left:383.197333pt;}
.x7f{left:384.325333pt;}
.x110{left:385.512000pt;}
.xf8{left:386.761333pt;}
.xa{left:388.649333pt;}
.x103{left:389.577333pt;}
.x6f{left:391.581333pt;}
.x24{left:393.214667pt;}
.x11{left:394.892000pt;}
.xb8{left:395.866667pt;}
.x70{left:397.350667pt;}
.x4c{left:399.157333pt;}
.x9d{left:405.268000pt;}
.x4d{left:408.968000pt;}
.x108{left:411.030667pt;}
.x9e{left:412.518667pt;}
.x5a{left:413.672000pt;}
.x47{left:415.846667pt;}
.x66{left:417.684000pt;}
.x9f{left:418.982667pt;}
.xc4{left:420.349333pt;}
.x12f{left:421.936000pt;}
.x41{left:422.861333pt;}
.xeb{left:424.384000pt;}
.xef{left:425.381333pt;}
.xff{left:426.822667pt;}
.x68{left:430.288000pt;}
.x100{left:432.592000pt;}
.xa0{left:433.485333pt;}
.x42{left:434.894667pt;}
.x132{left:436.300000pt;}
.xb9{left:437.624000pt;}
.xc{left:440.240000pt;}
.x1f{left:441.706667pt;}
.x5e{left:443.336000pt;}
.xc5{left:445.662667pt;}
.x33{left:448.864000pt;}
.xec{left:450.226667pt;}
.xc6{left:454.162667pt;}
.x98{left:455.330667pt;}
.x5f{left:457.898667pt;}
.xd{left:459.970667pt;}
.x95{left:461.818667pt;}
.x20{left:462.946667pt;}
.x34{left:464.880000pt;}
.xdc{left:465.837333pt;}
.x101{left:467.340000pt;}
.x96{left:469.090667pt;}
.x35{left:470.462667pt;}
.xaa{left:472.997333pt;}
.x124{left:474.776000pt;}
.x36{left:477.997333pt;}
.x84{left:479.621333pt;}
.x11a{left:481.838667pt;}
.x130{left:483.693333pt;}
.x7c{left:487.061333pt;}
.x92{left:488.358667pt;}
.xe9{left:489.766667pt;}
.xca{left:493.952000pt;}
.x80{left:494.901333pt;}
.xf0{left:497.842667pt;}
.x93{left:499.670667pt;}
.x85{left:501.185333pt;}
.x7d{left:504.242667pt;}
.x119{left:505.250667pt;}
.xcb{left:506.601333pt;}
.x86{left:508.721333pt;}
.x43{left:509.621333pt;}
.xfa{left:511.120000pt;}
.xde{left:512.278667pt;}
.x4e{left:514.582667pt;}
.x122{left:516.937333pt;}
.x10e{left:518.645333pt;}
.x4f{left:519.593333pt;}
.x131{left:524.304000pt;}
.xfe{left:526.385333pt;}
.xac{left:528.265333pt;}
.xa4{left:529.922667pt;}
.xda{left:532.129333pt;}
.xdf{left:533.050667pt;}
.x44{left:535.358667pt;}
.xf1{left:537.582667pt;}
.x3d{left:539.520000pt;}
.xf2{left:541.624000pt;}
.x10f{left:545.258667pt;}
.x125{left:546.197333pt;}
.xa5{left:548.153333pt;}
.xf9{left:549.740000pt;}
.xfb{left:550.694667pt;}
.xd3{left:552.514667pt;}
.x3e{left:554.094667pt;}
.x48{left:555.005333pt;}
.xd4{left:556.554667pt;}
.x1c{left:557.542667pt;}
.x49{left:560.017333pt;}
.xf3{left:562.924000pt;}
.x1d{left:564.814667pt;}
.xed{left:566.932000pt;}
.xad{left:569.033333pt;}
.xf4{left:570.342667pt;}
.xaf{left:571.358667pt;}
.x99{left:572.922667pt;}
.xae{left:574.194667pt;}
.x137{left:578.786667pt;}
.xb0{left:579.858667pt;}
.xea{left:581.182667pt;}
.xe0{left:583.328000pt;}
.x9a{left:585.301333pt;}
.xe3{left:586.652000pt;}
.xf5{left:589.074667pt;}
.x126{left:589.974667pt;}
.x87{left:592.117333pt;}
.xdb{left:593.761333pt;}
.x13{left:597.705333pt;}
.x133{left:598.758667pt;}
.x37{left:602.705333pt;}
.x134{left:604.472000pt;}
.x117{left:605.624000pt;}
.xb2{left:606.609333pt;}
.x88{left:608.132000pt;}
.xb1{left:609.445333pt;}
.x135{left:612.006667pt;}
.x6d{left:613.048000pt;}
.x2d{left:613.948000pt;}
.xb3{left:615.109333pt;}
.xd5{left:617.268000pt;}
.xee{left:619.166667pt;}
.x14{left:620.736000pt;}
.x5b{left:622.836000pt;}
.xe{left:626.118667pt;}
.xe1{left:627.209333pt;}
.x38{left:628.794667pt;}
.x2e{left:629.964000pt;}
.x127{left:633.312000pt;}
.xe2{left:634.669333pt;}
.x2f{left:635.660000pt;}
.x109{left:638.201333pt;}
.xf{left:639.416000pt;}
.x5c{left:640.432000pt;}
.xb4{left:642.190667pt;}
.x30{left:643.194667pt;}
.x2b{left:644.418667pt;}
.x12b{left:647.026667pt;}
.x11e{left:650.409333pt;}
.x2c{left:651.690667pt;}
.xe8{left:653.833333pt;}
.x90{left:657.049333pt;}
.xd6{left:658.309333pt;}
.xcc{left:659.428000pt;}
.x19{left:660.785333pt;}
.xd7{left:662.349333pt;}
.x91{left:664.585333pt;}
.x10a{left:666.841333pt;}
.x11b{left:672.134667pt;}
.xcd{left:674.313333pt;}
.x1a{left:675.345333pt;}
.xb5{left:679.732000pt;}
.xfc{left:680.700000pt;}
.x21{left:685.189333pt;}
.x89{left:686.468000pt;}
.x22{left:692.462667pt;}
.x8a{left:693.741333pt;}
.xb6{left:695.746667pt;}
}




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