
    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_6108e7047de112d75e9e2c71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_183331297e577b905b37de31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_d939b6eb247904726d780e74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_2989ea5963c4b6735a06176c.woff2')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_e34b25fed10a7a5530f3d168.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_0636ff37b11836d35b3ecb80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.887000;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_f9c6623a1e3cd856b7b41c45.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_62dbfc9d3f995fd6ab51c774.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88f63559217e351917fc7f85.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_879aaa23c9aedde743dde168.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_4e65dc30a769944723334058.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.698000;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_32a2a68f20ac39afca0cec58.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.710000;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_32b1af8eaae91ae6d3143169.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.840000;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_6d2b8c870344b710ecae436e.woff2')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_1f5cf258e8d8f2734a5fdd62.woff2')format("woff");}.fff{font-family:fff;line-height:0.896000;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_fbb9804d542de379d18aca37.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_73fa87436819df9f353bbe93.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_271bcde73025454f5a9a35c2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_7452affdf6ae16a85b9ddfaa.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_543f3a0dd24449498b15c871.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.859000;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_74092f630d94da691b456bb8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_5edc2159f6fe0fc19544b8a1.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_d8681a2d996319cf137100ec.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_69bf8f3f025daea6177c3edd.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_7c702498777eaa4964b339f1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5cc6646780565769e08d3794.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_0d5009e62da0ef49f3fa4a05.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f63c9ef7c9798e49b7150158.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_0d5009e62da0ef49f3fa4a05.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fc4e0abd30f732e107735be2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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:ff1f;src:url('chunks/assets/font_fb66b27bbc9ccaa6efca1c12.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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:ff20;src:url('chunks/assets/font_e490d3cbd597029d476b0d66.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.636000;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:ff21;src:url('chunks/assets/font_5d4cfdd8db836d23a6b455ba.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_974ca6ab344634e972c14b92.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.664000;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;}
.m7{transform:matrix(0.000000,-0.249733,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249733,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249733,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250187,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250187,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250187,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250585,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250585,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250585,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249150,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249150,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249150,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-52.116000px;}
.vd{vertical-align:-42.234000px;}
.v13{vertical-align:-21.604028px;}
.v3{vertical-align:-9.822000px;}
.v14{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:6.360000px;}
.v11{vertical-align:9.534000px;}
.v12{vertical-align:13.602000px;}
.vb{vertical-align:16.182000px;}
.v7{vertical-align:18.912000px;}
.v1{vertical-align:23.754000px;}
.va{vertical-align:27.024000px;}
.vf{vertical-align:30.162000px;}
.v10{vertical-align:43.104000px;}
.v4{vertical-align:44.280000px;}
.ve{vertical-align:49.092000px;}
.v8{vertical-align:62.178000px;}
.v6{vertical-align:67.596000px;}
.v5{vertical-align:77.730000px;}
.v9{vertical-align:107.082000px;}
.ls8{letter-spacing:-0.861120px;}
.lsb{letter-spacing:-0.662400px;}
.lsc{letter-spacing:-0.529920px;}
.ls9{letter-spacing:-0.463680px;}
.ls3{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.198720px;}
.ls4{letter-spacing:-0.066240px;}
.ls5{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.001050px;}
.ls8b{letter-spacing:0.001405px;}
.ls7b{letter-spacing:0.002124px;}
.ls53{letter-spacing:0.002149px;}
.ls52{letter-spacing:0.002155px;}
.ls33{letter-spacing:0.002700px;}
.ls66{letter-spacing:0.002706px;}
.ls2f{letter-spacing:0.002712px;}
.ls36{letter-spacing:0.003056px;}
.ls31{letter-spacing:0.003791px;}
.ls7c{letter-spacing:0.004059px;}
.ls56{letter-spacing:0.005429px;}
.ls2{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.132480px;}
.ls84{letter-spacing:0.240858px;}
.ls88{letter-spacing:0.241421px;}
.ls81{letter-spacing:0.248980px;}
.ls1{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.271584px;}
.ls6{letter-spacing:0.331200px;}
.ls78{letter-spacing:1.288347px;}
.ls8a{letter-spacing:2.118005px;}
.ls54{letter-spacing:2.881611px;}
.ls1e{letter-spacing:2.984915px;}
.lsd{letter-spacing:2.986053px;}
.ls86{letter-spacing:2.988532px;}
.lsf{letter-spacing:2.988960px;}
.ls6a{letter-spacing:2.989289px;}
.ls5f{letter-spacing:2.989641px;}
.ls1c{letter-spacing:2.990915px;}
.lse{letter-spacing:2.991537px;}
.ls89{letter-spacing:2.994532px;}
.ls63{letter-spacing:5.092888px;}
.ls6f{letter-spacing:10.910712px;}
.ls7a{letter-spacing:10.930918px;}
.ls75{letter-spacing:11.095289px;}
.ls6e{letter-spacing:13.897289px;}
.ls65{letter-spacing:14.543412px;}
.ls79{letter-spacing:14.546149px;}
.ls64{letter-spacing:14.546712px;}
.ls59{letter-spacing:17.018712px;}
.ls5c{letter-spacing:17.021412px;}
.ls5b{letter-spacing:17.024149px;}
.ls5a{letter-spacing:17.027412px;}
.ls77{letter-spacing:17.582915px;}
.ls4a{letter-spacing:18.179412px;}
.ls71{letter-spacing:18.182700px;}
.ls1b{letter-spacing:18.500915px;}
.ls27{letter-spacing:19.100915px;}
.ls13{letter-spacing:19.118915px;}
.ls28{letter-spacing:19.526915px;}
.ls49{letter-spacing:20.702915px;}
.ls80{letter-spacing:20.888915px;}
.ls62{letter-spacing:21.164915px;}
.ls5d{letter-spacing:21.170915px;}
.ls72{letter-spacing:21.175289px;}
.ls40{letter-spacing:21.182915px;}
.ls85{letter-spacing:21.516532px;}
.ls25{letter-spacing:21.638915px;}
.ls67{letter-spacing:21.681229px;}
.ls22{letter-spacing:21.701412px;}
.ls32{letter-spacing:22.211412px;}
.ls82{letter-spacing:22.470532px;}
.ls51{letter-spacing:22.568915px;}
.ls4e{letter-spacing:22.712915px;}
.ls19{letter-spacing:22.832915px;}
.ls87{letter-spacing:22.860532px;}
.ls42{letter-spacing:23.042915px;}
.ls48{letter-spacing:23.144915px;}
.ls2c{letter-spacing:23.510915px;}
.ls46{letter-spacing:23.516915px;}
.ls83{letter-spacing:23.574532px;}
.ls4c{letter-spacing:23.672915px;}
.ls3c{letter-spacing:23.954915px;}
.ls3b{letter-spacing:23.960915px;}
.ls2d{letter-spacing:24.260915px;}
.ls37{letter-spacing:24.344915px;}
.ls26{letter-spacing:24.356915px;}
.ls58{letter-spacing:24.377412px;}
.ls4f{letter-spacing:24.800915px;}
.ls12{letter-spacing:24.804960px;}
.ls2b{letter-spacing:24.806915px;}
.ls11{letter-spacing:24.807537px;}
.ls10{letter-spacing:24.808053px;}
.ls69{letter-spacing:24.811641px;}
.ls38{letter-spacing:24.884915px;}
.ls34{letter-spacing:24.950915px;}
.ls17{letter-spacing:24.962915px;}
.ls16{letter-spacing:25.166915px;}
.ls6b{letter-spacing:25.394712px;}
.ls1f{letter-spacing:25.496915px;}
.ls3a{letter-spacing:25.946915px;}
.ls23{letter-spacing:25.970915px;}
.ls3d{letter-spacing:25.994915px;}
.ls4d{letter-spacing:26.204915px;}
.ls29{letter-spacing:26.402915px;}
.ls14{letter-spacing:26.414915px;}
.ls41{letter-spacing:26.528915px;}
.ls43{letter-spacing:27.290915px;}
.ls3f{letter-spacing:27.302915px;}
.ls47{letter-spacing:27.320915px;}
.ls57{letter-spacing:27.367641px;}
.ls44{letter-spacing:27.620915px;}
.ls30{letter-spacing:27.902915px;}
.ls18{letter-spacing:28.016915px;}
.ls74{letter-spacing:28.127429px;}
.ls3e{letter-spacing:28.580915px;}
.ls1d{letter-spacing:28.652915px;}
.ls2e{letter-spacing:28.937412px;}
.ls61{letter-spacing:28.953229px;}
.ls7d{letter-spacing:29.462915px;}
.ls4b{letter-spacing:29.540915px;}
.ls21{letter-spacing:29.636915px;}
.ls45{letter-spacing:30.938915px;}
.ls15{letter-spacing:31.364915px;}
.ls39{letter-spacing:31.838915px;}
.ls7e{letter-spacing:32.006915px;}
.ls2a{letter-spacing:32.210915px;}
.ls55{letter-spacing:32.726700px;}
.ls6d{letter-spacing:32.999429px;}
.ls24{letter-spacing:34.553412px;}
.ls20{letter-spacing:34.964915px;}
.ls7f{letter-spacing:36.002915px;}
.ls50{letter-spacing:37.058915px;}
.ls5e{letter-spacing:38.855412px;}
.ls1a{letter-spacing:39.500915px;}
.ls35{letter-spacing:44.096915px;}
.ls73{letter-spacing:59.849412px;}
.ls70{letter-spacing:76.358712px;}
.ls76{letter-spacing:76.364712px;}
.ls8e{letter-spacing:164.954525px;}
.ls8d{letter-spacing:276.206525px;}
.ls8c{letter-spacing:453.458525px;}
.ls68{letter-spacing:1768.724700px;}
.ls60{letter-spacing:1792.256712px;}
.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;}
}
.wsc3{word-spacing:-65.454600px;}
.ws33{word-spacing:-20.906199px;}
.ws17{word-spacing:-18.183288px;}
.ws1b{word-spacing:-16.730196px;}
.wsde{word-spacing:-15.359443px;}
.ws2{word-spacing:-15.301440px;}
.ws5{word-spacing:-15.235200px;}
.ws3{word-spacing:-15.102720px;}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.904000px;}
.ws6{word-spacing:-14.705280px;}
.ws4{word-spacing:-14.506560px;}
.ws74{word-spacing:-14.111859px;}
.ws120{word-spacing:-13.346153px;}
.ws12b{word-spacing:-12.941018px;}
.ws127{word-spacing:-12.910801px;}
.wsd3{word-spacing:-10.996373px;}
.ws8f{word-spacing:-7.252370px;}
.wsd1{word-spacing:-3.586912px;}
.wsc2{word-spacing:-3.203888px;}
.ws41{word-spacing:-2.932366px;}
.wsef{word-spacing:-2.932013px;}
.ws34{word-spacing:-2.670548px;}
.ws98{word-spacing:-2.212365px;}
.ws20{word-spacing:-2.081456px;}
.ws1f{word-spacing:-2.016002px;}
.wse2{word-spacing:-1.748448px;}
.ws71{word-spacing:-1.688729px;}
.ws59{word-spacing:-1.623274px;}
.ws36{word-spacing:-1.557819px;}
.ws3c{word-spacing:-1.492365px;}
.ws3a{word-spacing:-1.296001px;}
.wsb8{word-spacing:-1.034183px;}
.wsf5{word-spacing:-0.995270px;}
.wsa2{word-spacing:-0.968728px;}
.wsff{word-spacing:-0.941472px;}
.ws96{word-spacing:-0.903273px;}
.wse6{word-spacing:-0.780077px;}
.ws7b{word-spacing:-0.772364px;}
.wsb1{word-spacing:-0.641455px;}
.wsa{word-spacing:-0.529920px;}
.ws94{word-spacing:-0.510546px;}
.wsab{word-spacing:-0.445091px;}
.wsdd{word-spacing:-0.403488px;}
.ws10c{word-spacing:-0.314182px;}
.ws117{word-spacing:-0.248727px;}
.ws10{word-spacing:-0.198720px;}
.wse0{word-spacing:-0.188294px;}
.wsc{word-spacing:-0.132480px;}
.wsd{word-spacing:-0.066240px;}
.ws2d{word-spacing:-0.065455px;}
.ws139{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.047821px;}
.ws9{word-spacing:0.000000px;}
.ws85{word-spacing:0.013091px;}
.ws11{word-spacing:0.066240px;}
.ws24{word-spacing:0.078546px;}
.wsf1{word-spacing:0.134496px;}
.ws8{word-spacing:0.198720px;}
.ws12{word-spacing:0.264960px;}
.wse{word-spacing:0.331200px;}
.ws7{word-spacing:0.397440px;}
.ws56{word-spacing:0.471273px;}
.ws97{word-spacing:0.536728px;}
.wsc0{word-spacing:0.602182px;}
.ws108{word-spacing:0.618682px;}
.wsf{word-spacing:0.662400px;}
.ws3b{word-spacing:0.667637px;}
.ws129{word-spacing:0.726278px;}
.ws11b{word-spacing:0.733092px;}
.ws109{word-spacing:0.780077px;}
.ws13{word-spacing:0.794880px;}
.ws22{word-spacing:0.798546px;}
.wsb{word-spacing:0.993600px;}
.ws64{word-spacing:1.060365px;}
.wsf7{word-spacing:1.102867px;}
.ws46{word-spacing:1.125819px;}
.ws55{word-spacing:1.191274px;}
.ws6f{word-spacing:1.256728px;}
.ws105{word-spacing:1.318061px;}
.wsa1{word-spacing:1.387638px;}
.wsac{word-spacing:1.453092px;}
.ws39{word-spacing:1.518547px;}
.wsfd{word-spacing:1.587053px;}
.ws2f{word-spacing:1.649456px;}
.ws30{word-spacing:1.714911px;}
.ws106{word-spacing:1.748448px;}
.ws112{word-spacing:1.780365px;}
.wsf2{word-spacing:1.802246px;}
.ws9b{word-spacing:1.845820px;}
.wsfc{word-spacing:1.909843px;}
.ws38{word-spacing:1.911274px;}
.wse7{word-spacing:1.963642px;}
.wsaa{word-spacing:1.976729px;}
.ws133{word-spacing:2.017440px;}
.ws79{word-spacing:2.304002px;}
.ws131{word-spacing:2.340230px;}
.ws5e{word-spacing:2.369457px;}
.ws11d{word-spacing:2.434911px;}
.ws6a{word-spacing:2.500366px;}
.ws126{word-spacing:2.501626px;}
.ws90{word-spacing:2.565820px;}
.wsad{word-spacing:2.631275px;}
.wsbf{word-spacing:2.696730px;}
.ws8b{word-spacing:2.762184px;}
.ws124{word-spacing:2.770618px;}
.wsdf{word-spacing:2.824416px;}
.ws8c{word-spacing:2.827639px;}
.wse5{word-spacing:2.932013px;}
.wsda{word-spacing:3.039610px;}
.ws60{word-spacing:3.089457px;}
.wse1{word-spacing:3.093408px;}
.ws128{word-spacing:3.147206px;}
.ws57{word-spacing:3.154912px;}
.ws58{word-spacing:3.220366px;}
.ws83{word-spacing:3.285821px;}
.ws87{word-spacing:3.482185px;}
.wscb{word-spacing:3.604482px;}
.wsd8{word-spacing:3.606410px;}
.wsc9{word-spacing:3.608927px;}
.ws15{word-spacing:3.613094px;}
.wsc4{word-spacing:3.634209px;}
.wsd6{word-spacing:3.634261px;}
.wsc5{word-spacing:3.655535px;}
.ws19{word-spacing:3.678549px;}
.ws2a{word-spacing:3.744003px;}
.ws2b{word-spacing:3.809458px;}
.ws6b{word-spacing:3.874912px;}
.wsb0{word-spacing:3.940367px;}
.ws29{word-spacing:4.005822px;}
.wsfa{word-spacing:4.061779px;}
.ws45{word-spacing:4.071276px;}
.ws21{word-spacing:4.084367px;}
.ws125{word-spacing:4.115578px;}
.ws54{word-spacing:4.136731px;}
.ws18{word-spacing:4.162913px;}
.ws4e{word-spacing:4.202185px;}
.ws47{word-spacing:4.333095px;}
.ws100{word-spacing:4.384570px;}
.ws13d{word-spacing:4.438368px;}
.wseb{word-spacing:4.492166px;}
.ws78{word-spacing:4.529458px;}
.ws13c{word-spacing:4.545965px;}
.ws101{word-spacing:4.653562px;}
.wsa6{word-spacing:4.660368px;}
.ws4b{word-spacing:4.725822px;}
.ws50{word-spacing:4.791277px;}
.ws40{word-spacing:4.856731px;}
.ws7f{word-spacing:4.922186px;}
.wsae{word-spacing:4.987641px;}
.ws69{word-spacing:5.053095px;}
.ws9c{word-spacing:5.118550px;}
.ws119{word-spacing:5.184004px;}
.wsfe{word-spacing:5.191546px;}
.ws10a{word-spacing:5.245344px;}
.ws23{word-spacing:5.249459px;}
.ws1e{word-spacing:5.314914px;}
.ws9a{word-spacing:5.380368px;}
.wscf{word-spacing:5.511277px;}
.ws7d{word-spacing:5.576732px;}
.ws4d{word-spacing:5.642187px;}
.ws9f{word-spacing:5.707641px;}
.ws4f{word-spacing:5.773096px;}
.wsa9{word-spacing:5.838550px;}
.ws111{word-spacing:5.904005px;}
.wsa3{word-spacing:5.969460px;}
.ws76{word-spacing:6.034914px;}
.wsf4{word-spacing:6.052320px;}
.ws7c{word-spacing:6.100369px;}
.wsa4{word-spacing:6.165823px;}
.wsdb{word-spacing:6.213715px;}
.ws91{word-spacing:6.231278px;}
.ws123{word-spacing:6.267514px;}
.ws82{word-spacing:6.296733px;}
.ws95{word-spacing:6.427642px;}
.wsb9{word-spacing:6.493096px;}
.ws70{word-spacing:6.558551px;}
.ws10d{word-spacing:6.624006px;}
.ws3d{word-spacing:6.689460px;}
.ws5a{word-spacing:6.702551px;}
.wsa7{word-spacing:6.718818px;}
.ws6e{word-spacing:6.754915px;}
.wse8{word-spacing:6.805498px;}
.ws2e{word-spacing:6.820369px;}
.ws7a{word-spacing:6.951279px;}
.wse3{word-spacing:6.966893px;}
.ws61{word-spacing:7.016733px;}
.ws102{word-spacing:7.020691px;}
.ws93{word-spacing:7.278552px;}
.wsc1{word-spacing:7.344006px;}
.ws86{word-spacing:7.409461px;}
.ws3f{word-spacing:7.474915px;}
.wsf3{word-spacing:7.558675px;}
.ws5f{word-spacing:7.671279px;}
.ws6d{word-spacing:7.736734px;}
.ws104{word-spacing:7.740814px;}
.ws1d{word-spacing:7.802188px;}
.ws72{word-spacing:7.867643px;}
.ws8d{word-spacing:7.998552px;}
.ws42{word-spacing:8.064007px;}
.wsfb{word-spacing:8.096659px;}
.wsa0{word-spacing:8.129461px;}
.wscc{word-spacing:8.194916px;}
.wsea{word-spacing:8.204256px;}
.ws113{word-spacing:8.260371px;}
.wsb3{word-spacing:8.325825px;}
.wsb4{word-spacing:8.391280px;}
.ws25{word-spacing:8.456734px;}
.ws81{word-spacing:8.522189px;}
.wse4{word-spacing:8.580845px;}
.ws136{word-spacing:8.587644px;}
.ws44{word-spacing:8.653098px;}
.wsd0{word-spacing:8.718553px;}
.ws103{word-spacing:8.796038px;}
.ws75{word-spacing:8.849462px;}
.ws73{word-spacing:8.914917px;}
.ws10f{word-spacing:8.980371px;}
.ws63{word-spacing:9.176735px;}
.ws107{word-spacing:9.280224px;}
.ws12d{word-spacing:9.334022px;}
.wsf6{word-spacing:9.387821px;}
.ws11c{word-spacing:9.479130px;}
.ws92{word-spacing:9.504008px;}
.ws3e{word-spacing:9.569463px;}
.wsd9{word-spacing:9.603014px;}
.ws52{word-spacing:9.634917px;}
.ws84{word-spacing:9.700372px;}
.ws9e{word-spacing:9.765826px;}
.ws43{word-spacing:9.962190px;}
.ws67{word-spacing:10.093099px;}
.ws26{word-spacing:10.158554px;}
.ws27{word-spacing:10.224009px;}
.ws8a{word-spacing:10.420372px;}
.wsb6{word-spacing:10.551282px;}
.ws88{word-spacing:10.682191px;}
.ws11e{word-spacing:10.697130px;}
.ws62{word-spacing:10.747645px;}
.wsb7{word-spacing:10.813100px;}
.ws1a{word-spacing:10.878555px;}
.ws5c{word-spacing:11.009464px;}
.ws5d{word-spacing:11.074918px;}
.ws77{word-spacing:11.087130px;}
.ws68{word-spacing:11.140373px;}
.ws89{word-spacing:11.205828px;}
.ws10e{word-spacing:11.402191px;}
.ws53{word-spacing:11.533101px;}
.wsdc{word-spacing:11.593555px;}
.ws28{word-spacing:11.598555px;}
.ws115{word-spacing:11.794919px;}
.wscd{word-spacing:11.925828px;}
.wse9{word-spacing:12.185338px;}
.wsb5{word-spacing:12.384010px;}
.ws32{word-spacing:12.514920px;}
.ws37{word-spacing:12.645829px;}
.ws5b{word-spacing:12.711283px;}
.wsb2{word-spacing:12.842193px;}
.wsce{word-spacing:12.973102px;}
.wsc6{word-spacing:13.234920px;}
.ws51{word-spacing:13.431284px;}
.wsee{word-spacing:13.476499px;}
.ws1c{word-spacing:13.693102px;}
.ws48{word-spacing:13.758557px;}
.wsa8{word-spacing:13.775130px;}
.ws49{word-spacing:13.824012px;}
.wsf0{word-spacing:13.960685px;}
.ws114{word-spacing:14.020375px;}
.ws99{word-spacing:14.282194px;}
.wsf8{word-spacing:14.391072px;}
.ws8e{word-spacing:14.413103px;}
.ws4c{word-spacing:14.478558px;}
.wsf9{word-spacing:14.767661px;}
.ws116{word-spacing:14.805831px;}
.wsa5{word-spacing:15.077130px;}
.wsed{word-spacing:15.574637px;}
.ws110{word-spacing:15.656740px;}
.ws9d{word-spacing:15.787650px;}
.wsba{word-spacing:15.853104px;}
.wsbb{word-spacing:15.918559px;}
.ws35{word-spacing:16.730196px;}
.ws80{word-spacing:18.101369px;}
.wsec{word-spacing:18.103162px;}
.wsc7{word-spacing:18.130924px;}
.ws31{word-spacing:18.340379px;}
.wsd2{word-spacing:19.382087px;}
.ws137{word-spacing:19.845499px;}
.ws66{word-spacing:20.107653px;}
.ws11a{word-spacing:20.304017px;}
.ws134{word-spacing:20.325289px;}
.wsd5{word-spacing:21.123658px;}
.ws65{word-spacing:21.154927px;}
.ws135{word-spacing:21.381289px;}
.ws4a{word-spacing:21.416745px;}
.wsbe{word-spacing:21.482200px;}
.wsbd{word-spacing:22.333110px;}
.ws7e{word-spacing:22.922201px;}
.wsd7{word-spacing:23.157833px;}
.ws2c{word-spacing:23.450092px;}
.ws118{word-spacing:25.409476px;}
.wsaf{word-spacing:25.540385px;}
.ws6c{word-spacing:27.831296px;}
.ws14{word-spacing:27.975090px;}
.ws10b{word-spacing:32.192873px;}
.wsbc{word-spacing:33.591301px;}
.ws132{word-spacing:99.058159px;}
.ws12f{word-spacing:114.930757px;}
.ws12e{word-spacing:141.594600px;}
.ws130{word-spacing:147.501031px;}
.ws12c{word-spacing:160.138954px;}
.ws12a{word-spacing:160.139114px;}
.ws13a{word-spacing:169.463826px;}
.ws13b{word-spacing:169.523602px;}
.ws138{word-spacing:173.229689px;}
.ws11f{word-spacing:227.257131px;}
.wsd4{word-spacing:677.664565px;}
.ws122{word-spacing:1192.218922px;}
.wsca{word-spacing:1314.799641px;}
.wsc8{word-spacing:1466.981586px;}
.ws121{word-spacing:1688.586707px;}
._3c{margin-left:-2914.581351px;}
._40{margin-left:-2913.445380px;}
._1d{margin-left:-2895.430428px;}
._27{margin-left:-2894.422959px;}
._9c{margin-left:-2892.903495px;}
._18{margin-left:-2875.895221px;}
._5b{margin-left:-2872.497099px;}
._63{margin-left:-2853.265337px;}
._96{margin-left:-2851.096044px;}
._79{margin-left:-2837.626223px;}
._57{margin-left:-2787.452283px;}
._91{margin-left:-2780.919278px;}
._2a{margin-left:-2752.479451px;}
._a3{margin-left:-2748.338759px;}
._a2{margin-left:-2747.138955px;}
._8b{margin-left:-2744.238684px;}
._66{margin-left:-2729.523777px;}
._1f{margin-left:-2668.468105px;}
._77{margin-left:-2658.823361px;}
._49{margin-left:-2613.740013px;}
._7f{margin-left:-2595.867389px;}
._99{margin-left:-2590.206848px;}
._98{margin-left:-2475.343055px;}
._3e{margin-left:-2447.986451px;}
._2f{margin-left:-2432.986285px;}
._9b{margin-left:-2431.456552px;}
._43{margin-left:-2421.267019px;}
._2c{margin-left:-2355.006025px;}
._42{margin-left:-2351.630238px;}
._ad{margin-left:-2277.630302px;}
._65{margin-left:-2272.280044px;}
._6d{margin-left:-2268.108870px;}
._71{margin-left:-2214.053578px;}
._47{margin-left:-2212.321795px;}
._7a{margin-left:-2176.819483px;}
._a9{margin-left:-2147.064034px;}
._ac{margin-left:-2117.046155px;}
._37{margin-left:-2087.749658px;}
._90{margin-left:-2079.299572px;}
._3b{margin-left:-2028.442188px;}
._5f{margin-left:-2020.826777px;}
._8c{margin-left:-1979.022768px;}
._52{margin-left:-1970.902236px;}
._8d{margin-left:-1956.505684px;}
._a8{margin-left:-1943.143055px;}
._9f{margin-left:-1937.250276px;}
._55{margin-left:-1908.078947px;}
._64{margin-left:-1904.411387px;}
._24{margin-left:-1882.829553px;}
._53{margin-left:-1873.360439px;}
._6b{margin-left:-1849.161320px;}
._45{margin-left:-1828.087784px;}
._6c{margin-left:-1818.688630px;}
._86{margin-left:-1814.569790px;}
._8e{margin-left:-1781.155179px;}
._92{margin-left:-1777.260955px;}
._7d{margin-left:-1761.985658px;}
._84{margin-left:-1738.277854px;}
._30{margin-left:-1725.058232px;}
._68{margin-left:-1686.736318px;}
._8f{margin-left:-1685.188633px;}
._22{margin-left:-1637.938159px;}
._41{margin-left:-1587.176249px;}
._8a{margin-left:-1547.551766px;}
._78{margin-left:-1499.676570px;}
._94{margin-left:-1490.611540px;}
._5d{margin-left:-1422.784142px;}
._7e{margin-left:-1352.142062px;}
._36{margin-left:-1343.975948px;}
._97{margin-left:-1331.906260px;}
._b9{margin-left:-1307.167046px;}
._67{margin-left:-1298.088947px;}
._31{margin-left:-1285.282808px;}
._a6{margin-left:-1281.612603px;}
._93{margin-left:-1230.285800px;}
._4f{margin-left:-1228.757935px;}
._69{margin-left:-1218.438696px;}
._75{margin-left:-1214.240617px;}
._35{margin-left:-1213.228549px;}
._3d{margin-left:-1210.658795px;}
._32{margin-left:-1206.835023px;}
._9e{margin-left:-1168.944566px;}
._89{margin-left:-1134.323094px;}
._28{margin-left:-1092.518068px;}
._56{margin-left:-1084.371633px;}
._70{margin-left:-1068.044441px;}
._74{margin-left:-1054.168858px;}
._1b{margin-left:-1037.903692px;}
._33{margin-left:-1027.653502px;}
._95{margin-left:-1000.429636px;}
._2d{margin-left:-944.613935px;}
._4c{margin-left:-913.817028px;}
._7b{margin-left:-822.410730px;}
._6f{margin-left:-821.383473px;}
._3f{margin-left:-785.336193px;}
._3a{margin-left:-774.356845px;}
._a0{margin-left:-763.706865px;}
._60{margin-left:-741.244636px;}
._5e{margin-left:-735.622979px;}
._50{margin-left:-728.416873px;}
._b7{margin-left:-721.193336px;}
._88{margin-left:-711.822739px;}
._9a{margin-left:-613.522303px;}
._5c{margin-left:-602.861859px;}
._17{margin-left:-590.002244px;}
._58{margin-left:-588.114938px;}
._76{margin-left:-585.875305px;}
._6a{margin-left:-582.044348px;}
._4e{margin-left:-556.454548px;}
._6e{margin-left:-524.159248px;}
._25{margin-left:-504.972339px;}
._82{margin-left:-487.574868px;}
._2b{margin-left:-482.580767px;}
._4d{margin-left:-479.924584px;}
._44{margin-left:-455.451555px;}
._29{margin-left:-296.472810px;}
._46{margin-left:-247.829564px;}
._62{margin-left:-31.744589px;}
._7c{margin-left:-28.004893px;}
._61{margin-left:-26.174431px;}
._81{margin-left:-24.367991px;}
._80{margin-left:-21.976522px;}
._b6{margin-left:-8.091257px;}
._7{margin-left:-6.283642px;}
._5{margin-left:-5.163958px;}
._9{margin-left:-3.338185px;}
._2{margin-left:-2.324084px;}
._1{margin-left:-1.145952px;}
._0{width:1.073088px;}
._4{width:2.324084px;}
._48{width:3.728291px;}
._e{width:5.373282px;}
._a{width:6.747541px;}
._b1{width:8.559460px;}
._4b{width:9.949991px;}
._12{width:11.039552px;}
._87{width:15.460154px;}
._16{width:16.633820px;}
._19{width:18.393635px;}
._f{width:20.160017px;}
._9d{width:21.786743px;}
._6{width:22.844548px;}
._39{width:24.088706px;}
._1a{width:25.986823px;}
._d{width:27.163659px;}
._23{width:28.245049px;}
._11{width:29.413227px;}
._21{width:30.601414px;}
._15{width:31.719667px;}
._1e{width:32.727300px;}
._8{width:33.742292px;}
._10{width:34.953649px;}
._51{width:36.397909px;}
._3{width:37.443582px;}
._13{width:38.787351px;}
._4a{width:40.453256px;}
._c{width:42.185936px;}
._54{width:43.592764px;}
._20{width:44.935029px;}
._85{width:46.296443px;}
._1c{width:47.848205px;}
._b{width:49.156405px;}
._5a{width:50.374228px;}
._2e{width:52.059345px;}
._38{width:53.804573px;}
._59{width:55.931402px;}
._14{width:58.093412px;}
._a5{width:60.513224px;}
._26{width:62.156998px;}
._a7{width:63.325987px;}
._a4{width:65.625149px;}
._83{width:68.495428px;}
._73{width:76.375655px;}
._34{width:78.545520px;}
._ab{width:79.992931px;}
._ae{width:92.355194px;}
._aa{width:95.367352px;}
._af{width:100.834082px;}
._b0{width:109.971706px;}
._72{width:117.544846px;}
._b4{width:148.670760px;}
._b3{width:159.114549px;}
._b5{width:160.947278px;}
._b2{width:186.742323px;}
._bb{width:202.572344px;}
._ba{width:233.834983px;}
._b8{width:246.315298px;}
._bd{width:249.856604px;}
._bc{width:253.568095px;}
._a1{width:284.409875px;}
._bf{width:388.840278px;}
._be{width:500.142445px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(77,77,77);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsb{font-size:37.155474px;}
.fsc{font-size:37.242435px;}
.fs8{font-size:38.408355px;}
.fsf{font-size:38.498247px;}
.fs11{font-size:41.842800px;}
.fsa{font-size:46.441731px;}
.fs9{font-size:46.550425px;}
.fs3{font-size:47.820600px;}
.fsd{font-size:47.956554px;}
.fs7{font-size:48.007743px;}
.fs6{font-size:48.043641px;}
.fse{font-size:48.120102px;}
.fs5{font-size:53.798400px;}
.fs10{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y188{bottom:2.239674px;}
.y17e{bottom:8.129475px;}
.y156{bottom:8.495333px;}
.y13f{bottom:9.032216px;}
.y199{bottom:9.298500px;}
.y165{bottom:18.224615px;}
.y187{bottom:19.450498px;}
.y17a{bottom:24.090414px;}
.y17d{bottom:25.439226px;}
.y198{bottom:27.381000px;}
.y13a{bottom:28.130052px;}
.y14c{bottom:29.914890px;}
.y15d{bottom:33.406259px;}
.y13b{bottom:41.192243px;}
.y189{bottom:42.127479px;}
.y197{bottom:45.463500px;}
.y14b{bottom:46.207937px;}
.y15c{bottom:49.699306px;}
.y17b{bottom:56.012293px;}
.y13e{bottom:56.956957px;}
.y196{bottom:63.546000px;}
.y15e{bottom:67.976626px;}
.y14d{bottom:80.952883px;}
.y195{bottom:81.627000px;}
.y13c{bottom:87.135124px;}
.y18a{bottom:87.616810px;}
.y17c{bottom:87.934172px;}
.y185{bottom:88.299000px;}
.y16a{bottom:97.216842px;}
.y149{bottom:98.572500px;}
.y184{bottom:104.737500px;}
.y175{bottom:104.869249px;}
.y194{bottom:107.212500px;}
.y14e{bottom:113.888135px;}
.y148{bottom:115.009500px;}
.y169{bottom:117.292215px;}
.y15f{bottom:117.728636px;}
.y183{bottom:121.176000px;}
.y174{bottom:121.654467px;}
.y147{bottom:131.448000px;}
.y193{bottom:132.349500px;}
.y13d{bottom:133.078004px;}
.y18b{bottom:133.106140px;}
.y168{bottom:133.427944px;}
.y182{bottom:137.614500px;}
.y12f{bottom:139.761000px;}
.y176{bottom:145.333603px;}
.y14f{bottom:146.823374px;}
.y146{bottom:147.886500px;}
.y155{bottom:148.714537px;}
.y167{bottom:148.742186px;}
.y179{bottom:149.529911px;}
.y18f{bottom:150.429119px;}
.y181{bottom:154.053000px;}
.y145{bottom:164.325000px;}
.y177{bottom:166.614860px;}
.y87{bottom:166.660500px;}
.y10c{bottom:167.407500px;}
.y160{bottom:167.480646px;}
.y166{bottom:168.789910px;}
.y136{bottom:169.111636px;}
.y55{bottom:172.338000px;}
.y164{bottom:178.391294px;}
.y18c{bottom:178.595485px;}
.y150{bottom:179.758627px;}
.y144{bottom:180.763500px;}
.y9b{bottom:182.202000px;}
.ya4{bottom:185.788500px;}
.y178{bottom:187.896111px;}
.y180{bottom:190.416000px;}
.y10b{bottom:192.064500px;}
.y6f{bottom:193.857000px;}
.yae{bottom:195.651000px;}
.y86{bottom:197.146500px;}
.y143{bottom:197.202000px;}
.y139{bottom:197.488121px;}
.y54{bottom:202.824000px;}
.yde{bottom:205.507500px;}
.y9a{bottom:212.686500px;}
.y151{bottom:212.693879px;}
.y142{bottom:213.640500px;}
.y137{bottom:214.604096px;}
.ya3{bottom:216.273000px;}
.y10a{bottom:216.723000px;}
.y161{bottom:217.232656px;}
.y35{bottom:217.777500px;}
.y172{bottom:217.869708px;}
.y16f{bottom:219.218520px;}
.y18d{bottom:224.084823px;}
.y6e{bottom:224.343000px;}
.yad{bottom:226.137000px;}
.y85{bottom:227.631000px;}
.y53{bottom:233.310000px;}
.y170{bottom:240.799509px;}
.y109{bottom:241.380000px;}
.y99{bottom:243.172500px;}
.ydc{bottom:244.074000px;}
.y152{bottom:245.629125px;}
.ya2{bottom:246.759000px;}
.y34{bottom:248.262000px;}
.y141{bottom:250.003500px;}
.ydb{bottom:252.480000px;}
.y6d{bottom:254.829000px;}
.yac{bottom:256.623000px;}
.y84{bottom:258.117000px;}
.ydd{bottom:259.660500px;}
.y138{bottom:260.096556px;}
.y171{bottom:262.380497px;}
.yda{bottom:263.706000px;}
.y108{bottom:266.037000px;}
.y162{bottom:266.984667px;}
.y18e{bottom:269.574160px;}
.y98{bottom:273.658500px;}
.ybd{bottom:274.555500px;}
.y52{bottom:277.245000px;}
.y153{bottom:278.564374px;}
.y33{bottom:278.748000px;}
.y140{bottom:279.173182px;}
.y173{bottom:280.724338px;}
.yab{bottom:287.107500px;}
.y83{bottom:288.603000px;}
.y6c{bottom:289.798500px;}
.y107{bottom:290.695500px;}
.y4e{bottom:294.280500px;}
.y97{bottom:304.144500px;}
.ybc{bottom:305.041500px;}
.y131{bottom:305.318761px;}
.ya1{bottom:307.731000px;}
.y32{bottom:309.234000px;}
.y154{bottom:311.499623px;}
.y21{bottom:313.684560px;}
.y106{bottom:315.352500px;}
.yd9{bottom:315.949500px;}
.y163{bottom:316.736677px;}
.yaa{bottom:317.593500px;}
.y82{bottom:319.089000px;}
.y135{bottom:319.101627px;}
.y31{bottom:322.444500px;}
.y4d{bottom:324.766500px;}
.y51{bottom:334.630500px;}
.y20{bottom:335.278800px;}
.ybb{bottom:335.526000px;}
.y6b{bottom:338.217000px;}
.y105{bottom:340.009500px;}
.y132{bottom:342.073068px;}
.ya9{bottom:348.079500px;}
.y96{bottom:349.575000px;}
.y81{bottom:351.069000px;}
.yd8{bottom:354.516000px;}
.y104{bottom:364.668000px;}
.y50{bottom:365.115000px;}
.yba{bottom:366.012000px;}
.y30{bottom:368.251500px;}
.y4c{bottom:368.701500px;}
.y1f{bottom:369.110880px;}
.y12e{bottom:372.523500px;}
.yd7{bottom:374.148000px;}
.ya8{bottom:378.565500px;}
.y133{bottom:378.827371px;}
.y95{bottom:380.059500px;}
.y103{bottom:389.325000px;}
.y1e{bottom:390.705120px;}
.y12d{bottom:392.847000px;}
.y4f{bottom:395.601000px;}
.y80{bottom:399.039000px;}
.y6a{bottom:399.187500px;}
.y134{bottom:400.879955px;}
.ya7{bottom:409.051500px;}
.yb9{bottom:409.947000px;}
.y94{bottom:410.545500px;}
.y1d{bottom:412.481520px;}
.y12c{bottom:413.170500px;}
.y102{bottom:413.982000px;}
.y4b{bottom:426.087000px;}
.yd6{bottom:426.393000px;}
.y15a{bottom:427.680000px;}
.y7f{bottom:429.525000px;}
.ya0{bottom:429.673500px;}
.y12b{bottom:433.494000px;}
.y16d{bottom:435.900000px;}
.y101{bottom:438.640500px;}
.ya6{bottom:439.536000px;}
.y93{bottom:441.031500px;}
.y69{bottom:443.122500px;}
.y159{bottom:444.118500px;}
.y1c{bottom:446.313600px;}
.y16c{bottom:452.338500px;}
.y12a{bottom:453.817500px;}
.y4a{bottom:456.573000px;}
.yd5{bottom:456.877500px;}
.y2f{bottom:458.053500px;}
.y7e{bottom:460.009500px;}
.y9f{bottom:460.159500px;}
.y158{bottom:460.557000px;}
.y191{bottom:460.626000px;}
.y100{bottom:463.297500px;}
.yb8{bottom:467.332500px;}
.y16b{bottom:468.777000px;}
.ya5{bottom:470.022000px;}
.y92{bottom:472.039500px;}
.y129{bottom:474.141000px;}
.y157{bottom:476.995500px;}
.y190{bottom:477.064500px;}
.y1b{bottom:480.145680px;}
.y49{bottom:487.059000px;}
.yd4{bottom:487.363500px;}
.yff{bottom:487.956000px;}
.y2e{bottom:488.538000px;}
.y7d{bottom:490.495500px;}
.y17f{bottom:492.306000px;}
.y128{bottom:494.466000px;}
.yb7{bottom:497.818500px;}
.y15b{bottom:500.158500px;}
.y68{bottom:500.508000px;}
.ye8{bottom:500.794500px;}
.y1a{bottom:501.557760px;}
.y9e{bottom:504.094500px;}
.ye7{bottom:505.632000px;}
.y14a{bottom:508.378500px;}
.y186{bottom:508.447500px;}
.yfe{bottom:512.613000px;}
.y127{bottom:514.789500px;}
.y91{bottom:516.498000px;}
.y48{bottom:517.543500px;}
.y7c{bottom:520.981500px;}
.y19{bottom:523.334160px;}
.y19c{bottom:524.073000px;}
.yb6{bottom:528.304500px;}
.y67{bottom:530.994000px;}
.yd3{bottom:531.298500px;}
.y2d{bottom:532.234500px;}
.y126{bottom:535.113000px;}
.yfd{bottom:537.270000px;}
.y19b{bottom:540.511500px;}
.ye6{bottom:540.910500px;}
.y18{bottom:545.110560px;}
.y90{bottom:546.984000px;}
.y47{bottom:548.029500px;}
.y7b{bottom:551.467500px;}
.y125{bottom:555.436500px;}
.y19a{bottom:556.950000px;}
.ye3{bottom:559.677000px;}
.ye2{bottom:560.343000px;}
.y9d{bottom:561.478500px;}
.y66{bottom:561.480000px;}
.yd2{bottom:561.784500px;}
.yfc{bottom:561.928500px;}
.y17{bottom:566.886960px;}
.yb5{bottom:572.239500px;}
.y2c{bottom:573.577500px;}
.y124{bottom:575.760000px;}
.ye5{bottom:575.889000px;}
.y8f{bottom:577.470000px;}
.y46{bottom:578.515500px;}
.ye4{bottom:580.797000px;}
.y7a{bottom:581.953500px;}
.yfb{bottom:586.585500px;}
.y192{bottom:588.333000px;}
.y16{bottom:588.481200px;}
.y65{bottom:591.964500px;}
.y123{bottom:596.085000px;}
.y2b{bottom:604.063500px;}
.yd1{bottom:604.209000px;}
.y8e{bottom:607.956000px;}
.y45{bottom:609.001500px;}
.yfa{bottom:611.242500px;}
.y79{bottom:612.438000px;}
.ye1{bottom:612.588000px;}
.yc7{bottom:615.433500px;}
.y122{bottom:616.408500px;}
.y64{bottom:622.450500px;}
.y15{bottom:622.495440px;}
.ycf{bottom:623.451000px;}
.yb4{bottom:629.623500px;}
.ycc{bottom:629.712000px;}
.yf9{bottom:635.901000px;}
.y121{bottom:636.732000px;}
.yd0{bottom:637.974000px;}
.y8d{bottom:638.440500px;}
.y44{bottom:639.487500px;}
.ycb{bottom:639.529500px;}
.y78{bottom:642.924000px;}
.y2a{bottom:647.760000px;}
.yca{bottom:649.348500px;}
.yce{bottom:650.247000px;}
.y63{bottom:652.936500px;}
.ycd{bottom:653.520000px;}
.y14{bottom:656.161920px;}
.ye0{bottom:656.523000px;}
.y120{bottom:657.055500px;}
.yc9{bottom:659.166000px;}
.yb3{bottom:660.109500px;}
.yf8{bottom:660.558000px;}
.y130{bottom:666.696000px;}
.yc8{bottom:668.329500px;}
.y8c{bottom:668.926500px;}
.y43{bottom:669.972000px;}
.y77{bottom:673.410000px;}
.y11f{bottom:677.379000px;}
.y13{bottom:677.756160px;}
.y62{bottom:683.422500px;}
.yf7{bottom:685.215000px;}
.ydf{bottom:687.009000px;}
.y29{bottom:689.284500px;}
.yb2{bottom:690.595500px;}
.yc6{bottom:692.892000px;}
.y11e{bottom:697.704000px;}
.y8b{bottom:699.412500px;}
.y12{bottom:699.532560px;}
.y42{bottom:700.458000px;}
.y76{bottom:705.390000px;}
.yf6{bottom:709.873500px;}
.y9c{bottom:713.907000px;}
.y61{bottom:713.908500px;}
.y11d{bottom:718.027500px;}
.y28{bottom:719.770500px;}
.yb1{bottom:721.081500px;}
.y11{bottom:721.126800px;}
.y8a{bottom:729.898500px;}
.y41{bottom:730.944000px;}
.yf5{bottom:734.530500px;}
.yc5{bottom:736.828500px;}
.y11c{bottom:738.351000px;}
.y10{bottom:742.903200px;}
.y60{bottom:744.393000px;}
.yb0{bottom:751.566000px;}
.y75{bottom:753.360000px;}
.y11b{bottom:758.674500px;}
.yf4{bottom:759.187500px;}
.y89{bottom:760.906500px;}
.y40{bottom:761.430000px;}
.y27{bottom:763.285500px;}
.yf{bottom:764.679600px;}
.yc4{bottom:767.760000px;}
.y5f{bottom:774.879000px;}
.yc1{bottom:775.968000px;}
.y11a{bottom:778.998000px;}
.y74{bottom:783.846000px;}
.ye{bottom:786.456000px;}
.yc0{bottom:787.192500px;}
.y3f{bottom:791.916000px;}
.y16e{bottom:794.196000px;}
.yaf{bottom:795.502500px;}
.y119{bottom:799.323000px;}
.yc3{bottom:802.738500px;}
.y5e{bottom:805.365000px;}
.yc2{bottom:807.646500px;}
.yf3{bottom:808.503000px;}
.y26{bottom:809.092500px;}
.y73{bottom:814.332000px;}
.y118{bottom:819.646500px;}
.yd{bottom:820.288080px;}
.y3e{bottom:822.400500px;}
.yf2{bottom:833.161500px;}
.y5d{bottom:835.851000px;}
.ybf{bottom:839.437500px;}
.y117{bottom:839.970000px;}
.y72{bottom:844.816500px;}
.y3d{bottom:852.886500px;}
.yc{bottom:854.120160px;}
.yf1{bottom:857.818500px;}
.y116{bottom:860.293500px;}
.y5c{bottom:866.335500px;}
.y88{bottom:866.337000px;}
.ybe{bottom:869.923500px;}
.y71{bottom:875.302500px;}
.yb{bottom:875.532240px;}
.y115{bottom:880.617000px;}
.yf0{bottom:882.475500px;}
.y3c{bottom:883.372500px;}
.y5b{bottom:896.821500px;}
.ya{bottom:897.308640px;}
.y25{bottom:900.030000px;}
.y114{bottom:900.942000px;}
.yef{bottom:907.134000px;}
.y70{bottom:909.823500px;}
.y3b{bottom:913.858500px;}
.y9{bottom:919.085040px;}
.y113{bottom:921.265500px;}
.y5a{bottom:927.307500px;}
.y24{bottom:930.516000px;}
.yee{bottom:931.791000px;}
.y8{bottom:940.861440px;}
.y112{bottom:941.589000px;}
.y3a{bottom:944.344500px;}
.yed{bottom:956.448000px;}
.y59{bottom:957.793500px;}
.y111{bottom:961.912500px;}
.y7{bottom:974.693520px;}
.y39{bottom:974.829000px;}
.yec{bottom:981.106500px;}
.y110{bottom:982.236000px;}
.y58{bottom:988.279500px;}
.y10f{bottom:1002.559500px;}
.y38{bottom:1005.315000px;}
.yeb{bottom:1005.763500px;}
.y6{bottom:1008.360000px;}
.y57{bottom:1018.764000px;}
.y10e{bottom:1022.884500px;}
.yea{bottom:1030.420500px;}
.y37{bottom:1035.801000px;}
.y36{bottom:1038.621000px;}
.y23{bottom:1039.387500px;}
.y5{bottom:1042.200000px;}
.y10d{bottom:1043.208000px;}
.y56{bottom:1049.250000px;}
.ye9{bottom:1055.079000px;}
.y4{bottom:1075.872960px;}
.y22{bottom:1079.736000px;}
.y3{bottom:1097.467200px;}
.y2{bottom:1119.243600px;}
.y1{bottom:1141.020000px;}
.he{height:2.618184px;}
.h9{height:22.236579px;}
.ha{height:24.281011px;}
.h7{height:33.187496px;}
.h10{height:34.143908px;}
.h1b{height:40.348800px;}
.h29{height:44.831700px;}
.h6{height:45.818220px;}
.hd{height:46.865494px;}
.h2{height:47.545312px;}
.h24{height:48.437274px;}
.h23{height:48.550638px;}
.h8{height:49.090950px;}
.h26{height:50.017187px;}
.h21{height:50.070576px;}
.h20{height:50.108016px;}
.h27{height:50.187763px;}
.h11{height:53.055908px;}
.h1d{height:53.944800px;}
.h1c{height:53.950800px;}
.h5{height:56.941496px;}
.hb{height:57.897908px;}
.h1e{height:59.823654px;}
.h16{height:61.167908px;}
.h4{height:61.459121px;}
.h18{height:63.349496px;}
.h13{height:64.796184px;}
.h17{height:65.272950px;}
.h1a{height:77.247908px;}
.h19{height:82.699496px;}
.h14{height:91.145494px;}
.hc{height:93.370950px;}
.h12{height:93.988950px;}
.h15{height:109.700184px;}
.hf{height:126.820950px;}
.h28{height:150.429000px;}
.h25{height:297.000000px;}
.h22{height:329.392890px;}
.h1f{height:424.500000px;}
.h3{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:340.500000px;}
.w6{width:579.766500px;}
.w4{width:699.415740px;}
.w3{width:723.000000px;}
.w2{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5c{left:8.967000px;}
.x57{left:12.631843px;}
.x2f{left:17.103186px;}
.x2a{left:20.703888px;}
.x29{left:22.864260px;}
.x2b{left:25.204726px;}
.x2e{left:31.505900px;}
.x2c{left:34.206372px;}
.x56{left:35.495488px;}
.x2d{left:38.707242px;}
.x26{left:41.407745px;}
.x27{left:45.008415px;}
.x48{left:48.609536px;}
.x39{left:52.248253px;}
.x43{left:55.810878px;}
.x44{left:59.411548px;}
.x46{left:61.661487px;}
.xc{left:67.533000px;}
.xb{left:72.297000px;}
.x6{left:96.768000px;}
.x25{left:101.749500px;}
.x1e{left:103.680000px;}
.x2{left:105.703500px;}
.x4{left:116.733000px;}
.x7{left:118.027500px;}
.xa{left:122.173500px;}
.x1f{left:126.453000px;}
.x1{left:127.620000px;}
.x9{left:129.663000px;}
.x8{left:130.977000px;}
.xd{left:137.677500px;}
.x45{left:139.524564px;}
.x47{left:144.028987px;}
.x33{left:152.390739px;}
.x31{left:153.775648px;}
.x59{left:156.574500px;}
.x5b{left:163.573500px;}
.x3a{left:165.888337px;}
.x32{left:169.806956px;}
.x21{left:171.906000px;}
.x5a{left:174.745500px;}
.xe{left:178.587000px;}
.x3b{left:196.801754px;}
.x12{left:215.434500px;}
.xf{left:217.228500px;}
.x16{left:225.090000px;}
.x3{left:235.347000px;}
.x11{left:236.832000px;}
.x13{left:239.658000px;}
.x17{left:241.798500px;}
.x10{left:242.971500px;}
.x58{left:244.041000px;}
.x55{left:252.496872px;}
.x51{left:254.747484px;}
.x23{left:260.404500px;}
.x14{left:262.087500px;}
.x18{left:263.284500px;}
.x4b{left:265.999580px;}
.x15{left:273.123000px;}
.x54{left:276.351481px;}
.x19{left:279.991500px;}
.x30{left:283.102739px;}
.x5{left:291.628500px;}
.x1b{left:299.689500px;}
.x1a{left:305.829000px;}
.x50{left:309.462560px;}
.x28{left:324.198383px;}
.x1c{left:326.203500px;}
.x4f{left:357.365145px;}
.x4a{left:361.869142px;}
.x49{left:365.469813px;}
.x40{left:367.967030px;}
.x37{left:370.091794px;}
.x3f{left:374.933463px;}
.x36{left:381.899897px;}
.x3e{left:387.995526px;}
.x22{left:389.491500px;}
.x20{left:390.693000px;}
.x3c{left:402.311550px;}
.x1d{left:412.378500px;}
.x41{left:416.244418px;}
.x34{left:417.724795px;}
.x24{left:438.274500px;}
.x38{left:492.439787px;}
.x3d{left:515.951607px;}
.x35{left:519.870279px;}
.x53{left:525.838583px;}
.x4d{left:541.501522px;}
.x42{left:546.865051px;}
.x52{left:574.305558px;}
.x4e{left:578.809528px;}
.x4c{left:582.410199px;}
@media print{
.v2{vertical-align:-46.325333pt;}
.vd{vertical-align:-37.541333pt;}
.v13{vertical-align:-19.203580pt;}
.v3{vertical-align:-8.730667pt;}
.v14{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.653333pt;}
.v11{vertical-align:8.474667pt;}
.v12{vertical-align:12.090667pt;}
.vb{vertical-align:14.384000pt;}
.v7{vertical-align:16.810667pt;}
.v1{vertical-align:21.114667pt;}
.va{vertical-align:24.021333pt;}
.vf{vertical-align:26.810667pt;}
.v10{vertical-align:38.314667pt;}
.v4{vertical-align:39.360000pt;}
.ve{vertical-align:43.637333pt;}
.v8{vertical-align:55.269333pt;}
.v6{vertical-align:60.085333pt;}
.v5{vertical-align:69.093333pt;}
.v9{vertical-align:95.184000pt;}
.ls8{letter-spacing:-0.765440pt;}
.lsb{letter-spacing:-0.588800pt;}
.lsc{letter-spacing:-0.471040pt;}
.ls9{letter-spacing:-0.412160pt;}
.ls3{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.176640pt;}
.ls4{letter-spacing:-0.058880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000933pt;}
.ls8b{letter-spacing:0.001249pt;}
.ls7b{letter-spacing:0.001888pt;}
.ls53{letter-spacing:0.001910pt;}
.ls52{letter-spacing:0.001916pt;}
.ls33{letter-spacing:0.002400pt;}
.ls66{letter-spacing:0.002405pt;}
.ls2f{letter-spacing:0.002411pt;}
.ls36{letter-spacing:0.002717pt;}
.ls31{letter-spacing:0.003370pt;}
.ls7c{letter-spacing:0.003608pt;}
.ls56{letter-spacing:0.004826pt;}
.ls2{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.117760pt;}
.ls84{letter-spacing:0.214096pt;}
.ls88{letter-spacing:0.214597pt;}
.ls81{letter-spacing:0.221316pt;}
.ls1{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.241408pt;}
.ls6{letter-spacing:0.294400pt;}
.ls78{letter-spacing:1.145198pt;}
.ls8a{letter-spacing:1.882671pt;}
.ls54{letter-spacing:2.561432pt;}
.ls1e{letter-spacing:2.653258pt;}
.lsd{letter-spacing:2.654270pt;}
.ls86{letter-spacing:2.656473pt;}
.lsf{letter-spacing:2.656853pt;}
.ls6a{letter-spacing:2.657146pt;}
.ls5f{letter-spacing:2.657458pt;}
.ls1c{letter-spacing:2.658591pt;}
.lse{letter-spacing:2.659144pt;}
.ls89{letter-spacing:2.661806pt;}
.ls63{letter-spacing:4.527012pt;}
.ls6f{letter-spacing:9.698411pt;}
.ls7a{letter-spacing:9.716372pt;}
.ls75{letter-spacing:9.862479pt;}
.ls6e{letter-spacing:12.353146pt;}
.ls65{letter-spacing:12.927477pt;}
.ls79{letter-spacing:12.929910pt;}
.ls64{letter-spacing:12.930411pt;}
.ls59{letter-spacing:15.127744pt;}
.ls5c{letter-spacing:15.130144pt;}
.ls5b{letter-spacing:15.132577pt;}
.ls5a{letter-spacing:15.135477pt;}
.ls77{letter-spacing:15.629258pt;}
.ls4a{letter-spacing:16.159477pt;}
.ls71{letter-spacing:16.162400pt;}
.ls1b{letter-spacing:16.445258pt;}
.ls27{letter-spacing:16.978591pt;}
.ls13{letter-spacing:16.994591pt;}
.ls28{letter-spacing:17.357258pt;}
.ls49{letter-spacing:18.402591pt;}
.ls80{letter-spacing:18.567925pt;}
.ls62{letter-spacing:18.813258pt;}
.ls5d{letter-spacing:18.818591pt;}
.ls72{letter-spacing:18.822479pt;}
.ls40{letter-spacing:18.829258pt;}
.ls85{letter-spacing:19.125806pt;}
.ls25{letter-spacing:19.234591pt;}
.ls67{letter-spacing:19.272203pt;}
.ls22{letter-spacing:19.290144pt;}
.ls32{letter-spacing:19.743477pt;}
.ls82{letter-spacing:19.973806pt;}
.ls51{letter-spacing:20.061258pt;}
.ls4e{letter-spacing:20.189258pt;}
.ls19{letter-spacing:20.295925pt;}
.ls87{letter-spacing:20.320473pt;}
.ls42{letter-spacing:20.482591pt;}
.ls48{letter-spacing:20.573258pt;}
.ls2c{letter-spacing:20.898591pt;}
.ls46{letter-spacing:20.903925pt;}
.ls83{letter-spacing:20.955139pt;}
.ls4c{letter-spacing:21.042591pt;}
.ls3c{letter-spacing:21.293258pt;}
.ls3b{letter-spacing:21.298591pt;}
.ls2d{letter-spacing:21.565258pt;}
.ls37{letter-spacing:21.639925pt;}
.ls26{letter-spacing:21.650591pt;}
.ls58{letter-spacing:21.668811pt;}
.ls4f{letter-spacing:22.045258pt;}
.ls12{letter-spacing:22.048853pt;}
.ls2b{letter-spacing:22.050591pt;}
.ls11{letter-spacing:22.051144pt;}
.ls10{letter-spacing:22.051603pt;}
.ls69{letter-spacing:22.054792pt;}
.ls38{letter-spacing:22.119925pt;}
.ls34{letter-spacing:22.178591pt;}
.ls17{letter-spacing:22.189258pt;}
.ls16{letter-spacing:22.370591pt;}
.ls6b{letter-spacing:22.573077pt;}
.ls1f{letter-spacing:22.663925pt;}
.ls3a{letter-spacing:23.063925pt;}
.ls23{letter-spacing:23.085258pt;}
.ls3d{letter-spacing:23.106591pt;}
.ls4d{letter-spacing:23.293258pt;}
.ls29{letter-spacing:23.469258pt;}
.ls14{letter-spacing:23.479925pt;}
.ls41{letter-spacing:23.581258pt;}
.ls43{letter-spacing:24.258591pt;}
.ls3f{letter-spacing:24.269258pt;}
.ls47{letter-spacing:24.285258pt;}
.ls57{letter-spacing:24.326792pt;}
.ls44{letter-spacing:24.551925pt;}
.ls30{letter-spacing:24.802591pt;}
.ls18{letter-spacing:24.903925pt;}
.ls74{letter-spacing:25.002159pt;}
.ls3e{letter-spacing:25.405258pt;}
.ls1d{letter-spacing:25.469258pt;}
.ls2e{letter-spacing:25.722144pt;}
.ls61{letter-spacing:25.736203pt;}
.ls7d{letter-spacing:26.189258pt;}
.ls4b{letter-spacing:26.258591pt;}
.ls21{letter-spacing:26.343925pt;}
.ls45{letter-spacing:27.501258pt;}
.ls15{letter-spacing:27.879925pt;}
.ls39{letter-spacing:28.301258pt;}
.ls7e{letter-spacing:28.450591pt;}
.ls2a{letter-spacing:28.631925pt;}
.ls55{letter-spacing:29.090400pt;}
.ls6d{letter-spacing:29.332825pt;}
.ls24{letter-spacing:30.714144pt;}
.ls20{letter-spacing:31.079925pt;}
.ls7f{letter-spacing:32.002591pt;}
.ls50{letter-spacing:32.941258pt;}
.ls5e{letter-spacing:34.538144pt;}
.ls1a{letter-spacing:35.111925pt;}
.ls35{letter-spacing:39.197258pt;}
.ls73{letter-spacing:53.199477pt;}
.ls70{letter-spacing:67.874411pt;}
.ls76{letter-spacing:67.879744pt;}
.ls8e{letter-spacing:146.626245pt;}
.ls8d{letter-spacing:245.516911pt;}
.ls8c{letter-spacing:403.074245pt;}
.ls68{letter-spacing:1572.199733pt;}
.ls60{letter-spacing:1593.117077pt;}
.wsc3{word-spacing:-58.181867pt;}
.ws33{word-spacing:-18.583288pt;}
.ws17{word-spacing:-16.162923pt;}
.ws1b{word-spacing:-14.871285pt;}
.wsde{word-spacing:-13.652838pt;}
.ws2{word-spacing:-13.601280pt;}
.ws5{word-spacing:-13.542400pt;}
.ws3{word-spacing:-13.424640pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:-13.248000pt;}
.ws6{word-spacing:-13.071360pt;}
.ws4{word-spacing:-12.894720pt;}
.ws74{word-spacing:-12.543875pt;}
.ws120{word-spacing:-11.863247pt;}
.ws12b{word-spacing:-11.503127pt;}
.ws127{word-spacing:-11.476268pt;}
.wsd3{word-spacing:-9.774554pt;}
.ws8f{word-spacing:-6.446551pt;}
.wsd1{word-spacing:-3.188366pt;}
.wsc2{word-spacing:-2.847900pt;}
.ws41{word-spacing:-2.606548pt;}
.wsef{word-spacing:-2.606234pt;}
.ws34{word-spacing:-2.373820pt;}
.ws98{word-spacing:-1.966547pt;}
.ws20{word-spacing:-1.850183pt;}
.ws1f{word-spacing:-1.792001pt;}
.wse2{word-spacing:-1.554176pt;}
.ws71{word-spacing:-1.501092pt;}
.ws59{word-spacing:-1.442910pt;}
.ws36{word-spacing:-1.384728pt;}
.ws3c{word-spacing:-1.326547pt;}
.ws3a{word-spacing:-1.152001pt;}
.wsb8{word-spacing:-0.919273pt;}
.wsf5{word-spacing:-0.884685pt;}
.wsa2{word-spacing:-0.861092pt;}
.wsff{word-spacing:-0.836864pt;}
.ws96{word-spacing:-0.802910pt;}
.wse6{word-spacing:-0.693402pt;}
.ws7b{word-spacing:-0.686546pt;}
.wsb1{word-spacing:-0.570182pt;}
.wsa{word-spacing:-0.471040pt;}
.ws94{word-spacing:-0.453819pt;}
.wsab{word-spacing:-0.395637pt;}
.wsdd{word-spacing:-0.358656pt;}
.ws10c{word-spacing:-0.279273pt;}
.ws117{word-spacing:-0.221091pt;}
.ws10{word-spacing:-0.176640pt;}
.wse0{word-spacing:-0.167373pt;}
.wsc{word-spacing:-0.117760pt;}
.wsd{word-spacing:-0.058880pt;}
.ws2d{word-spacing:-0.058182pt;}
.ws139{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.042507pt;}
.ws9{word-spacing:0.000000pt;}
.ws85{word-spacing:0.011636pt;}
.ws11{word-spacing:0.058880pt;}
.ws24{word-spacing:0.069818pt;}
.wsf1{word-spacing:0.119552pt;}
.ws8{word-spacing:0.176640pt;}
.ws12{word-spacing:0.235520pt;}
.wse{word-spacing:0.294400pt;}
.ws7{word-spacing:0.353280pt;}
.ws56{word-spacing:0.418909pt;}
.ws97{word-spacing:0.477091pt;}
.wsc0{word-spacing:0.535273pt;}
.ws108{word-spacing:0.549939pt;}
.wsf{word-spacing:0.588800pt;}
.ws3b{word-spacing:0.593455pt;}
.ws129{word-spacing:0.645581pt;}
.ws11b{word-spacing:0.651637pt;}
.ws109{word-spacing:0.693402pt;}
.ws13{word-spacing:0.706560pt;}
.ws22{word-spacing:0.709819pt;}
.wsb{word-spacing:0.883200pt;}
.ws64{word-spacing:0.942546pt;}
.wsf7{word-spacing:0.980326pt;}
.ws46{word-spacing:1.000728pt;}
.ws55{word-spacing:1.058910pt;}
.ws6f{word-spacing:1.117092pt;}
.ws105{word-spacing:1.171610pt;}
.wsa1{word-spacing:1.233456pt;}
.wsac{word-spacing:1.291637pt;}
.ws39{word-spacing:1.349819pt;}
.wsfd{word-spacing:1.410714pt;}
.ws2f{word-spacing:1.466183pt;}
.ws30{word-spacing:1.524365pt;}
.ws106{word-spacing:1.554176pt;}
.ws112{word-spacing:1.582547pt;}
.wsf2{word-spacing:1.601997pt;}
.ws9b{word-spacing:1.640729pt;}
.wsfc{word-spacing:1.697638pt;}
.ws38{word-spacing:1.698911pt;}
.wse7{word-spacing:1.745459pt;}
.wsaa{word-spacing:1.757092pt;}
.ws133{word-spacing:1.793280pt;}
.ws79{word-spacing:2.048002pt;}
.ws131{word-spacing:2.080205pt;}
.ws5e{word-spacing:2.106184pt;}
.ws11d{word-spacing:2.164365pt;}
.ws6a{word-spacing:2.222547pt;}
.ws126{word-spacing:2.223667pt;}
.ws90{word-spacing:2.280729pt;}
.wsad{word-spacing:2.338911pt;}
.wsbf{word-spacing:2.397093pt;}
.ws8b{word-spacing:2.455275pt;}
.ws124{word-spacing:2.462771pt;}
.wsdf{word-spacing:2.510592pt;}
.ws8c{word-spacing:2.513457pt;}
.wse5{word-spacing:2.606234pt;}
.wsda{word-spacing:2.701875pt;}
.ws60{word-spacing:2.746184pt;}
.wse1{word-spacing:2.749696pt;}
.ws128{word-spacing:2.797517pt;}
.ws57{word-spacing:2.804366pt;}
.ws58{word-spacing:2.862548pt;}
.ws83{word-spacing:2.920730pt;}
.ws87{word-spacing:3.095275pt;}
.wscb{word-spacing:3.203984pt;}
.wsd8{word-spacing:3.205698pt;}
.wsc9{word-spacing:3.207935pt;}
.ws15{word-spacing:3.211639pt;}
.wsc4{word-spacing:3.230408pt;}
.wsd6{word-spacing:3.230454pt;}
.wsc5{word-spacing:3.249364pt;}
.ws19{word-spacing:3.269821pt;}
.ws2a{word-spacing:3.328003pt;}
.ws2b{word-spacing:3.386185pt;}
.ws6b{word-spacing:3.444367pt;}
.wsb0{word-spacing:3.502548pt;}
.ws29{word-spacing:3.560730pt;}
.wsfa{word-spacing:3.610470pt;}
.ws45{word-spacing:3.618912pt;}
.ws21{word-spacing:3.630548pt;}
.ws125{word-spacing:3.658291pt;}
.ws54{word-spacing:3.677094pt;}
.ws18{word-spacing:3.700367pt;}
.ws4e{word-spacing:3.735276pt;}
.ws47{word-spacing:3.851640pt;}
.ws100{word-spacing:3.897395pt;}
.ws13d{word-spacing:3.945216pt;}
.wseb{word-spacing:3.993037pt;}
.ws78{word-spacing:4.026185pt;}
.ws13c{word-spacing:4.040858pt;}
.ws101{word-spacing:4.136499pt;}
.wsa6{word-spacing:4.142549pt;}
.ws4b{word-spacing:4.200731pt;}
.ws50{word-spacing:4.258913pt;}
.ws40{word-spacing:4.317095pt;}
.ws7f{word-spacing:4.375276pt;}
.wsae{word-spacing:4.433458pt;}
.ws69{word-spacing:4.491640pt;}
.ws9c{word-spacing:4.549822pt;}
.ws119{word-spacing:4.608004pt;}
.wsfe{word-spacing:4.614707pt;}
.ws10a{word-spacing:4.662528pt;}
.ws23{word-spacing:4.666186pt;}
.ws1e{word-spacing:4.724368pt;}
.ws9a{word-spacing:4.782549pt;}
.wscf{word-spacing:4.898913pt;}
.ws7d{word-spacing:4.957095pt;}
.ws4d{word-spacing:5.015277pt;}
.ws9f{word-spacing:5.073459pt;}
.ws4f{word-spacing:5.131641pt;}
.wsa9{word-spacing:5.189823pt;}
.ws111{word-spacing:5.248004pt;}
.wsa3{word-spacing:5.306186pt;}
.ws76{word-spacing:5.364368pt;}
.wsf4{word-spacing:5.379840pt;}
.ws7c{word-spacing:5.422550pt;}
.wsa4{word-spacing:5.480732pt;}
.wsdb{word-spacing:5.523302pt;}
.ws91{word-spacing:5.538914pt;}
.ws123{word-spacing:5.571123pt;}
.ws82{word-spacing:5.597096pt;}
.ws95{word-spacing:5.713459pt;}
.wsb9{word-spacing:5.771641pt;}
.ws70{word-spacing:5.829823pt;}
.ws10d{word-spacing:5.888005pt;}
.ws3d{word-spacing:5.946187pt;}
.ws5a{word-spacing:5.957823pt;}
.wsa7{word-spacing:5.972283pt;}
.ws6e{word-spacing:6.004369pt;}
.wse8{word-spacing:6.049331pt;}
.ws2e{word-spacing:6.062551pt;}
.ws7a{word-spacing:6.178914pt;}
.wse3{word-spacing:6.192794pt;}
.ws61{word-spacing:6.237096pt;}
.ws102{word-spacing:6.240614pt;}
.ws93{word-spacing:6.469824pt;}
.wsc1{word-spacing:6.528005pt;}
.ws86{word-spacing:6.586187pt;}
.ws3f{word-spacing:6.644369pt;}
.wsf3{word-spacing:6.718822pt;}
.ws5f{word-spacing:6.818915pt;}
.ws6d{word-spacing:6.877097pt;}
.ws104{word-spacing:6.880724pt;}
.ws1d{word-spacing:6.935279pt;}
.ws72{word-spacing:6.993460pt;}
.ws8d{word-spacing:7.109824pt;}
.ws42{word-spacing:7.168006pt;}
.wsfb{word-spacing:7.197030pt;}
.wsa0{word-spacing:7.226188pt;}
.wscc{word-spacing:7.284370pt;}
.wsea{word-spacing:7.292672pt;}
.ws113{word-spacing:7.342552pt;}
.wsb3{word-spacing:7.400733pt;}
.wsb4{word-spacing:7.458915pt;}
.ws25{word-spacing:7.517097pt;}
.ws81{word-spacing:7.575279pt;}
.wse4{word-spacing:7.627418pt;}
.ws136{word-spacing:7.633461pt;}
.ws44{word-spacing:7.691643pt;}
.wsd0{word-spacing:7.749825pt;}
.ws103{word-spacing:7.818701pt;}
.ws75{word-spacing:7.866188pt;}
.ws73{word-spacing:7.924370pt;}
.ws10f{word-spacing:7.982552pt;}
.ws63{word-spacing:8.157098pt;}
.ws107{word-spacing:8.249088pt;}
.ws12d{word-spacing:8.296909pt;}
.wsf6{word-spacing:8.344730pt;}
.ws11c{word-spacing:8.425894pt;}
.ws92{word-spacing:8.448007pt;}
.ws3e{word-spacing:8.506189pt;}
.wsd9{word-spacing:8.536013pt;}
.ws52{word-spacing:8.564371pt;}
.ws84{word-spacing:8.622553pt;}
.ws9e{word-spacing:8.680735pt;}
.ws43{word-spacing:8.855280pt;}
.ws67{word-spacing:8.971644pt;}
.ws26{word-spacing:9.029826pt;}
.ws27{word-spacing:9.088008pt;}
.ws8a{word-spacing:9.262553pt;}
.wsb6{word-spacing:9.378917pt;}
.ws88{word-spacing:9.495281pt;}
.ws11e{word-spacing:9.508560pt;}
.ws62{word-spacing:9.553463pt;}
.wsb7{word-spacing:9.611644pt;}
.ws1a{word-spacing:9.669826pt;}
.ws5c{word-spacing:9.786190pt;}
.ws5d{word-spacing:9.844372pt;}
.ws77{word-spacing:9.855227pt;}
.ws68{word-spacing:9.902554pt;}
.ws89{word-spacing:9.960736pt;}
.ws10e{word-spacing:10.135281pt;}
.ws53{word-spacing:10.251645pt;}
.wsdc{word-spacing:10.305382pt;}
.ws28{word-spacing:10.309827pt;}
.ws115{word-spacing:10.484372pt;}
.wscd{word-spacing:10.600736pt;}
.wse9{word-spacing:10.831411pt;}
.wsb5{word-spacing:11.008009pt;}
.ws32{word-spacing:11.124373pt;}
.ws37{word-spacing:11.240737pt;}
.ws5b{word-spacing:11.298919pt;}
.wsb2{word-spacing:11.415282pt;}
.wsce{word-spacing:11.531646pt;}
.wsc6{word-spacing:11.764373pt;}
.ws51{word-spacing:11.938919pt;}
.wsee{word-spacing:11.979110pt;}
.ws1c{word-spacing:12.171647pt;}
.ws48{word-spacing:12.229828pt;}
.wsa8{word-spacing:12.244560pt;}
.ws49{word-spacing:12.288010pt;}
.wsf0{word-spacing:12.409498pt;}
.ws114{word-spacing:12.462556pt;}
.ws99{word-spacing:12.695283pt;}
.wsf8{word-spacing:12.792064pt;}
.ws8e{word-spacing:12.811647pt;}
.ws4c{word-spacing:12.869829pt;}
.wsf9{word-spacing:13.126810pt;}
.ws116{word-spacing:13.160738pt;}
.wsa5{word-spacing:13.401894pt;}
.wsed{word-spacing:13.844122pt;}
.ws110{word-spacing:13.917103pt;}
.ws9d{word-spacing:14.033466pt;}
.wsba{word-spacing:14.091648pt;}
.wsbb{word-spacing:14.149830pt;}
.ws35{word-spacing:14.871285pt;}
.ws80{word-spacing:16.090106pt;}
.wsec{word-spacing:16.091699pt;}
.wsc7{word-spacing:16.116377pt;}
.ws31{word-spacing:16.302559pt;}
.wsd2{word-spacing:17.228521pt;}
.ws137{word-spacing:17.640444pt;}
.ws66{word-spacing:17.873469pt;}
.ws11a{word-spacing:18.048015pt;}
.ws134{word-spacing:18.066924pt;}
.wsd5{word-spacing:18.776585pt;}
.ws65{word-spacing:18.804379pt;}
.ws135{word-spacing:19.005590pt;}
.ws4a{word-spacing:19.037107pt;}
.wsbe{word-spacing:19.095289pt;}
.wsbd{word-spacing:19.851653pt;}
.ws7e{word-spacing:20.375290pt;}
.wsd7{word-spacing:20.584741pt;}
.ws2c{word-spacing:20.844526pt;}
.ws118{word-spacing:22.586201pt;}
.wsaf{word-spacing:22.702564pt;}
.ws6c{word-spacing:24.738930pt;}
.ws14{word-spacing:24.866747pt;}
.ws10b{word-spacing:28.615887pt;}
.wsbc{word-spacing:29.858934pt;}
.ws132{word-spacing:88.051697pt;}
.ws12f{word-spacing:102.160673pt;}
.ws12e{word-spacing:125.861867pt;}
.ws130{word-spacing:131.112027pt;}
.ws12c{word-spacing:142.345737pt;}
.ws12a{word-spacing:142.345879pt;}
.ws13a{word-spacing:150.634512pt;}
.ws13b{word-spacing:150.687646pt;}
.ws138{word-spacing:153.981946pt;}
.ws11f{word-spacing:202.006338pt;}
.wsd4{word-spacing:602.368502pt;}
.ws122{word-spacing:1059.750153pt;}
.wsca{word-spacing:1168.710792pt;}
.wsc8{word-spacing:1303.983632pt;}
.ws121{word-spacing:1500.965962pt;}
._3c{margin-left:-2590.738979pt;}
._40{margin-left:-2589.729227pt;}
._1d{margin-left:-2573.715936pt;}
._27{margin-left:-2572.820408pt;}
._9c{margin-left:-2571.469773pt;}
._18{margin-left:-2556.351308pt;}
._5b{margin-left:-2553.330754pt;}
._63{margin-left:-2536.235855pt;}
._96{margin-left:-2534.307595pt;}
._79{margin-left:-2522.334420pt;}
._57{margin-left:-2477.735363pt;}
._91{margin-left:-2471.928247pt;}
._2a{margin-left:-2446.648401pt;}
._a3{margin-left:-2442.967786pt;}
._a2{margin-left:-2441.901293pt;}
._8b{margin-left:-2439.323275pt;}
._66{margin-left:-2426.243357pt;}
._1f{margin-left:-2371.971649pt;}
._77{margin-left:-2363.398543pt;}
._49{margin-left:-2323.324456pt;}
._7f{margin-left:-2307.437679pt;}
._99{margin-left:-2302.406087pt;}
._98{margin-left:-2200.304938pt;}
._3e{margin-left:-2175.987956pt;}
._2f{margin-left:-2162.654475pt;}
._9b{margin-left:-2161.294713pt;}
._43{margin-left:-2152.237350pt;}
._2c{margin-left:-2093.338689pt;}
._42{margin-left:-2090.337989pt;}
._ad{margin-left:-2024.560269pt;}
._65{margin-left:-2019.804483pt;}
._6d{margin-left:-2016.096773pt;}
._71{margin-left:-1968.047625pt;}
._47{margin-left:-1966.508262pt;}
._7a{margin-left:-1934.950651pt;}
._a9{margin-left:-1908.501363pt;}
._ac{margin-left:-1881.818804pt;}
._37{margin-left:-1855.777474pt;}
._90{margin-left:-1848.266286pt;}
._3b{margin-left:-1803.059722pt;}
._5f{margin-left:-1796.290468pt;}
._8c{margin-left:-1759.131349pt;}
._52{margin-left:-1751.913099pt;}
._8d{margin-left:-1739.116163pt;}
._a8{margin-left:-1727.238271pt;}
._9f{margin-left:-1722.000245pt;}
._55{margin-left:-1696.070175pt;}
._64{margin-left:-1692.810122pt;}
._24{margin-left:-1673.626270pt;}
._53{margin-left:-1665.209279pt;}
._6b{margin-left:-1643.698951pt;}
._45{margin-left:-1624.966919pt;}
._6c{margin-left:-1616.612115pt;}
._86{margin-left:-1612.950924pt;}
._8e{margin-left:-1583.249048pt;}
._92{margin-left:-1579.787516pt;}
._7d{margin-left:-1566.209474pt;}
._84{margin-left:-1545.135870pt;}
._30{margin-left:-1533.385095pt;}
._68{margin-left:-1499.321172pt;}
._8f{margin-left:-1497.945451pt;}
._22{margin-left:-1455.945030pt;}
._41{margin-left:-1410.823332pt;}
._8a{margin-left:-1375.601570pt;}
._78{margin-left:-1333.045840pt;}
._94{margin-left:-1324.988035pt;}
._5d{margin-left:-1264.697015pt;}
._7e{margin-left:-1201.904055pt;}
._36{margin-left:-1194.645287pt;}
._97{margin-left:-1183.916675pt;}
._b9{margin-left:-1161.926263pt;}
._67{margin-left:-1153.856842pt;}
._31{margin-left:-1142.473607pt;}
._a6{margin-left:-1139.211203pt;}
._93{margin-left:-1093.587377pt;}
._4f{margin-left:-1092.229276pt;}
._69{margin-left:-1083.056619pt;}
._75{margin-left:-1079.324993pt;}
._35{margin-left:-1078.425377pt;}
._3d{margin-left:-1076.141152pt;}
._32{margin-left:-1072.742243pt;}
._9e{margin-left:-1039.061837pt;}
._89{margin-left:-1008.287194pt;}
._28{margin-left:-971.127172pt;}
._56{margin-left:-963.885896pt;}
._70{margin-left:-949.372836pt;}
._74{margin-left:-937.038985pt;}
._1b{margin-left:-922.581060pt;}
._33{margin-left:-913.469780pt;}
._95{margin-left:-889.270787pt;}
._2d{margin-left:-839.656831pt;}
._4c{margin-left:-812.281802pt;}
._7b{margin-left:-731.031760pt;}
._6f{margin-left:-730.118643pt;}
._3f{margin-left:-698.076616pt;}
._3a{margin-left:-688.317195pt;}
._a0{margin-left:-678.850547pt;}
._60{margin-left:-658.884121pt;}
._5e{margin-left:-653.887092pt;}
._50{margin-left:-647.481665pt;}
._b7{margin-left:-641.060743pt;}
._88{margin-left:-632.731324pt;}
._9a{margin-left:-545.353158pt;}
._5c{margin-left:-535.877208pt;}
._17{margin-left:-524.446439pt;}
._58{margin-left:-522.768834pt;}
._76{margin-left:-520.778049pt;}
._6a{margin-left:-517.372754pt;}
._4e{margin-left:-494.626265pt;}
._6e{margin-left:-465.919332pt;}
._25{margin-left:-448.864302pt;}
._82{margin-left:-433.399883pt;}
._2b{margin-left:-428.960681pt;}
._4d{margin-left:-426.599630pt;}
._44{margin-left:-404.845827pt;}
._29{margin-left:-263.531387pt;}
._46{margin-left:-220.292945pt;}
._62{margin-left:-28.217412pt;}
._7c{margin-left:-24.893238pt;}
._61{margin-left:-23.266161pt;}
._81{margin-left:-21.660437pt;}
._80{margin-left:-19.534686pt;}
._b6{margin-left:-7.192228pt;}
._7{margin-left:-5.585459pt;}
._5{margin-left:-4.590185pt;}
._9{margin-left:-2.967275pt;}
._2{margin-left:-2.065853pt;}
._1{margin-left:-1.018624pt;}
._0{width:0.953856pt;}
._4{width:2.065853pt;}
._48{width:3.314037pt;}
._e{width:4.776251pt;}
._a{width:5.997814pt;}
._b1{width:7.608409pt;}
._4b{width:8.844437pt;}
._12{width:9.812935pt;}
._87{width:13.742359pt;}
._16{width:14.785618pt;}
._19{width:16.349898pt;}
._f{width:17.920015pt;}
._9d{width:19.365994pt;}
._6{width:20.306265pt;}
._39{width:21.412183pt;}
._1a{width:23.099398pt;}
._d{width:24.145475pt;}
._23{width:25.106710pt;}
._11{width:26.145091pt;}
._21{width:27.201257pt;}
._15{width:28.195259pt;}
._1e{width:29.090933pt;}
._8{width:29.993149pt;}
._10{width:31.069910pt;}
._51{width:32.353696pt;}
._3{width:33.283184pt;}
._13{width:34.477645pt;}
._4a{width:35.958449pt;}
._c{width:37.498610pt;}
._54{width:38.749123pt;}
._20{width:39.942248pt;}
._85{width:41.152394pt;}
._1c{width:42.531738pt;}
._b{width:43.694582pt;}
._5a{width:44.777091pt;}
._2e{width:46.274973pt;}
._38{width:47.826287pt;}
._59{width:49.716802pt;}
._14{width:51.638589pt;}
._a5{width:53.789532pt;}
._26{width:55.250665pt;}
._a7{width:56.289766pt;}
._a4{width:58.333466pt;}
._83{width:60.884825pt;}
._73{width:67.889471pt;}
._34{width:69.818240pt;}
._ab{width:71.104827pt;}
._ae{width:82.093506pt;}
._aa{width:84.770980pt;}
._af{width:89.630295pt;}
._b0{width:97.752627pt;}
._72{width:104.484308pt;}
._b4{width:132.151787pt;}
._b3{width:141.435155pt;}
._b5{width:143.064247pt;}
._b2{width:165.993176pt;}
._bb{width:180.064306pt;}
._ba{width:207.853318pt;}
._b8{width:218.946932pt;}
._bd{width:222.094759pt;}
._bc{width:225.393862pt;}
._a1{width:252.808778pt;}
._bf{width:345.635803pt;}
._be{width:444.571062pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:33.027088pt;}
.fsc{font-size:33.104386pt;}
.fs8{font-size:34.140760pt;}
.fsf{font-size:34.220664pt;}
.fs11{font-size:37.193600pt;}
.fsa{font-size:41.281538pt;}
.fs9{font-size:41.378155pt;}
.fs3{font-size:42.507200pt;}
.fsd{font-size:42.628048pt;}
.fs7{font-size:42.673550pt;}
.fs6{font-size:42.705459pt;}
.fse{font-size:42.773424pt;}
.fs5{font-size:47.820800pt;}
.fs10{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:1.990821pt;}
.y17e{bottom:7.226200pt;}
.y156{bottom:7.551407pt;}
.y13f{bottom:8.028636pt;}
.y199{bottom:8.265333pt;}
.y165{bottom:16.199658pt;}
.y187{bottom:17.289332pt;}
.y17a{bottom:21.413701pt;}
.y17d{bottom:22.612645pt;}
.y198{bottom:24.338667pt;}
.y13a{bottom:25.004490pt;}
.y14c{bottom:26.591013pt;}
.y15d{bottom:29.694452pt;}
.y13b{bottom:36.615327pt;}
.y189{bottom:37.446648pt;}
.y197{bottom:40.412000pt;}
.y14b{bottom:41.073722pt;}
.y15c{bottom:44.177161pt;}
.y17b{bottom:49.788705pt;}
.y13e{bottom:50.628406pt;}
.y196{bottom:56.485333pt;}
.y15e{bottom:60.423667pt;}
.y14d{bottom:71.958118pt;}
.y195{bottom:72.557333pt;}
.y13c{bottom:77.453443pt;}
.y18a{bottom:77.881609pt;}
.y17c{bottom:78.163709pt;}
.y185{bottom:78.488000pt;}
.y16a{bottom:86.414971pt;}
.y149{bottom:87.620000pt;}
.y184{bottom:93.100000pt;}
.y175{bottom:93.217110pt;}
.y194{bottom:95.300000pt;}
.y14e{bottom:101.233898pt;}
.y148{bottom:102.230667pt;}
.y169{bottom:104.259746pt;}
.y15f{bottom:104.647676pt;}
.y183{bottom:107.712000pt;}
.y174{bottom:108.137304pt;}
.y147{bottom:116.842667pt;}
.y193{bottom:117.644000pt;}
.y13d{bottom:118.291559pt;}
.y18b{bottom:118.316569pt;}
.y168{bottom:118.602617pt;}
.y182{bottom:122.324000pt;}
.y12f{bottom:124.232000pt;}
.y176{bottom:129.185425pt;}
.y14f{bottom:130.509666pt;}
.y146{bottom:131.454667pt;}
.y155{bottom:132.190700pt;}
.y167{bottom:132.215277pt;}
.y179{bottom:132.915476pt;}
.y18f{bottom:133.714772pt;}
.y181{bottom:136.936000pt;}
.y145{bottom:146.066667pt;}
.y177{bottom:148.102098pt;}
.y87{bottom:148.142667pt;}
.y10c{bottom:148.806667pt;}
.y160{bottom:148.871685pt;}
.y166{bottom:150.035475pt;}
.y136{bottom:150.321454pt;}
.y55{bottom:153.189333pt;}
.y164{bottom:158.570040pt;}
.y18c{bottom:158.751542pt;}
.y150{bottom:159.785446pt;}
.y144{bottom:160.678667pt;}
.y9b{bottom:161.957333pt;}
.ya4{bottom:165.145333pt;}
.y178{bottom:167.018765pt;}
.y180{bottom:169.258667pt;}
.y10b{bottom:170.724000pt;}
.y6f{bottom:172.317333pt;}
.yae{bottom:173.912000pt;}
.y86{bottom:175.241333pt;}
.y143{bottom:175.290667pt;}
.y139{bottom:175.544996pt;}
.y54{bottom:180.288000pt;}
.yde{bottom:182.673333pt;}
.y9a{bottom:189.054667pt;}
.y151{bottom:189.061226pt;}
.y142{bottom:189.902667pt;}
.y137{bottom:190.759196pt;}
.ya3{bottom:192.242667pt;}
.y10a{bottom:192.642667pt;}
.y161{bottom:193.095695pt;}
.y35{bottom:193.580000pt;}
.y172{bottom:193.661963pt;}
.y16f{bottom:194.860907pt;}
.y18d{bottom:199.186509pt;}
.y6e{bottom:199.416000pt;}
.yad{bottom:201.010667pt;}
.y85{bottom:202.338667pt;}
.y53{bottom:207.386667pt;}
.y170{bottom:214.044008pt;}
.y109{bottom:214.560000pt;}
.y99{bottom:216.153333pt;}
.ydc{bottom:216.954667pt;}
.y152{bottom:218.337000pt;}
.ya2{bottom:219.341333pt;}
.y34{bottom:220.677333pt;}
.y141{bottom:222.225333pt;}
.ydb{bottom:224.426667pt;}
.y6d{bottom:226.514667pt;}
.yac{bottom:228.109333pt;}
.y84{bottom:229.437333pt;}
.ydd{bottom:230.809333pt;}
.y138{bottom:231.196938pt;}
.y171{bottom:233.227109pt;}
.yda{bottom:234.405333pt;}
.y108{bottom:236.477333pt;}
.y162{bottom:237.319704pt;}
.y18e{bottom:239.621476pt;}
.y98{bottom:243.252000pt;}
.ybd{bottom:244.049333pt;}
.y52{bottom:246.440000pt;}
.y153{bottom:247.612777pt;}
.y33{bottom:247.776000pt;}
.y140{bottom:248.153939pt;}
.y173{bottom:249.532745pt;}
.yab{bottom:255.206667pt;}
.y83{bottom:256.536000pt;}
.y6c{bottom:257.598667pt;}
.y107{bottom:258.396000pt;}
.y4e{bottom:261.582667pt;}
.y97{bottom:270.350667pt;}
.ybc{bottom:271.148000pt;}
.y131{bottom:271.394454pt;}
.ya1{bottom:273.538667pt;}
.y32{bottom:274.874667pt;}
.y154{bottom:276.888554pt;}
.y21{bottom:278.830720pt;}
.y106{bottom:280.313333pt;}
.yd9{bottom:280.844000pt;}
.y163{bottom:281.543713pt;}
.yaa{bottom:282.305333pt;}
.y82{bottom:283.634667pt;}
.y135{bottom:283.645891pt;}
.y31{bottom:286.617333pt;}
.y4d{bottom:288.681333pt;}
.y51{bottom:297.449333pt;}
.y20{bottom:298.025600pt;}
.ybb{bottom:298.245333pt;}
.y6b{bottom:300.637333pt;}
.y105{bottom:302.230667pt;}
.y132{bottom:304.064949pt;}
.ya9{bottom:309.404000pt;}
.y96{bottom:310.733333pt;}
.y81{bottom:312.061333pt;}
.yd8{bottom:315.125333pt;}
.y104{bottom:324.149333pt;}
.y50{bottom:324.546667pt;}
.yba{bottom:325.344000pt;}
.y30{bottom:327.334667pt;}
.y4c{bottom:327.734667pt;}
.y1f{bottom:328.098560pt;}
.y12e{bottom:331.132000pt;}
.yd7{bottom:332.576000pt;}
.ya8{bottom:336.502667pt;}
.y133{bottom:336.735441pt;}
.y95{bottom:337.830667pt;}
.y103{bottom:346.066667pt;}
.y1e{bottom:347.293440pt;}
.y12d{bottom:349.197333pt;}
.y4f{bottom:351.645333pt;}
.y80{bottom:354.701333pt;}
.y6a{bottom:354.833333pt;}
.y134{bottom:356.337738pt;}
.ya7{bottom:363.601333pt;}
.yb9{bottom:364.397333pt;}
.y94{bottom:364.929333pt;}
.y1d{bottom:366.650240pt;}
.y12c{bottom:367.262667pt;}
.y102{bottom:367.984000pt;}
.y4b{bottom:378.744000pt;}
.yd6{bottom:379.016000pt;}
.y15a{bottom:380.160000pt;}
.y7f{bottom:381.800000pt;}
.ya0{bottom:381.932000pt;}
.y12b{bottom:385.328000pt;}
.y16d{bottom:387.466667pt;}
.y101{bottom:389.902667pt;}
.ya6{bottom:390.698667pt;}
.y93{bottom:392.028000pt;}
.y69{bottom:393.886667pt;}
.y159{bottom:394.772000pt;}
.y1c{bottom:396.723200pt;}
.y16c{bottom:402.078667pt;}
.y12a{bottom:403.393333pt;}
.y4a{bottom:405.842667pt;}
.yd5{bottom:406.113333pt;}
.y2f{bottom:407.158667pt;}
.y7e{bottom:408.897333pt;}
.y9f{bottom:409.030667pt;}
.y158{bottom:409.384000pt;}
.y191{bottom:409.445333pt;}
.y100{bottom:411.820000pt;}
.yb8{bottom:415.406667pt;}
.y16b{bottom:416.690667pt;}
.ya5{bottom:417.797333pt;}
.y92{bottom:419.590667pt;}
.y129{bottom:421.458667pt;}
.y157{bottom:423.996000pt;}
.y190{bottom:424.057333pt;}
.y1b{bottom:426.796160pt;}
.y49{bottom:432.941333pt;}
.yd4{bottom:433.212000pt;}
.yff{bottom:433.738667pt;}
.y2e{bottom:434.256000pt;}
.y7d{bottom:435.996000pt;}
.y17f{bottom:437.605333pt;}
.y128{bottom:439.525333pt;}
.yb7{bottom:442.505333pt;}
.y15b{bottom:444.585333pt;}
.y68{bottom:444.896000pt;}
.ye8{bottom:445.150667pt;}
.y1a{bottom:445.829120pt;}
.y9e{bottom:448.084000pt;}
.ye7{bottom:449.450667pt;}
.y14a{bottom:451.892000pt;}
.y186{bottom:451.953333pt;}
.yfe{bottom:455.656000pt;}
.y127{bottom:457.590667pt;}
.y91{bottom:459.109333pt;}
.y48{bottom:460.038667pt;}
.y7c{bottom:463.094667pt;}
.y19{bottom:465.185920pt;}
.y19c{bottom:465.842667pt;}
.yb6{bottom:469.604000pt;}
.y67{bottom:471.994667pt;}
.yd3{bottom:472.265333pt;}
.y2d{bottom:473.097333pt;}
.y126{bottom:475.656000pt;}
.yfd{bottom:477.573333pt;}
.y19b{bottom:480.454667pt;}
.ye6{bottom:480.809333pt;}
.y18{bottom:484.542720pt;}
.y90{bottom:486.208000pt;}
.y47{bottom:487.137333pt;}
.y7b{bottom:490.193333pt;}
.y125{bottom:493.721333pt;}
.y19a{bottom:495.066667pt;}
.ye3{bottom:497.490667pt;}
.ye2{bottom:498.082667pt;}
.y9d{bottom:499.092000pt;}
.y66{bottom:499.093333pt;}
.yd2{bottom:499.364000pt;}
.yfc{bottom:499.492000pt;}
.y17{bottom:503.899520pt;}
.yb5{bottom:508.657333pt;}
.y2c{bottom:509.846667pt;}
.y124{bottom:511.786667pt;}
.ye5{bottom:511.901333pt;}
.y8f{bottom:513.306667pt;}
.y46{bottom:514.236000pt;}
.ye4{bottom:516.264000pt;}
.y7a{bottom:517.292000pt;}
.yfb{bottom:521.409333pt;}
.y192{bottom:522.962667pt;}
.y16{bottom:523.094400pt;}
.y65{bottom:526.190667pt;}
.y123{bottom:529.853333pt;}
.y2b{bottom:536.945333pt;}
.yd1{bottom:537.074667pt;}
.y8e{bottom:540.405333pt;}
.y45{bottom:541.334667pt;}
.yfa{bottom:543.326667pt;}
.y79{bottom:544.389333pt;}
.ye1{bottom:544.522667pt;}
.yc7{bottom:547.052000pt;}
.y122{bottom:547.918667pt;}
.y64{bottom:553.289333pt;}
.y15{bottom:553.329280pt;}
.ycf{bottom:554.178667pt;}
.yb4{bottom:559.665333pt;}
.ycc{bottom:559.744000pt;}
.yf9{bottom:565.245333pt;}
.y121{bottom:565.984000pt;}
.yd0{bottom:567.088000pt;}
.y8d{bottom:567.502667pt;}
.y44{bottom:568.433333pt;}
.ycb{bottom:568.470667pt;}
.y78{bottom:571.488000pt;}
.y2a{bottom:575.786667pt;}
.yca{bottom:577.198667pt;}
.yce{bottom:577.997333pt;}
.y63{bottom:580.388000pt;}
.ycd{bottom:580.906667pt;}
.y14{bottom:583.255040pt;}
.ye0{bottom:583.576000pt;}
.y120{bottom:584.049333pt;}
.yc9{bottom:585.925333pt;}
.yb3{bottom:586.764000pt;}
.yf8{bottom:587.162667pt;}
.y130{bottom:592.618667pt;}
.yc8{bottom:594.070667pt;}
.y8c{bottom:594.601333pt;}
.y43{bottom:595.530667pt;}
.y77{bottom:598.586667pt;}
.y11f{bottom:602.114667pt;}
.y13{bottom:602.449920pt;}
.y62{bottom:607.486667pt;}
.yf7{bottom:609.080000pt;}
.ydf{bottom:610.674667pt;}
.y29{bottom:612.697333pt;}
.yb2{bottom:613.862667pt;}
.yc6{bottom:615.904000pt;}
.y11e{bottom:620.181333pt;}
.y8b{bottom:621.700000pt;}
.y12{bottom:621.806720pt;}
.y42{bottom:622.629333pt;}
.y76{bottom:627.013333pt;}
.yf6{bottom:630.998667pt;}
.y9c{bottom:634.584000pt;}
.y61{bottom:634.585333pt;}
.y11d{bottom:638.246667pt;}
.y28{bottom:639.796000pt;}
.yb1{bottom:640.961333pt;}
.y11{bottom:641.001600pt;}
.y8a{bottom:648.798667pt;}
.y41{bottom:649.728000pt;}
.yf5{bottom:652.916000pt;}
.yc5{bottom:654.958667pt;}
.y11c{bottom:656.312000pt;}
.y10{bottom:660.358400pt;}
.y60{bottom:661.682667pt;}
.yb0{bottom:668.058667pt;}
.y75{bottom:669.653333pt;}
.y11b{bottom:674.377333pt;}
.yf4{bottom:674.833333pt;}
.y89{bottom:676.361333pt;}
.y40{bottom:676.826667pt;}
.y27{bottom:678.476000pt;}
.yf{bottom:679.715200pt;}
.yc4{bottom:682.453333pt;}
.y5f{bottom:688.781333pt;}
.yc1{bottom:689.749333pt;}
.y11a{bottom:692.442667pt;}
.y74{bottom:696.752000pt;}
.ye{bottom:699.072000pt;}
.yc0{bottom:699.726667pt;}
.y3f{bottom:703.925333pt;}
.y16e{bottom:705.952000pt;}
.yaf{bottom:707.113333pt;}
.y119{bottom:710.509333pt;}
.yc3{bottom:713.545333pt;}
.y5e{bottom:715.880000pt;}
.yc2{bottom:717.908000pt;}
.yf3{bottom:718.669333pt;}
.y26{bottom:719.193333pt;}
.y73{bottom:723.850667pt;}
.y118{bottom:728.574667pt;}
.yd{bottom:729.144960pt;}
.y3e{bottom:731.022667pt;}
.yf2{bottom:740.588000pt;}
.y5d{bottom:742.978667pt;}
.ybf{bottom:746.166667pt;}
.y117{bottom:746.640000pt;}
.y72{bottom:750.948000pt;}
.y3d{bottom:758.121333pt;}
.yc{bottom:759.217920pt;}
.yf1{bottom:762.505333pt;}
.y116{bottom:764.705333pt;}
.y5c{bottom:770.076000pt;}
.y88{bottom:770.077333pt;}
.ybe{bottom:773.265333pt;}
.y71{bottom:778.046667pt;}
.yb{bottom:778.250880pt;}
.y115{bottom:782.770667pt;}
.yf0{bottom:784.422667pt;}
.y3c{bottom:785.220000pt;}
.y5b{bottom:797.174667pt;}
.ya{bottom:797.607680pt;}
.y25{bottom:800.026667pt;}
.y114{bottom:800.837333pt;}
.yef{bottom:806.341333pt;}
.y70{bottom:808.732000pt;}
.y3b{bottom:812.318667pt;}
.y9{bottom:816.964480pt;}
.y113{bottom:818.902667pt;}
.y5a{bottom:824.273333pt;}
.y24{bottom:827.125333pt;}
.yee{bottom:828.258667pt;}
.y8{bottom:836.321280pt;}
.y112{bottom:836.968000pt;}
.y3a{bottom:839.417333pt;}
.yed{bottom:850.176000pt;}
.y59{bottom:851.372000pt;}
.y111{bottom:855.033333pt;}
.y7{bottom:866.394240pt;}
.y39{bottom:866.514667pt;}
.yec{bottom:872.094667pt;}
.y110{bottom:873.098667pt;}
.y58{bottom:878.470667pt;}
.y10f{bottom:891.164000pt;}
.y38{bottom:893.613333pt;}
.yeb{bottom:894.012000pt;}
.y6{bottom:896.320000pt;}
.y57{bottom:905.568000pt;}
.y10e{bottom:909.230667pt;}
.yea{bottom:915.929333pt;}
.y37{bottom:920.712000pt;}
.y36{bottom:923.218667pt;}
.y23{bottom:923.900000pt;}
.y5{bottom:926.400000pt;}
.y10d{bottom:927.296000pt;}
.y56{bottom:932.666667pt;}
.ye9{bottom:937.848000pt;}
.y4{bottom:956.331520pt;}
.y22{bottom:959.765333pt;}
.y3{bottom:975.526400pt;}
.y2{bottom:994.883200pt;}
.y1{bottom:1014.240000pt;}
.he{height:2.327275pt;}
.h9{height:19.765848pt;}
.ha{height:21.583121pt;}
.h7{height:29.499997pt;}
.h10{height:30.350141pt;}
.h1b{height:35.865600pt;}
.h29{height:39.850400pt;}
.h6{height:40.727307pt;}
.hd{height:41.658217pt;}
.h2{height:42.262500pt;}
.h24{height:43.055354pt;}
.h23{height:43.156123pt;}
.h8{height:43.636400pt;}
.h26{height:44.459722pt;}
.h21{height:44.507179pt;}
.h20{height:44.540459pt;}
.h27{height:44.611345pt;}
.h11{height:47.160807pt;}
.h1d{height:47.950933pt;}
.h1c{height:47.956267pt;}
.h5{height:50.614663pt;}
.hb{height:51.464807pt;}
.h1e{height:53.176581pt;}
.h16{height:54.371474pt;}
.h4{height:54.630330pt;}
.h18{height:56.310663pt;}
.h13{height:57.596608pt;}
.h17{height:58.020400pt;}
.h1a{height:68.664807pt;}
.h19{height:73.510663pt;}
.h14{height:81.018217pt;}
.hc{height:82.996400pt;}
.h12{height:83.545733pt;}
.h15{height:97.511275pt;}
.hf{height:112.729733pt;}
.h28{height:133.714667pt;}
.h25{height:264.000000pt;}
.h22{height:292.793680pt;}
.h1f{height:377.333333pt;}
.h3{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:302.666667pt;}
.w6{width:515.348000pt;}
.w4{width:621.702880pt;}
.w3{width:642.666667pt;}
.w2{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:7.970667pt;}
.x57{left:11.228305pt;}
.x2f{left:15.202832pt;}
.x2a{left:18.403456pt;}
.x29{left:20.323787pt;}
.x2b{left:22.404201pt;}
.x2e{left:28.005245pt;}
.x2c{left:30.405664pt;}
.x56{left:31.551545pt;}
.x2d{left:34.406437pt;}
.x26{left:36.806884pt;}
.x27{left:40.007480pt;}
.x48{left:43.208476pt;}
.x39{left:46.442892pt;}
.x43{left:49.609669pt;}
.x44{left:52.810265pt;}
.x46{left:54.810211pt;}
.xc{left:60.029333pt;}
.xb{left:64.264000pt;}
.x6{left:86.016000pt;}
.x25{left:90.444000pt;}
.x1e{left:92.160000pt;}
.x2{left:93.958667pt;}
.x4{left:103.762667pt;}
.x7{left:104.913333pt;}
.xa{left:108.598667pt;}
.x1f{left:112.402667pt;}
.x1{left:113.440000pt;}
.x9{left:115.256000pt;}
.x8{left:116.424000pt;}
.xd{left:122.380000pt;}
.x45{left:124.021834pt;}
.x47{left:128.025766pt;}
.x33{left:135.458434pt;}
.x31{left:136.689465pt;}
.x59{left:139.177333pt;}
.x5b{left:145.398667pt;}
.x3a{left:147.456300pt;}
.x32{left:150.939516pt;}
.x21{left:152.805333pt;}
.x5a{left:155.329333pt;}
.xe{left:158.744000pt;}
.x3b{left:174.934892pt;}
.x12{left:191.497333pt;}
.xf{left:193.092000pt;}
.x16{left:200.080000pt;}
.x3{left:209.197333pt;}
.x11{left:210.517333pt;}
.x13{left:213.029333pt;}
.x17{left:214.932000pt;}
.x10{left:215.974667pt;}
.x58{left:216.925333pt;}
.x55{left:224.441664pt;}
.x51{left:226.442208pt;}
.x23{left:231.470667pt;}
.x14{left:232.966667pt;}
.x18{left:234.030667pt;}
.x4b{left:236.444071pt;}
.x15{left:242.776000pt;}
.x54{left:245.645761pt;}
.x19{left:248.881333pt;}
.x30{left:251.646879pt;}
.x5{left:259.225333pt;}
.x1b{left:266.390667pt;}
.x1a{left:271.848000pt;}
.x50{left:275.077831pt;}
.x28{left:288.176340pt;}
.x1c{left:289.958667pt;}
.x4f{left:317.657906pt;}
.x4a{left:321.661460pt;}
.x49{left:324.862056pt;}
.x40{left:327.081805pt;}
.x37{left:328.970483pt;}
.x3f{left:333.274189pt;}
.x36{left:339.466575pt;}
.x3e{left:344.884912pt;}
.x22{left:346.214667pt;}
.x20{left:347.282667pt;}
.x3c{left:357.610267pt;}
.x1d{left:366.558667pt;}
.x41{left:369.995038pt;}
.x34{left:371.310929pt;}
.x24{left:389.577333pt;}
.x38{left:437.724255pt;}
.x3d{left:458.623651pt;}
.x35{left:462.106915pt;}
.x53{left:467.412073pt;}
.x4d{left:481.334687pt;}
.x42{left:486.102267pt;}
.x52{left:510.493830pt;}
.x4e{left:514.497359pt;}
.x4c{left:517.697955pt;}
}




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